/* ========================================
   XfersTrade - StraitsX Light Theme
   Color Scheme: White, Green, Clean
======================================== */

:root {
    /* Основные цвета в стиле StraitsX */
    --primary-green: #10b981;
    --primary-green-dark: #059669;
    --primary-green-light: #34d399;
    --accent-blue: #3b82f6;
    
    /* Для совместимости со старым кодом */
    --primary-gold: #10b981;
    --primary-emerald: #10b981;
    
    /* Фоны */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --bg-card: #ffffff;
    --bg-dark: #0f172a;
    
    /* Текст */
    --text-dark: #1e293b;
    --text-primary: #334155;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --text-white: #ffffff;
    
    /* Границы и эффекты */
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Glow эффекты */
    --glow-green: 0 0 20px rgba(16, 185, 129, 0.3);
    --glow-gold: 0 0 20px rgba(16, 185, 129, 0.3);
    --glow-emerald: 0 0 20px rgba(16, 185, 129, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ========================================
   Typography
======================================== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

h1 { 
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-dark);
    background: none;
    -webkit-text-fill-color: var(--text-dark);
}

h2 { 
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

h3 { 
    font-size: clamp(1rem, 1.5vw, 1.25rem);
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--glow-green);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

/* Secondary Button */
.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--text-white);
}

/* ========================================
   Header / Navigation
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
}

.logo-x {
    color: var(--primary-green);
    font-weight: 800;
    margin-right: 2px;
}

.logo-capital {
    color: var(--text-dark);
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 10px 16px;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.nav-link:hover {
    color: var(--text-dark);
    background: var(--bg-gray);
}

.dropdown-icon {
    color: var(--text-muted);
    font-size: 0.65rem;
    margin-left: 3px;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Navigation Dropdown Menu */
.nav-item.dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid var(--border-color);
}

.nav-item.dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
    background: var(--bg-gray);
    color: var(--primary-green);
}

.header-btn {
    background: var(--primary-green);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========================================
   Hero Section
======================================== */
.hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--bg-white);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Hero Graphics */
.hero-graphics {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 20px;
    min-height: 500px;
}

/* Chart Paths Styling */
.chart-path {
    stroke: var(--primary-green);
    filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.4));
    stroke-linecap: round;
    stroke-linejoin: round;
}

.indicator-path {
    stroke: var(--primary-green);
    filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.4));
    stroke-linecap: round;
}

.indicator-dot {
    fill: var(--primary-green);
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.6));
}

/* Bitcoin Card */
.bitcoin-card {
    grid-column: 1 / 3;
    grid-row: 1;
    width: 100%;
    max-width: 420px;
    justify-self: end;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    color: var(--text-dark);
    box-shadow: var(--shadow-xl);
    animation: float 6s ease-in-out infinite;
    z-index: 3;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.crypto-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.crypto-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f7931a 0%, #ffab00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    box-shadow: 0 4px 12px rgba(247, 147, 26, 0.3);
}

.crypto-name {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
}

.crypto-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    background: none;
    -webkit-text-fill-color: var(--text-dark);
}

.crypto-price .change {
    font-size: 0.9rem;
    margin-left: 12px;
}

.crypto-price .change.positive {
    color: var(--primary-green);
}

.crypto-price .change.negative {
    color: #ef4444;
}

.time-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.time-filters button {
    padding: 8px 14px;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-secondary);
    border-radius: 8px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.time-filters button.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
    font-weight: 600;
}

.time-filters button:hover:not(.active) {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.crypto-chart {
    height: 100px;
    position: relative;
}

.chart-line {
    width: 100%;
    height: 100%;
}

.chart-line path {
    stroke: var(--primary-green);
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.4));
}

.chart-area {
    fill: url(#chartGradient);
}

.price-tooltip {
    position: absolute;
    left: 50%;
    top: 25%;
    transform: translateX(-50%);
    background: var(--text-dark);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-lg);
}

/* Ethereum Mini Card */
.eth-card {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    align-self: start;
    width: 200px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px;
    color: var(--text-dark);
    box-shadow: var(--shadow-lg);
    animation: float 5s ease-in-out infinite 0.5s;
    z-index: 2;
}

.mini-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.mini-header i {
    font-size: 1.2rem;
    color: #627eea;
}

.mini-symbol {
    color: var(--text-muted);
}

.mini-range {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: var(--text-muted);
}

.mini-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin: 8px 0;
}

.mini-values .low { 
    color: #ef4444;
}
.mini-values .high { 
    color: var(--primary-green);
}

.range-bar {
    height: 6px;
    background: var(--bg-gray);
    border-radius: 3px;
    overflow: hidden;
}

.range-progress {
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, #ef4444, var(--primary-green));
    border-radius: 3px;
    transition: width 0.4s ease;
}

/* Ethereum Main Card */
.ethereum-card {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
    align-self: center;
    width: 260px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite 1s;
    z-index: 2;
}

.eth-main-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.eth-main-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #627eea 0%, #3c4a9e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    box-shadow: 0 4px 12px rgba(98, 126, 234, 0.3);
}

.eth-main-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.eth-main-symbol {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.eth-main-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 6px;
}

.eth-main-price .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.eth-main-price .change.positive {
    color: var(--primary-green);
    font-size: 0.9rem;
}

.eth-main-price .change.negative {
    color: #ef4444;
    font-size: 0.9rem;
}

.eth-main-value {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Indicators Card */
.indicators-card {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
    width: 320px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    color: var(--text-dark);
    animation: float 6s ease-in-out infinite 0.5s;
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.indicators-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.indicators-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-green);
}

.indicators-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.indicators-tabs {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
}

.indicators-tabs button {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.75rem;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 6px;
}

.indicators-tabs button:hover:not(.active) {
    color: var(--primary-green);
    background: rgba(16, 185, 129, 0.1);
}

