:root {
    --primary-color: #ffffff;
    --accent-color: #00d4ff;       /* BitradeX Cyan */
    --accent-gold: #f7931a;        /* Bitcoin Orange */
    --accent-green: #00ff88;       /* Profit Green */
    --bg-dark: #0a0c10;
    --bg-darker: #060810;
    --bg-card: #0f1218;
    --text-main: #ffffff;
    --text-muted: #8b98b0;
    --nav-bg: rgba(6, 8, 16, 0.96);
    --card-bg: rgba(15, 18, 28, 0.8);
    --border-color: rgba(0, 212, 255, 0.12);
    --transition: all 0.3s ease;
    --glow-cyan: 0 0 30px rgba(0, 212, 255, 0.3);
    --glow-gold: 0 0 30px rgba(247, 147, 26, 0.3);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated background particles */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: 
        radial-gradient(circle at 15% 50%, rgba(0, 212, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 20%, rgba(247, 147, 26, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(0, 255, 136, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Nav */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.top-bar {
    height: 36px;
    background: #000;
    display: flex;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
}

.market-status {
    display: flex;
    gap: 20px;
}

.market-status span {
    cursor: pointer;
    color: var(--text-muted);
}

.market-status span.active {
    color: var(--accent-color);
}

.main-nav {
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    height: 72px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
}

.main-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), rgba(247, 147, 26, 0.5), transparent);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-box img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.5));
    transition: var(--transition);
}

.logo-box:hover img {
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.8));
}

.logo-name {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

.logo {
    margin-right: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
    margin: 0;
    padding: 0;
    align-items: stretch;
    height: 100%;
}

.nav-links li {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-links a,
.nav-trigger {
    color: var(--text-main);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    cursor: pointer;
    opacity: 0.85;
}

.nav-links a:hover,
.nav-trigger:hover {
    color: var(--accent-color);
    opacity: 1;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

/* Ticker Bar */
.ticker-bar {
    background: rgba(0, 0, 0, 0.95);
    height: 40px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    overflow: hidden;
    position: fixed;
    top: 108px;
    left: 0;
    width: 100%;
    z-index: 999;
}

.ticker-wrapper {
    display: flex;
    white-space: nowrap;
    animation: ticker-scroll 60s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 40px;
    font-size: 12px;
    font-weight: 700;
    color: white;
}

.ticker-item .symbol {
    color: var(--text-muted);
}

.ticker-item .price {
    font-family: 'Monaco', monospace;
    letter-spacing: 0.5px;
}

.ticker-item.up .price {
    color: var(--accent-green);
}

.ticker-item.down .price {
    color: #ff3344;
}

.ticker-item .change {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 800;
}

.ticker-item.up .change {
    background: rgba(0, 255, 136, 0.15);
    color: var(--accent-green);
}

.ticker-item.down .change {
    background: rgba(255, 51, 68, 0.15);
    color: #ff3344;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Trading Visual Animations */
.chart-pulse {
    animation: pricePulse 2s infinite ease-in-out;
}

@keyframes pricePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.candle-rise {
    animation: candleRise 1.5s ease-out forwards;
    transform-origin: bottom;
}

@keyframes candleRise {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    color: white;
    white-space: nowrap;
}

.btn {
    height: 42px;
    padding: 0 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
}

.btn-login {
    background: transparent;
    color: white;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.btn-login:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff, #0099bb);
    color: #000;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00e5ff, #00bcd4);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
}

.btn-large {
    height: 54px;
    padding: 0 32px;
    font-size: 16px;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-gold {
    background: linear-gradient(135deg, #f7931a, #e8810a);
    color: white;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(247, 147, 26, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(247, 147, 26, 0.5);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #0f1218;
    border: 1px solid rgba(0, 212, 255, 0.2);
    min-width: 480px;
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 212, 255, 0.05);
    display: none;
    z-index: 1001;
    color: white;
}

.nav-links li:hover .dropdown-menu,
.dropdown-menu.active {
    display: block;
    animation: dropdownPop 0.3s ease forwards;
}

@keyframes dropdownPop {
    from { opacity: 0; transform: translateX(-50%) translateY(15px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.dropdown-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    transition: var(--transition);
    cursor: pointer;
    text-align: left;
    border: 1px solid transparent;
}

.dropdown-item:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.2);
}

.dropdown-item i {
    color: var(--accent-color);
    flex-shrink: 0;
}

.dropdown-item h4 {
    font-size: 14px;
    margin-bottom: 3px;
    color: white;
    font-weight: 700;
}

.dropdown-item p {
    font-size: 11px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.3;
}

/* Language Dropdown */
.lang-dropdown {
    min-width: 380px !important;
    padding: 20px !important;
}

.lang-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.lang-item {
    padding: 10px 15px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted) !important;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    border: 1px solid transparent;
}

.lang-item:hover {
    background: rgba(0, 212, 255, 0.05);
    color: var(--accent-color) !important;
    border-color: rgba(0, 212, 255, 0.2);
}

.lang-item.active {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-color) !important;
    font-weight: 700;
    border-color: rgba(0, 212, 255, 0.3);
}

/* Hero Section */
.hero-section {
    padding: 140px 0 60px;
    background: radial-gradient(ellipse at 70% 30%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(247, 147, 26, 0.06) 0%, transparent 50%),
                var(--bg-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.08);
    animation: rotate-ring 20s linear infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 25%;
    right: 8%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(247, 147, 26, 0.06);
    animation: rotate-ring 15s linear infinite reverse;
}

@keyframes rotate-ring {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    width: 100%;
    z-index: 1;
}

.hero-slide {
    display: none;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    animation: fadeIn 0.8s ease;
}

.hero-slide.active {
    display: grid;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.slider-controls {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent-color);
    width: 30px;
    border-radius: 5px;
    box-shadow: 0 0 10px var(--accent-color);
}

h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(247, 147, 26, 0.1);
    border: 1px solid rgba(247, 147, 26, 0.3);
    color: var(--accent-gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-badge-dot {
    width: 6px; height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

.text-gradient-cyan {
    background: linear-gradient(135deg, #00d4ff, #00ff88);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #f7931a, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    border-left: 2px solid rgba(0, 212, 255, 0.3);
    padding-left: 16px;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.ambassador-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.ambassador-img {
    width: 100%;
    max-width: 450px;
    display: block;
    filter: brightness(0.9);
}

.ambassador-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.ambassador-info h3 { font-size: 24px; }

.ambassador-info p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Interactive Switcher */
.interactive-switcher {
    padding: 100px 0;
    background: #070910;
    color: white;
    position: relative;
}

.interactive-switcher::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
}

.switcher-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: center;
}

.switcher-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.platform-nav-item {
    background: var(--bg-card);
    padding: 24px;
    border-radius: 16px;
    display: flex;
    gap: 20px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(0, 212, 255, 0.08);
}

.platform-nav-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.platform-nav-item.active {
    border-color: var(--accent-color);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
}

.nav-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--accent-color);
    font-size: 20px;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.nav-icon-box.cfi {
    background: rgba(247, 147, 26, 0.1);
    color: var(--accent-gold);
    border-color: rgba(247, 147, 26, 0.2);
}

.nav-text h3 {
    font-size: 18px;
    margin-bottom: 4px;
    color: white;
}

.nav-text p {
    font-size: 13px;
    color: var(--text-muted);
}

.switcher-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
}

.mockup-container {
    position: relative;
    height: 500px;
}

.tablet-frame {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 212, 255, 0.05);
    border: 8px solid #0a0c10;
}

.tablet-frame img {
    width: 100%;
    display: block;
}

.phone-frame {
    position: absolute;
    width: 200px;
    bottom: -30px;
    right: -20px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 6px solid #0a0c10;
}

.phone-frame img {
    width: 100%;
    display: block;
}

.floating-price {
    position: absolute;
    background: rgba(15, 18, 28, 0.9);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 10px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 212, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
    color: white;
}

.floating-price.gold { top: 15%; left: 10px; }
.floating-price.nvda { bottom: 15%; right: 10px; }

.price-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 900;
    color: white;
}

.price-icon.nvda {
    background: var(--accent-color);
    color: #000;
}

.floating {
    animation: floating 4s ease-in-out infinite;
}

.floating-delayed {
    animation: floating 4s ease-in-out infinite 2s;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.platform-info {
    display: none;
    animation: slideInRight 0.5s ease;
}

.platform-info.active { display: block; }

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.platform-info h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: white;
}

.rating-box {
    margin: 40px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.large-num {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
}

.stars { color: #f7931a; }

.store-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.store-links img { height: 40px; }
.qr-code { height: 80px !important; }

/* --- Section Styles --- */
/* Part 2 of landing styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 16px;
    color: white;
}

.section-header h2 span {
    background: linear-gradient(135deg, #00d4ff, #00ff88);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px;
    background: var(--bg-card);
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid rgba(0, 212, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 212, 255, 0.05);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-color);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: white;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Instruments Section */
.instruments-section {
    padding: 100px 0;
    background: var(--bg-darker);
    color: white;
    position: relative;
}

.instruments-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    padding-bottom: 20px;
    flex-wrap: wrap;
}

.tab {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
    border: 1px solid transparent;
}

.tab.active {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-color);
    border-color: rgba(0, 212, 255, 0.3);
}

.tab:hover:not(.active) {
    color: white;
    border-color: rgba(255,255,255,0.1);
}

.instruments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.instrument-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.08);
    transition: var(--transition);
}