.indicators-tabs button.active {
    color: white;
    background: var(--primary-green);
    font-weight: 600;
}

/* Yearly Dropdown */
.yearly-dropdown {
    position: relative;
    display: inline-block;
}

.yearly-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 5px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 4px;
    min-width: 100px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: var(--shadow-lg);
}

.yearly-dropdown.open .yearly-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.yearly-dropdown-menu button {
    display: block;
    width: 100%;
    padding: 8px 12px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-align: left;
    cursor: pointer;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
}

.yearly-dropdown-menu button:hover {
    background: var(--bg-gray);
    color: var(--primary-green);
}

.yearly-dropdown-menu button.active {
    background: var(--primary-green);
    color: white;
}

.indicators-chart {
    height: 70px;
    margin-bottom: 12px;
}

.indicator-line {
    width: 100%;
    height: 100%;
}

.indicator-line path {
    stroke: var(--primary-green);
    filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.4));
}

.indicator-line circle {
    fill: var(--primary-green);
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.6));
}

.indicators-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.indicators-value {
    background: var(--primary-green);
    border-radius: 12px;
    padding: 14px;
    transition: background 0.4s ease;
}

.total-label {
    font-size: 0.75rem;
    opacity: 0.9;
    color: rgba(255,255,255,0.8);
}

.btc-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1rem;
    color: white;
}

.btc-value .percent {
    font-size: 0.85rem;
}

/* ========================================
   Showcase Section
======================================== */
.showcase-section {
    padding: 80px 0;
    position: relative;
    background: var(--bg-light);
}

.showcase-slider {
    position: relative;
    width: 100%;
    min-height: 500px;
}

.showcase-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: opacity 1s ease, transform 1s ease, visibility 1s ease;
}

.showcase-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.showcase-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.showcase-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 28px;
}

.showcase-graphics {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-secondary);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.hero-nav:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.hero-prev { left: 20px; }
.hero-next { right: 20px; }

/* Showcase Indicators */
.showcase-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.showcase-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.showcase-indicators .indicator.active {
    background: var(--primary-green);
    transform: scale(1.2);
}

/* ========================================
   Live Ticker
======================================== */
.live-ticker {
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 14px 0;
    overflow: hidden;
}

.ticker-wrapper {
    overflow: hidden;
    width: 100%;
}

.ticker-content {
    display: flex;
    gap: 40px;
    animation: ticker 30s linear infinite;
    width: max-content;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.ticker-item:hover {
    background: rgba(16, 185, 129, 0.1);
}

.ticker-item i,
.ticker-icon {
    color: var(--primary-green);
    font-size: 1.1rem;
}

.ticker-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.ticker-price {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.ticker-change {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.ticker-change.positive {
    color: var(--primary-green);
    background: rgba(16, 185, 129, 0.1);
}

.ticker-change.negative {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

/* ========================================
   Features Section
======================================== */
.features {
    padding: 80px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: left;
    padding: 28px;
    border-radius: 16px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.feature-item h3 {
    font-size: 0.95rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ========================================
   Statistics Section
======================================== */
.stats-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-green);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.stat-sublabel {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========================================
   Trading Section
======================================== */
.trading-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.trading-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.trading-text h2 {
    margin-bottom: 24px;
    color: var(--text-dark);
}

.trading-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.trading-chart {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
}

.chart-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.pair {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.pair.secondary {
    color: var(--text-muted);
}

.pair-divider {
    color: var(--text-muted);
}

.fire-icon {
    margin-left: 10px;
}

.chart-timeframes {
    margin-left: auto;
    display: flex;
    gap: 12px;
}

.chart-timeframes button {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    padding: 6px 10px;
    border-radius: 6px;
}

.chart-timeframes button.active {
    color: white;
    background: var(--primary-green);
}

.chart-body {
    display: flex;
    gap: 16px;
    height: 150px;
}

.chart-y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.trading-line {
    flex: 1;
}

.trading-line path:first-child {
    stroke: rgba(16, 185, 129, 0.2);
}

.trading-line path:last-child {
    stroke: var(--primary-green);
    filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.4));
}

.trading-platform-preview {
    position: relative;
    margin-bottom: 60px;
}

.laptop-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 16px;
    display: block;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
}

.trading-hub {
    text-align: right;
    max-width: 450px;
    margin-left: auto;
}

.trading-hub h3 {
    margin-bottom: 16px;
    color: var(--primary-green);
}

.trading-hub p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========================================
   Markets Section
======================================== */
.markets-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.markets-header h2 {
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.market-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.market-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-lg);
}

.market-card.highlight {
    background: var(--primary-green);
    border: none;
}

.market-card.highlight h3,
.market-card.highlight p {
    color: white;
}

.market-icon {
    width: 64px;
    height: 48px;
    background: var(--primary-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 28px;
}

.market-card.highlight .market-icon {
    background: white;
    color: var(--primary-green);
}

.market-number {
    position: absolute;
    bottom: 16px;
    right: 28px;
    font-size: 4.5rem;
    font-weight: 900;
    opacity: 0.06;
    line-height: 1;
    color: var(--text-dark);
}

.market-card.highlight .market-number {
    color: white;
    opacity: 0.2;
}

.market-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.market-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ========================================
   Why Choose Us Section
======================================== */
.why-choose-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.why-choose-section h2 {
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.choose-card {
    text-align: left;
}

.choose-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--glow-green);
}

.choose-icon i {
    color: white;
    font-size: 22px;
}

.choose-card h3 {
    font-size: 0.9rem;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary-green);
    color: var(--text-dark);
}

.choose-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.choose-cta {
    text-align: center;
}

/* ========================================
   Services Section
======================================== */
.services-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    text-align: left;
    padding: 32px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card h3 {
    font-size: 0.95rem;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.service-icon {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   Deposit Section
======================================== */
.deposit-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.deposit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.deposit-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.crypto-coins-row {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.floating-coin {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.floating-coin:nth-child(2) { animation-delay: 0.3s; }
.floating-coin:nth-child(3) { animation-delay: 0.6s; }
.floating-coin:nth-child(4) { animation-delay: 0.9s; }

.floating-coin i,
.floating-coin .coin-symbol {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.floating-coin:hover i,
.floating-coin:hover .coin-symbol {
    transform: scale(1.1);
}

.floating-coin.btc i {
    background: linear-gradient(135deg, #f7931a 0%, #ffab00 100%);
}

.floating-coin.eth i {
    background: linear-gradient(135deg, #627eea 0%, #8c9eff 100%);
}

.floating-coin.usdt .coin-symbol {
    background: linear-gradient(135deg, #26a17b 0%, #50d9a5 100%);
    font-weight: 700;
}

.floating-coin.xrp .coin-symbol {
    background: linear-gradient(135deg, #23292f 0%, #445566 100%);
    font-weight: 300;
    font-size: 32px;
}

.coin-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.deposit-info h2 {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.deposit-info > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.payment-methods {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.payment-icon {
    width: 64px;
    height: 42px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.payment-icon i {
    font-size: 24px;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.payment-icon:hover {
    border-color: var(--primary-green);
}

.payment-icon:hover i {
    color: var(--primary-green);
}

/* ========================================
   Education Section
======================================== */
.education-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.education-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.education-content h2 {
    margin-bottom: 24px;
    color: var(--text-dark);
}

.education-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.education-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.edu-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 36px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.edu-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.edu-icon {
    width: 64px;
    height: 64px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.edu-icon i {
    font-size: 26px;
    color: var(--primary-green);
}

.edu-card h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.edu-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.education-cta {
    text-align: center;
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-main {
    display: grid;
    grid-template-columns: 200px 1fr 100px;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo .logo {
    font-size: 1.3rem;
}

.footer-logo .logo-x {
    color: var(--primary-green);
    -webkit-text-fill-color: var(--primary-green);
}

.footer-logo .logo-capital {
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 0.85rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-green);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.mas-badge {
    display: flex;
    justify-content: flex-end;
}

.mas-circle {
    width: 72px;
    height: 72px;
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.mas-circle span {
    color: var(--primary-green);
    font-weight: 800;
    font-size: 1rem;
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 30px;
}

.footer-legal {
    margin-bottom: 30px;
}

.footer-legal p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.6;
}

.risk-warning {
    color: var(--text-muted) !important;
    padding: 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border-left: 3px solid var(--primary-green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.payment-icons {
    display: flex;
    gap: 20px;
}

.payment-icons span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========================================
   Slide Graphics Cards
======================================== */
.featured-card {
    background: var(--primary-green);
    border-radius: 20px;
    padding: 24px;
    color: #fff;
    width: 260px;
    flex-shrink: 0;
}

.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.featured-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.featured-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: rgba(255,255,255,0.2);
}

.featured-pair {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.featured-rate {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.rate-value {
    font-weight: 600;
}

.rate-percent {
    background: rgba(255,255,255,0.2);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.featured-chart {
    width: 100%;
    height: 55px;
    margin-bottom: 10px;
}

.featured-time {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Phone Mockup */
.phone-mockup {
    background: var(--text-dark);
    border-radius: 28px;
    padding: 10px;
    width: 180px;
    box-shadow: var(--shadow-xl);
    flex-shrink: 0;
}

.phone-notch {
    width: 70px;
    height: 22px;
    background: #000;
    border-radius: 0 0 12px 12px;
    margin: 0 auto 12px;
}

.phone-screen {
    background: linear-gradient(180deg, var(--text-dark) 0%, #0d0d15 100%);
    border-radius: 18px;
    padding: 18px;
    text-align: center;
}

.phone-screen.profit {
    background: var(--primary-green);
}

.phone-nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.7);
}

.progress-ring {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 14px;
}

.progress-ring svg {
    width: 100%;
    height: 100%;
}

.progress-percent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.phone-goal {
    margin-bottom: 14px;
}

.goal-amount {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}

.goal-label {
    font-size: 0.7rem;
    opacity: 0.8;
    color: #fff;
}

.phone-status {
    display: flex;
    flex-direction: column;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
}

/* Exchange Card */
.exchange-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 18px;
    color: var(--text-dark);
    width: 150px;
    box-shadow: var(--shadow-lg);
    flex-shrink: 0;
}

.exchange-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.exchange-name {
    font-size: 1.4rem;
    font-weight: 800;
}

.exchange-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.exchange-icon.btc { background: #f7931a; }
.exchange-icon.eth { background: var(--primary-green); }

.exchange-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    margin-bottom: 14px;
}

.exchange-label { color: var(--text-muted); }
.exchange-value.profit { color: var(--primary-green); }

.exchange-divider {
    height: 1px;
    background: var(--border-color);
    margin: 14px 0;
}

/* Balance Card */
.balance-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 18px;
    color: var(--text-dark);
    box-shadow: var(--shadow-lg);
    flex-shrink: 0;
}

.balance-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.balance-amount {
    display: flex;
    align-items: center;
    gap: 10px;
}

.balance-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.balance-amount span {
    font-size: 1.6rem;
    font-weight: 800;
}

/* Slide 2 Elements */
.bonus-phone {
    background: var(--text-dark);
    border-radius: 32px;
    padding: 10px;
    width: 200px;
    box-shadow: var(--shadow-xl);
    flex-shrink: 0;
}

.bonus-screen {
    background: linear-gradient(180deg, var(--text-dark) 0%, #0d0d15 100%);
    border-radius: 22px;
    padding: 18px;
    text-align: center;
    min-height: 260px;
}

.bonus-screen.profit {
    background: var(--primary-green);
}

.bonus-ring {
    width: 90px;
    height: 90px;
    margin: 14px auto;
}

.bonus-ring svg {
    width: 100%;
    height: 100%;
}

.bonus-amount {
    margin-top: 18px;
}

.bonus-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}

.bonus-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}

/* Stats Card Slide */
.stats-card-slide {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 18px;
    color: var(--text-dark);
    width: 260px;
    box-shadow: var(--shadow-lg);
    flex-shrink: 0;
}

.stats-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.stats-pair {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.stats-icon { color: #627eea; }

.stats-change {
    margin-left: auto;
    font-size: 0.85rem;
    font-weight: 600;
}

.stats-change.positive { color: var(--primary-green); }

.stats-bars {
    width: 100%;
    height: 75px;
    margin-bottom: 10px;
}

.stats-bars rect {
    fill: rgba(16, 185, 129, 0.6);
}

.stats-time {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.stats-periods {
    display: flex;
    gap: 6px;
}

.stats-periods button {
    padding: 6px 12px;
    border: none;
    border-radius: 20px;
    background: var(--bg-gray);
    color: var(--text-muted);
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stats-periods button.active {
    background: var(--text-dark);
    color: #fff;
}

/* Currency Card Slide */
.currency-card-slide {
    background: var(--text-dark);
    border-radius: 16px;
    padding: 18px;
    color: #fff;
    width: 220px;
    flex-shrink: 0;
}

.currency-card-slide.profit {
    background: var(--bg-white);
    border: 1px solid var(--primary-green);
    color: var(--text-dark);
}

.currency-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.currency-amount {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.currency-value {
    font-size: 1.4rem;
    font-weight: 700;
}

.currency-select {
    background: rgba(255,255,255,0.1);
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
}

.currency-change.positive { color: var(--primary-green) !important; }
.currency-change.negative { color: #ef4444; }

.currency-chart {
    width: 100%;
    height: 45px;
}

/* Performance Badge */
.performance-badge {
    background: var(--bg-white);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
    align-self: center;
}

.performance-badge.profit {
    background: var(--primary-green);
}

.perf-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-green);
}

.performance-badge.profit .perf-value,
.performance-badge.profit .fa-arrow-up {
    color: #fff;
}

/* ========================================
   Mobile Navigation
======================================== */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    padding: 80px 30px 30px;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    font-size: 1.3rem;
    color: var(--text-dark);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-dark);
    background: none;
    border: none;
    cursor: pointer;
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1200px) {
    .choose-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .header-btn {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-graphics {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .bitcoin-card,
    .eth-card,
    .ethereum-card,
    .indicators-card {
        grid-column: 1;
        justify-self: center;
        max-width: 100%;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trading-content {
        grid-template-columns: 1fr;
    }
    
    .markets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .deposit-content {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .showcase-section .hero-nav {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .education-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid,
    .markets-grid,
    .choose-grid,
    .services-grid,
    .footer-links,
    .education-features {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .showcase-graphics {
        flex-direction: column;
        align-items: center;
    }
    
    .featured-card,
    .phone-mockup,
    .exchange-card,
    .balance-card,
    .stats-card-slide,
    .currency-card-slide,
    .bonus-phone {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .btn-lg {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    
    .crypto-coins-row {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .floating-coin i,
    .floating-coin .coin-symbol {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}

/* ========================================
   Custom Scrollbar
======================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green-dark);
}

/* ========================================
   Selection
======================================== */
::selection {
    background: var(--primary-green);
    color: white;
}

/* ========================================
   Animations
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    animation: fadeInUp 0.8s ease forwards;
}

/* ========================================
   Particles (for JS)
======================================== */
.particles {
    display: none;
}

/* ========================================
   SUBPAGES STYLES
======================================== */

/* ========================================
   Page Hero Section
======================================== */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
}

.page-hero-content h1 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.page-hero-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.legal-hero {
    padding: 140px 0 60px;
}

/* ========================================
   About Page Styles
======================================== */
.about-section {
    padding: 80px 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 24px;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-stat-item {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.about-stat-item .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.about-stat-item .stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.mission-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.mission-icon i {
    font-size: 2rem;
    color: white;
}

.mission-card h3 {
    margin-bottom: 16px;
    color: var(--text-dark);
}

.mission-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* About Features */
.about-features {
    padding: 80px 0;
}

.about-features h2 {
    text-align: center;
    margin-bottom: 48px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.team-section h2 {
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.team-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.team-avatar i {
    font-size: 2.5rem;
    color: var(--text-muted);
}

.team-card h4 {
    color: var(--text-dark);
    margin-bottom: 4px;
}

.team-role {
    display: block;
    color: var(--primary-green);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Regulation Section on About */
.regulation-section {
    padding: 80px 0;
}

.regulation-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.regulation-info h2 {
    margin-bottom: 20px;
}

.regulation-info p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.regulation-list {
    list-style: none;
}

.regulation-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
}

.regulation-list li:last-child {
    border-bottom: none;
}

.regulation-list li i {
    color: var(--primary-green);
}

.mas-badge-large {
    display: flex;
    justify-content: center;
}

.mas-circle-large {
    width: 160px;
    height: 160px;
    border: 4px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
}

.mas-circle-large span {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
}

.mas-circle-large small {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ========================================
   Platform Page Styles
======================================== */
.platform-overview {
    padding: 80px 0;
}

.platform-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.platform-text h2 {
    margin-bottom: 20px;
}

.platform-text p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.platform-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-light);
    border-radius: 8px;
}

.highlight-item i {
    color: var(--primary-green);
}

.highlight-item span {
    font-size: 0.875rem;
    color: var(--text-primary);
}

.laptop-preview {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
}

/* Platform Features */
.platform-features {
    padding: 80px 0;
    background: var(--bg-light);
}

.platform-features h2 {
    text-align: center;
    margin-bottom: 48px;
}

/* Trading Tools */
.trading-tools {
    padding: 80px 0;
}

.trading-tools h2 {
    text-align: center;
    margin-bottom: 48px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.tool-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.tool-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tool-icon i {
    font-size: 1.5rem;
    color: white;
}

.tool-card h3 {
    margin-bottom: 12px;
}

.tool-card p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.tool-card ul {
    list-style: none;
}

.tool-card ul li {
    padding: 6px 0;
    color: var(--text-primary);
    font-size: 0.875rem;
}

/* Order Types */
.order-types {
    padding: 80px 0;
    background: var(--bg-light);
}

.order-types h2 {
    text-align: center;
    margin-bottom: 16px;
}

.orders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.order-card {
    background: var(--bg-white);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.order-card h4 {
    color: var(--primary-green);
    margin-bottom: 8px;
}

.order-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Platform Access */
.platform-access {
    padding: 80px 0;
}

.platform-access h2 {
    text-align: center;
    margin-bottom: 48px;
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.access-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.access-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.access-icon i {
    font-size: 2rem;
    color: var(--primary-green);
}

.access-card h3 {
    margin-bottom: 12px;
}

.access-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.app-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--text-dark);
    color: white;
    border-radius: 8px;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background 0.3s;
}

.app-btn:hover {
    background: var(--primary-green);
}

/* ========================================
   Accounts Page Styles
======================================== */
.accounts-section {
    padding: 80px 0;
}

.accounts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.account-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.account-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.account-card.featured {
    border-color: var(--primary-green);
}

.account-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.account-badge.featured {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
}

.account-card h3 {
    text-align: center;
    margin: 16px 0 24px;
    font-size: 1.25rem;
}

.account-price {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
}

.price-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.account-features {
    list-style: none;
    margin-bottom: 24px;
}

.account-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.account-features li i {
    width: 16px;
}

.account-features li .fa-check {
    color: var(--primary-green);
}

.account-features li .fa-times {
    color: var(--text-muted);
}

.account-features li.disabled {
    color: var(--text-muted);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.text-green {
    color: var(--primary-green);
}

.text-red {
    color: #ef4444;
}

/* Demo Section */
.demo-section {
    padding: 80px 0;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.demo-text h2 {
    margin-bottom: 16px;
}

.demo-text p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.demo-features {
    list-style: none;
    margin-bottom: 32px;
}

.demo-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-primary);
}

.demo-features li i {
    color: var(--primary-green);
}

.demo-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.demo-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.demo-card-header span {
    font-weight: 600;
    color: var(--text-dark);
}

.demo-card-header i {
    color: var(--primary-green);
    font-size: 1.5rem;
}

.demo-balance {
    text-align: center;
    margin-bottom: 24px;
}

.balance-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.balance-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.demo-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.demo-stat span:first-child {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.demo-stat .positive {
    color: var(--primary-green);
    font-weight: 600;
}

/* ========================================
   Contact Page Styles
======================================== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.contact-form-wrapper h2,
.contact-info h2 {
    margin-bottom: 24px;
}

.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--bg-white);
    color: var(--text-dark);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1.25rem;
    color: var(--primary-green);
}

.method-details h4 {
    margin-bottom: 4px;
    font-size: 1rem;
}

.method-details p {
    margin-bottom: 4px;
    color: var(--text-dark);
}

.method-details span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.social-links h4 {
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary-green);
    color: white;
}

/* ========================================
   FAQ Section
======================================== */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    background: var(--bg-white);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.faq-item h4 {
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 1rem;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ========================================
   CTA Section
======================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    font-size: 1.125rem;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-green);
}

.cta-section .btn-primary:hover {
    background: var(--bg-light);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta-section .btn-secondary {
    border-color: white;
    color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: var(--primary-green);
}

/* ========================================
   Funding Page Styles
======================================== */
.deposit-methods-section,
.withdrawal-methods {
    padding: 80px 0;
}

.deposit-methods-section h2,
.withdrawal-methods h2 {
    text-align: center;
    margin-bottom: 16px;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.method-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.method-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.method-card .method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.method-card .method-icon i {
    font-size: 1.5rem;
    color: white;
}

.method-card h3 {
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.method-card > p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 20px;
}

.method-details {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.875rem;
}

.detail-row span {
    color: var(--text-secondary);
}

.detail-row strong {
    color: var(--text-dark);
}

.payment-logos {
    display: flex;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    margin-top: 16px;
}

.payment-logos i {
    font-size: 2rem;
    color: var(--text-secondary);
}

.payment-logos.crypto i {
    color: var(--primary-green);
}

/* How To Section */
.how-to-section,
.how-to-withdraw,
.how-bonus-works {
    padding: 80px 0;
    background: var(--bg-light);
}

.how-to-section h2,
.how-to-withdraw h2,
.how-bonus-works h2 {
    text-align: center;
    margin-bottom: 48px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary-green);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-card h3 {
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* Security Section */
.security-section {
    padding: 80px 0;
}

.security-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.security-text h2 {
    margin-bottom: 16px;
}

.security-text > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.security-features {
    list-style: none;
}

.security-features li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}

.security-features li i {
    color: var(--primary-green);
    width: 20px;
}

.security-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.badge-card {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.badge-card i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.badge-card span {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
}

/* ========================================
   Bonus Page Styles
======================================== */
.bonus-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
}

.bonus-hero-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.bonus-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.bonus-text h1 {
    color: white;
    -webkit-text-fill-color: white;
    margin-bottom: 16px;
}

.bonus-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.bonus-highlights {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.highlight {
    text-align: center;
}

.highlight-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.highlight-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.bonus-visual {
    display: flex;
    justify-content: center;
}

.bonus-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    width: 280px;
    text-align: center;
}

.bonus-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.bonus-card-header i {
    color: var(--primary-green);
    font-size: 1.5rem;
}

.bonus-card-header span {
    font-weight: 600;
    color: var(--text-dark);
}

.bonus-amount {
    margin-bottom: 20px;
}

.bonus-amount .currency {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.bonus-amount .value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
}

.bonus-progress {
    text-align: center;
}

.progress-bar {
    height: 8px;
    background: var(--bg-light);
    border-radius: 4px;
    margin-bottom: 8px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-green);
    border-radius: 4px;
}

.bonus-progress span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Bonus Tiers */
.bonus-tiers {
    padding: 80px 0;
}

.bonus-tiers h2 {
    text-align: center;
    margin-bottom: 48px;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tier-card {
    background: var(--bg-white);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tier-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.tier-card.featured {
    border-color: var(--primary-green);
}

.tier-card.premium {
    border-color: var(--accent-blue);
}

.tier-header {
    background: var(--bg-light);
    padding: 24px;
    text-align: center;
}

.tier-card.featured .tier-header {
    background: var(--primary-green);
}

.tier-card.featured .tier-header h3,
.tier-card.featured .tier-header .tier-badge {
    color: white;
}

.tier-card.premium .tier-header {
    background: var(--accent-blue);
}

.tier-card.premium .tier-header h3,
.tier-card.premium .tier-header .tier-badge {
    color: white;
}

.tier-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-green);
    color: white;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.tier-header h3 {
    font-size: 1.25rem;
}

.tier-content {
    padding: 24px;
}

.deposit-range {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.max-bonus {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 20px;
}

.tier-content ul {
    list-style: none;
}

.tier-content ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.875rem;
}

.tier-content ul li i {
    color: var(--primary-green);
}

/* Bonus Terms Summary */
.bonus-terms-summary {
    padding: 80px 0;
}

.bonus-terms-summary h2 {
    text-align: center;
    margin-bottom: 48px;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.term-card {
    text-align: center;
    padding: 32px;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.term-card i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.term-card h4 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.term-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.terms-link {
    text-align: center;
    margin-top: 32px;
}

.terms-link a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
}

.terms-link a:hover {
    text-decoration: underline;
}

/* ========================================
   Trade Markets Page Styles
======================================== */
.markets-overview {
    padding: 80px 0;
}

.markets-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.markets-intro h2 {
    margin-bottom: 16px;
}

.markets-intro p {
    color: var(--text-secondary);
}

.market-category {
    margin-bottom: 48px;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: var(--bg-light);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    font-size: 1.5rem;
    color: white;
}

.category-info {
    flex: 1;
}

.category-info h3 {
    margin-bottom: 4px;
}

.category-info p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.category-stats {
    display: flex;
    gap: 24px;
}

.category-stats span {
    padding: 8px 16px;
    background: var(--bg-white);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.instruments-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    padding: 24px;
}

.instrument {
    text-align: center;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 8px;
}

.instrument .pair {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.instrument .spread {
    font-size: 0.875rem;
    color: var(--primary-green);
}

/* Trading Conditions */
.trading-conditions {
    padding: 80px 0;
    background: var(--bg-light);
}

.trading-conditions h2 {
    text-align: center;
    margin-bottom: 48px;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.condition-card {
    text-align: center;
    padding: 32px;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.condition-card i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.condition-card h3 {
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.condition-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* ========================================
   Trading Schedule Page Styles
======================================== */
.timezone-notice {
    padding: 24px 0;
}

.notice-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
}

.notice-box i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.notice-box p {
    color: var(--text-primary);
}

/* Trading Sessions */
.trading-sessions {
    padding: 60px 0;
}

.trading-sessions h2 {
    text-align: center;
    margin-bottom: 48px;
}

.sessions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.session-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.session-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.session-icon.asia {
    background: #fef3c7;
    color: #f59e0b;
}

.session-icon.europe {
    background: #dbeafe;
    color: #3b82f6;
}

.session-icon.america {
    background: #dcfce7;
    color: #10b981;
}

.session-icon i {
    font-size: 1.5rem;
}

.session-card h3 {
    margin-bottom: 8px;
}

.session-time {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.session-desc {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 20px;
}

.session-pairs {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.session-pairs li {
    padding: 6px 12px;
    background: var(--bg-light);
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--text-primary);
}

/* Market Hours Table */
.market-hours {
    padding: 60px 0;
    background: var(--bg-light);
}

.market-hours h2 {
    text-align: center;
    margin-bottom: 48px;
}

.schedule-table-wrapper {
    overflow-x: auto;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
}

.schedule-table th,
.schedule-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.schedule-table th {
    background: var(--text-dark);
    color: white;
    font-weight: 600;
}

.schedule-table .category-row td {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-green);
}

/* Holiday Schedule */
.holiday-schedule {
    padding: 60px 0;
}

.holiday-schedule h2 {
    text-align: center;
    margin-bottom: 16px;
}

.holiday-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.holiday-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.holiday-date {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.holiday-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.holiday-date .month {
    font-size: 0.75rem;
    text-transform: uppercase;
}

.holiday-info h4 {
    margin-bottom: 4px;
    font-size: 1rem;
}

.holiday-info p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.holiday-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.holiday-note i {
    color: var(--primary-green);
    margin-right: 8px;
}

/* Trading Tips */
.trading-tips {
    padding: 60px 0;
    background: var(--bg-light);
}

.trading-tips h2 {
    text-align: center;
    margin-bottom: 48px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tip-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.tip-card i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.tip-card h4 {
    margin-bottom: 12px;
}

.tip-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* ========================================
   Withdrawals Page Styles
======================================== */
.processing-times {
    padding: 80px 0;
}

.processing-times h2 {
    text-align: center;
    margin-bottom: 48px;
}

.processing-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.processing-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.processing-card.priority {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.02) 100%);
}

.processing-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.processing-card.priority .processing-icon {
    background: var(--primary-green);
}

.processing-card.priority .processing-icon i {
    color: white;
}

.processing-icon i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.processing-card h3 {
    margin-bottom: 12px;
}

.processing-card p {
    color: var(--text-secondary);
}

/* Withdrawal Requirements */
.withdrawal-requirements {
    padding: 80px 0;
    background: var(--bg-light);
}

.withdrawal-requirements h2 {
    text-align: center;
    margin-bottom: 48px;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.requirement-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.requirement-card i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.requirement-card h4 {
    margin-bottom: 12px;
}

.requirement-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* ========================================
   Legal Pages Styles
======================================== */
.legal-content {
    padding: 60px 0 80px;
}

.legal-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
}

.legal-nav {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.legal-nav h4 {
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-nav ul {
    list-style: none;
}

.legal-nav ul li {
    margin-bottom: 8px;
}

.legal-nav ul li a {
    display: block;
    padding: 10px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.legal-nav ul li a:hover {
    background: var(--bg-light);
    color: var(--primary-green);
}

.legal-text {
    max-width: 800px;
}

.legal-text section {
    margin-bottom: 48px;
}

.legal-text h2 {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-green);
}

.legal-text h3 {
    margin: 24px 0 16px;
    color: var(--text-dark);
}

.legal-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-text ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-text ul li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.legal-footer p {
    color: var(--text-secondary);
}

.legal-footer a {
    color: var(--primary-green);
}

.update-notice {
    padding: 16px;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 0.875rem;
}

/* Cookie Table */
.cookie-table {
    margin: 24px 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
}

.warning-box {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #fef3c7;
    border-radius: 12px;
    margin: 24px 0;
}

.warning-box i {
    color: #f59e0b;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.warning-box p,
.warning-box ul {
    color: #92400e;
}

/* Risk Warning Banner */
.risk-warning-banner {
    padding: 24px 0;
    background: #fef2f2;
}

.risk-warning-banner .warning-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.risk-warning-banner i {
    font-size: 2rem;
    color: #ef4444;
    flex-shrink: 0;
}

.risk-warning-banner h3 {
    color: #b91c1c;
    margin-bottom: 8px;
}

.risk-warning-banner p {
    color: #7f1d1d;
}

/* Risk Box */
.risk-box {
    padding: 24px;
    background: var(--bg-light);
    border-radius: 12px;
    margin: 24px 0;
    border-left: 4px solid var(--primary-green);
}

.risk-box.warning {
    background: #fef3c7;
    border-left-color: #f59e0b;
}

.risk-box h4 {
    margin-bottom: 12px;
}

.recommendation-box {
    padding: 24px;
    background: #dcfce7;
    border-radius: 12px;
    margin: 24px 0;
}

.recommendation-box h4 {
    color: #166534;
    margin-bottom: 12px;
}

.recommendation-box ul {
    margin: 0;
    padding-left: 20px;
}

.recommendation-box li {
    color: #166534;
}

.acknowledgement-box {
    padding: 24px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 2px solid var(--primary-green);
}

.acknowledgement-box h4 {
    color: var(--primary-green);
    margin-bottom: 12px;
}

/* Bonus Table */
.bonus-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.bonus-table th,
.bonus-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.bonus-table th {
    background: var(--bg-light);
    font-weight: 600;
}

/* KYC Page Styles */
.kyc-intro {
    padding: 60px 0;
}

.kyc-why-content h2 {
    margin-bottom: 16px;
}

.kyc-why-content > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 800px;
}

.kyc-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 12px;
}

.benefit i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.benefit span {
    font-size: 0.9375rem;
    color: var(--text-primary);
}

/* Verification Steps Timeline */
.verification-steps {
    padding: 60px 0;
    background: var(--bg-light);
}

.verification-steps h2 {
    text-align: center;
    margin-bottom: 48px;
}

.steps-timeline {
    max-width: 700px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    gap: 24px;
}

.step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-step .step-number {
    width: 48px;
    height: 48px;
    background: var(--primary-green);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-line {
    width: 2px;
    flex: 1;
    background: var(--border-color);
    margin: 8px 0;
    min-height: 40px;
}

.timeline-step:last-child .step-line {
    display: none;
}

.timeline-step.completed .step-number {
    background: var(--primary-green);
}

.step-content {
    padding-bottom: 32px;
}

.step-content h3 {
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.step-time {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.step-time i {
    margin-right: 6px;
}

/* Required Documents */
.required-documents {
    padding: 60px 0;
}

.required-documents h2 {
    text-align: center;
    margin-bottom: 48px;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.document-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.document-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.document-icon i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.document-card h3 {
    margin-bottom: 12px;
}

.document-card > p {
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.document-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.document-card ul li {
    padding: 6px 0;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.document-requirements {
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.document-requirements span {
    display: block;
    padding: 6px 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.document-requirements span i {
    color: var(--primary-green);
    margin-right: 8px;
}

/* Verification Levels */
.verification-levels {
    padding: 60px 0;
    background: var(--bg-light);
}

.verification-levels h2 {
    text-align: center;
    margin-bottom: 48px;
}

.levels-table-wrapper {
    overflow-x: auto;
}

.levels-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
}

.levels-table th,
.levels-table td {
    padding: 16px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.levels-table th {
    background: var(--text-dark);
    color: white;
    font-weight: 600;
}

.levels-table td:first-child {
    text-align: left;
    font-weight: 500;
}

/* Complaints Page Styles */
.complaint-channels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.channel-card {
    text-align: center;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 12px;
}

.channel-card i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.channel-card h4 {
    margin-bottom: 8px;
}

.channel-card p {
    color: var(--text-primary);
    margin-bottom: 4px;
}

.channel-card span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.channel-card a {
    color: var(--primary-green);
    text-decoration: none;
}

/* Process Steps */
.process-steps {
    margin: 32px 0;
}

.process-step {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.process-step .step-number {
    width: 48px;
    height: 48px;
    background: var(--primary-green);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.process-step .step-content {
    padding-bottom: 0;
}

.process-step .step-content h4 {
    margin-bottom: 8px;
}

.process-step .step-content p {
    color: var(--text-secondary);
    margin: 0;
}

/* Timeframe Table */
.timeframe-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.timeframe-table th,
.timeframe-table td {
    padding: 16px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.timeframe-table th {
    background: var(--bg-light);
    font-weight: 600;
}

/* External Contact */
.external-contact {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    margin: 16px 0 24px;
}

.external-contact p {
    margin-bottom: 8px;
}

.external-contact a {
    color: var(--primary-green);
}

/* Contact Box */
.contact-box {
    padding: 24px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
}

.contact-box h4 {
    color: var(--primary-green);
    margin-bottom: 16px;
}

.contact-box p {
    margin-bottom: 8px;
}

/* Regulation Page Styles */
.regulation-overview {
    padding: 60px 0;
}

.regulation-intro {
    display: flex;
    gap: 60px;
    align-items: center;
}

.mas-badge-section {
    flex-shrink: 0;
}

.regulation-text h2 {
    margin-bottom: 16px;
}

.regulation-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

/* License Section */
.license-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.license-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.license-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.license-card {
    background: var(--bg-white);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.license-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.license-header i {
    color: var(--primary-green);
}

.license-header span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.license-card h3 {
    color: var(--primary-green);
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.license-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.license-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.license-status.active {
    background: #dcfce7;
    color: #166534;
}

/* Company Info Section */
.company-info-section {
    padding: 60px 0;
}

.company-info-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.company-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.detail-card {
    padding: 24px;
    background: var(--bg-light);
    border-radius: 12px;
}

.detail-card h4 {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.detail-card p {
    color: var(--text-dark);
    font-weight: 600;
}

/* Regulatory Framework */
.regulatory-framework {
    padding: 60px 0;
    background: var(--bg-light);
}

.regulatory-framework h2 {
    text-align: center;
    margin-bottom: 48px;
}

.framework-content {
    max-width: 800px;
    margin: 0 auto;
}

.framework-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.framework-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.framework-icon i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.framework-text h3 {
    margin-bottom: 8px;
}

.framework-text p {
    color: var(--text-secondary);
    margin: 0;
}

/* Client Protection */
.client-protection {
    padding: 60px 0;
}

.client-protection h2 {
    text-align: center;
    margin-bottom: 48px;
}

.protection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.protection-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.protection-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.protection-icon i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.protection-card h3 {
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.protection-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* Verify Section */
.verify-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.verify-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.verify-text h2 {
    margin-bottom: 16px;
}

.verify-text p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.verify-text ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.verify-text ol li {
    padding: 8px 0;
    color: var(--text-primary);
}

.verify-badge {
    display: flex;
    justify-content: center;
}

.verify-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid var(--primary-green);
    text-align: center;
}

.verify-card i {
    font-size: 4rem;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.verify-card span {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.verify-card p {
    color: var(--text-secondary);
}

/* Restricted Section */
.restricted-section {
    padding: 60px 0;
}

.restricted-section h2 {
    text-align: center;
    margin-bottom: 16px;
}

.restricted-section > p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.restricted-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 600px;
    margin: 0 auto 24px;
}

.restricted-list ul {
    list-style: none;
}

.restricted-list li {
    padding: 8px 0;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
}

.note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Regulator Contact */
.regulator-contact {
    padding: 60px 0;
    background: var(--bg-light);
}

.regulator-contact h2 {
    text-align: center;
    margin-bottom: 48px;
}

.regulator-info {
    display: flex;
    justify-content: center;
}

.regulator-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    max-width: 400px;
}

.regulator-logo {
    height: 60px;
    margin-bottom: 20px;
}

.regulator-card h3 {
    margin-bottom: 16px;
}

.regulator-card p {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.regulator-card a {
    color: var(--primary-green);
}

/* ========================================
   Responsive Styles for Subpages
======================================== */
@media (max-width: 1200px) {
    .accounts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .license-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .protection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-intro,
    .platform-intro,
    .demo-content,
    .security-content,
    .regulation-content,
    .bonus-hero-content,
    .verify-content {
        grid-template-columns: 1fr;
    }
    
    .mission-grid,
    .tools-grid,
    .access-grid,
    .tiers-grid,
    .sessions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-wrapper {
        grid-template-columns: 1fr;
    }
    
    .legal-nav {
        position: static;
        margin-bottom: 32px;
    }
    
    .instruments-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .holiday-cards,
    .tips-grid,
    .conditions-grid,
    .terms-grid,
    .requirements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .kyc-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .complaint-channels {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .company-details {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .regulation-intro {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .accounts-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .mission-grid,
    .tools-grid,
    .access-grid,
    .tiers-grid,
    .sessions-grid,
    .processing-info {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bonus-highlights {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .orders-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platform-highlights {
        grid-template-columns: 1fr;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
    }
    
    .category-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .instruments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .holiday-cards,
    .tips-grid,
    .conditions-grid,
    .terms-grid,
    .requirements-grid,
    .protection-grid,
    .license-grid {
        grid-template-columns: 1fr;
    }
    
    .methods-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .kyc-benefits,
    .complaint-channels {
        grid-template-columns: 1fr;
    }
    
    .company-details {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .security-badges {
        grid-template-columns: 1fr;
    }
    
    .restricted-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .orders-grid {
        grid-template-columns: 1fr;
    }
    
    .app-buttons {
        flex-direction: column;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .instruments-grid {
        grid-template-columns: 1fr;
    }
}