.instrument-item:hover {
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateX(5px);
}

.inst-name {
    display: block;
    font-weight: 700;
    font-size: 18px;
    color: white;
}

.inst-desc {
    font-size: 14px;
    color: var(--text-muted);
}

.inst-price { text-align: right; }

.price-val {
    display: block;
    font-weight: 700;
    font-size: 18px;
    color: white;
}

.price-change {
    font-size: 14px;
    font-weight: 600;
}

.price-change.pos { color: var(--accent-green); }
.price-change.neg { color: #ff3344; }

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

/* Product Categories Section */
.product-categories-section {
    padding: 80px 0;
    background: var(--bg-dark);
    color: white;
}

.product-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
}

.product-card-large,
.product-card-small {
    background: linear-gradient(135deg, #0a0c14 0%, #0e1a2a 100%);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.product-card-large:hover,
.product-card-small:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 212, 255, 0.08);
}

.product-info p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 300px;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.product-icon-bg {
    position: absolute;
    bottom: -20px;
    right: -20px;
    opacity: 0.08;
    color: var(--accent-color);
    z-index: 1;
}

.product-icon-bg i {
    width: 150px !important;
    height: 150px !important;
}

.product-card-small .product-icon-bg {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.4;
}

.product-card-small .product-icon-bg i {
    width: 80px !important;
    height: 80px !important;
}

/* Payment Methods Section */
.payment-methods-section {
    padding: 60px 0 100px;
    background: var(--bg-darker);
    text-align: center;
}

.section-title-small {
    font-size: 24px;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 500;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.payment-item {
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 255, 0.08);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    height: 120px;
}

.payment-item:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.08);
    transform: translateY(-5px);
}

.payment-logo {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(1) brightness(0.6);
    opacity: 0.7;
    transition: var(--transition);
}

.payment-item:hover .payment-logo {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}

.wire-transfer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.payment-item:hover .wire-transfer { color: var(--accent-color); }

.wire-transfer i { width: 24px; height: 24px; }

/* Footer */
.main-footer {
    padding: 80px 0 40px;
    background: #040608;
    color: white;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), rgba(247, 147, 26, 0.4), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 20px 0;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links i {
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-links i:hover { color: var(--accent-color); }

.footer-links h4 {
    margin-bottom: 24px;
    font-size: 18px;
    color: var(--accent-color);
}

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

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover { color: white; }

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(0, 212, 255, 0.08);
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-muted);
}

.legal-links { display: flex; gap: 20px; }

.legal-links a {
    color: var(--text-muted);
    text-decoration: none;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2000;
}

.help-text {
    background: rgba(15, 18, 28, 0.95);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-help {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--text-muted);
}

.chat-bubble {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #00d4ff, #0099bb);
    color: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
    transition: var(--transition);
}

.chat-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    h1 { font-size: 38px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-slide { grid-template-columns: 1fr; text-align: center; }
    .hero-stats { justify-content: center; }
    .hero-btns { justify-content: center; }
    .hero-image-container { display: none; }
    .switcher-layout { grid-template-columns: 1fr; }
    .switcher-content { grid-template-columns: 1fr; }
    .mockup-container { height: 350px; display: flex; justify-content: center; }
    .tablet-frame { width: 80%; }
    .phone-frame { width: 130px; right: 15%; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .product-grid { grid-template-columns: 1fr; }
    .payment-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .main-nav { height: 64px; }
    .ticker-bar { top: 64px; }
    .hero-section { padding-top: 120px; }
    .stat-item { border-left-color: rgba(0, 212, 255, 0.2); }
    
    .nav-links {
        position: fixed;
        top: 64px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 64px);
        background: var(--bg-dark);
        flex-direction: column;
        padding: 40px 24px;
        gap: 4px;
        transition: 0.4s ease;
        overflow-y: auto;
        display: flex;
        z-index: 1000;
        align-items: flex-start;
    }
    
    .nav-links.active { left: 0; }
    .nav-links li { width: 100%; border-bottom: 1px solid rgba(0, 212, 255, 0.1); padding: 15px 0; }
    .nav-trigger { justify-content: space-between; width: 100%; font-size: 16px; }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 10px 0;
        min-width: unset;
        display: none;
    }
    
    .dropdown-menu.mobile-active { display: block; }
    .dropdown-grid { grid-template-columns: 1fr; gap: 10px; }
    .dropdown-item { color: white; padding: 10px; }
    .dropdown-item:hover { background: rgba(0, 212, 255, 0.05); }
    .dropdown-item h4 { color: white; }
    .dropdown-item p { color: var(--text-muted); }
    
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: transparent;
        color: white;
        border: none;
        cursor: pointer;
    }
    
    .nav-actions { gap: 8px; }
    .nav-actions .btn { padding: 0 12px; font-size: 12px; }
    .btn-login { display: none; }
    h1 { font-size: 32px; }
    .subtitle { font-size: 16px; }
    .hero-stats { flex-direction: row; flex-wrap: wrap; gap: 20px; }
    .stat-value { font-size: 24px; }
    .hero-btns { flex-direction: column; width: 100%; }
    .hero-btns .btn { width: 100%; }
    .section-header h2 { font-size: 32px; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .legal-links { flex-direction: column; gap: 10px; }
}

@media (max-width: 480px) {
    .stat-item { width: calc(50% - 10px); }
    .payment-grid { grid-template-columns: 1fr; }
    .ticker-item { padding: 0 20px; }
}

/* Market Visualization Section */
.market-visual-section {
    padding: 100px 0;
    background: var(--bg-dark);
    overflow: hidden;
    position: relative;
}

.visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.trading-canvas {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0, 212, 255, 0.12);
    position: relative;
    height: 400px;
    display: flex;
    align-items: flex-end;
    gap: 15px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 212, 255, 0.05);
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.candle {
    flex: 1;
    position: relative;
    border-radius: 4px;
    transform-origin: bottom;
}

.price-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 255, 136, 0.4);
    border-top: 1px dashed var(--accent-green);
    z-index: 5;
    animation: moveLine 4s infinite ease-in-out;
}

@keyframes moveLine {
    0%, 100% { bottom: 280px; }
    50% { bottom: 240px; }
}

.candle::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    width: 2px;
    height: 30px;
    background: currentColor;
    transform: translateX(-50%);
}

.candle::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 2px;
    height: 20px;
    background: currentColor;
    transform: translateX(-50%);
}

.candle-bull {
    background: var(--accent-green);
    color: var(--accent-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.candle-bear {
    background: #ff3344;
    color: #ff3344;
    box-shadow: 0 0 20px rgba(255, 51, 68, 0.3);
}

.candle:nth-child(1) { height: 120px; animation: candleRise 1s 0.1s ease-out forwards, fluctuate 3s 1.2s infinite ease-in-out; opacity: 0; }
.candle:nth-child(2) { height: 160px; animation: candleRise 1s 0.3s ease-out forwards, fluctuate 4s 1.4s infinite ease-in-out; opacity: 0; }
.candle:nth-child(3) { height: 140px; animation: candleRise 1s 0.5s ease-out forwards, fluctuate 3.5s 1.6s infinite ease-in-out; opacity: 0; }
.candle:nth-child(4) { height: 180px; animation: candleRise 1s 0.7s ease-out forwards, fluctuate 2.8s 1.8s infinite ease-in-out; opacity: 0; }
.candle:nth-child(5) { height: 220px; animation: candleRise 1s 0.9s ease-out forwards, fluctuate 4.2s 2.0s infinite ease-in-out; opacity: 0; }
.candle:nth-child(6) { height: 200px; animation: candleRise 1s 1.1s ease-out forwards, fluctuate 3.2s 2.2s infinite ease-in-out; opacity: 0; }
.candle:nth-child(7) { height: 250px; animation: candleRise 1s 1.3s ease-out forwards, fluctuate 3.8s 2.4s infinite ease-in-out; opacity: 0; }
.candle:nth-child(8) { height: 230px; animation: candleRise 1s 1.5s ease-out forwards, fluctuate 2.5s 2.6s infinite ease-in-out; opacity: 0; }
.candle:nth-child(9) { height: 280px; animation: candleRise 1s 1.7s ease-out forwards, fluctuate 3s 2.8s infinite ease-in-out; opacity: 0; }

@keyframes fluctuate {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.92); }
}

@keyframes candleRise {
    from { transform: scaleY(0); opacity: 0; }
    to { transform: scaleY(1); opacity: 1; }
}

.live-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 255, 136, 0.08);
    color: var(--accent-green);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.live-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse-dot 1s infinite;
}

@keyframes pulse-dot {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.visual-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 1024px) {
    .visual-grid { grid-template-columns: 1fr; }
}

/* Crypto Stats Bar */
.crypto-stats-bar {
    background: rgba(0, 212, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.crypto-stat { text-align: center; }
.crypto-stat-value { font-size: 24px; font-weight: 800; color: var(--accent-color); display: block; }
.crypto-stat-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }