/* Enhanced CSS Variables with Dark Blue Theme */
:root {
    /* Typography */
    --font-primary: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Primary Colors - Dark Blue Theme */
    --primary: #001c69;
    --primary-dark: #00218d;
    --primary-light: #00218d;
    --primary-gradient: linear-gradient(135deg, #001c69 0%, #001c69 100%);
    
    /* Secondary Colors */
    --secondary: #0032a8;
    --secondary-light: #334155;
    --secondary-gradient: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --bg-gradient: linear-gradient(135deg, #001c69 0%, #001c69 100%);
    --bg-hero: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
    
    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    
    /* Border Colors */
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    
    /* Status Colors */
    --success: #10b981;
    --success-light: #34d399;
    --warning: #f59e0b;
    --warning-light: #fbbf24;
    --error: #ef4444;
    --error-light: #f87171;
    --info: #3b82f6;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(30, 58, 138, 0.3);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.6s ease;
    --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    
    /* Z-index layers */
    --z-navbar: 1010;
    --z-fab: 1020;
    --z-modal: 1030;
    --z-tooltip: 1040;
}

/* Enhanced Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
html, body {
  overflow-x: hidden;
}
/* Enhanced Typography with Raleway for headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.025em;
}

h1 { 
    font-size: clamp(2.5rem, 5vw, 4rem); 
    font-weight: 800;
}
h2 { 
    font-size: clamp(2rem, 4vw, 3rem); 
    font-weight: 700;
}
h3 { 
    font-size: clamp(1.5rem, 3vw, 2rem); 
    font-weight: 600;
}
h4 { 
    font-size: clamp(1.25rem, 2.5vw, 1.5rem); 
    font-weight: 600;
}
h5 { 
    font-size: clamp(1.125rem, 2vw, 1.25rem); 
    font-weight: 500;
}
h6 { 
    font-size: clamp(1rem, 1.5vw, 1.125rem); 
    font-weight: 500;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 400;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* Enhanced Buttons */
.btn {
    font-family: var(--font-secondary);
    font-weight: 600;
    border-radius: var(--radius-lg);
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.025em;
    line-height: 1.2;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Pulse Animation for CTAs */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(30, 58, 138, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(30, 58, 138, 0); }
    100% { box-shadow: 0 0 0 0 rgba(30, 58, 138, 0); }
}

/* Enhanced Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
    padding: 1rem 0;
    z-index: var(--z-navbar);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    font-family: var(--font-secondary);
    font-weight: 800;
}

.logo-w {
    font-size: 1.75rem;
    font-weight: 900;
    color: white;
    font-family: var(--font-secondary);
}

.logo-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.brand-text {
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.navbar-nav .nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
    margin: 0 0.25rem;
    font-family: var(--font-secondary);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--primary);
    background: rgba(30, 58, 138, 0.1);
    transform: translateY(-1px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transform: translateX(-50%);
    transition: var(--transition);
    border-radius: 1px;
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.navbar-toggler:focus {
    box-shadow: var(--shadow-md);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
}

/* Hero Section with Enhanced Animations */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: var(--bg-hero);
    position: relative;
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    background: var(--primary-gradient);
    border-radius: 50%;
    opacity: 0.08;
    animation: float 8s ease-in-out infinite;
}

.floating-shape.shape-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape.shape-2 {
    width: 180px;
    height: 180px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-shape.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 25%;
    left: 20%;
    animation-delay: 4s;
}

.floating-shape.shape-4 {
    width: 140px;
    height: 140px;
    top: 10%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(15px) rotate(240deg); }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(30, 58, 138, 0.08);
    border: 2px solid rgba(30, 58, 138, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-3xl);
    font-size: 0.875rem;
    color: var(--primary);
    margin-bottom: var(--spacing-lg);
    font-weight: 600;
    font-family: var(--font-secondary);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.animated-badge {
    animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 5px rgba(30, 58, 138, 0.3); }
    50% { box-shadow: 0 0 20px rgba(30, 58, 138, 0.6), 0 0 30px rgba(30, 58, 138, 0.4); }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    letter-spacing: -0.02em;
    font-family: var(--font-secondary);
}

.animated-gradient {
    background: linear-gradient(45deg, var(--primary), var(--primary), var(--primary));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
    position: relative;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    font-weight: 400;
}

.hero-actions {
    margin-bottom: var(--spacing-xl);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Platform Mockup Enhanced */
.hero-platform {
    padding: 2rem 0;
}

.platform-mockup {
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.platform-mockup:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg) scale(1.02);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
}

.platform-header {
    background: var(--bg-light);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}

.platform-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    transition: var(--transition);
}

.control:hover {
    transform: scale(1.2);
}

.control.red { background: #ef4444; }
.control.yellow { background: #f59e0b; }
.control.green { background: #10b981; }

.platform-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-family: var(--font-secondary);
}

.platform-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--success);
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.platform-body {
    padding: 1.5rem;
}

.trading-chart {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1rem;
    position: relative;
    height: 220px;
    border: 1px solid var(--border);
}

#tradingChart {
    width: 100%;
    height: 100%;
}

.chart-info {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-sm);
}

.price-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.current-price {
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-size: 1rem;
}

.price-change.positive {
    color: var(--success);
    font-weight: 600;
}

.price-change.negative {
    color: var(--error);
    font-weight: 600;
}

/* Sections */
.section {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.section-header {
    margin-bottom: var(--spacing-2xl);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    position: relative;
    font-family: var(--font-secondary);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    transform: translateX(-50%);
    border-radius: var(--radius-sm);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Enhanced Market Cards */
.market-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-lg);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.market-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.05), transparent);
    transition: left 0.8s ease;
}

.market-card:hover::before {
    left: 100%;
}

.market-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.market-icon {
    width: 90px;
    height: 90px;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: white;
    font-size: 2.25rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.market-card:hover .market-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-glow);
}

.market-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-weight: 700;
}

.market-card p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.market-stats {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-light);
}

.market-stats .stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.market-stats .stat-label {
    color: var(--text-muted);
}

.market-stats .stat-value {
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-secondary);
}

/* Platform Section Enhanced */
.platform-showcase {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.platform-app-preview {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--spacing-lg);
}

.platform-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.platform-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--radius-xl);
}

.platform-app-preview:hover .platform-overlay {
    opacity: 1;
}

.play-button {
    width: 90px;
    height: 90px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.25rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
    border: none;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

/* App Info Section */
.app-info {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
}

.app-header {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.app-logo {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.app-logo .logo-w {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    font-family: var(--font-secondary);
}

.app-details h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-secondary);
}

.app-details p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.app-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(30, 58, 138, 0.05);
    border-color: rgba(30, 58, 138, 0.2);
}

.feature-item i {
    color: var(--primary);
    font-size: 1.25rem;
    width: 20px;
    text-align: center;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    font-family: var(--font-secondary);
}

.platform-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border);
    margin-bottom: var(--spacing-lg);
    transition: var(--transition);
}

.platform-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-color: rgba(30, 58, 138, 0.2);
}

.platform-item-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.platform-item-content h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    font-size: 1.375rem;
    font-family: var(--font-secondary);
    font-weight: 700;
}

.platform-item-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    font-size: 0.95rem;
}

.platform-item-content ul {
    list-style: none;
    padding: 0;
}

.platform-item-content li {
    padding: 0.375rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.25rem;
}

.platform-item-content li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
}

/* Account Cards Enhanced */
.account-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-lg);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.account-card.featured {
    border-color: var(--primary);
    position: relative;
    background: linear-gradient(135deg, white 0%, rgba(30, 58, 138, 0.03) 100%);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-3xl);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
    font-family: var(--font-secondary);
    animation: badge-bounce 2s ease-in-out infinite;
}

@keyframes badge-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-2px); }
}

.account-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.account-header {
    margin-bottom: var(--spacing-lg);
}

.account-icon {
    width: 90px;
    height: 90px;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: white;
    font-size: 2.25rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.account-card:hover .account-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-glow);
}

.account-header h3 {
    font-size: 1.625rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-weight: 700;
}

.account-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    font-family: var(--font-secondary);
}

.account-features {
    margin-bottom: var(--spacing-lg);
    text-align: left;
}

.account-features p {
    text-align: center;
    margin-bottom: var(--spacing-md);
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.account-features ul {
    list-style: none;
    padding: 0;
}

.account-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.account-features li i {
    color: var(--success);
    font-size: 1rem;
    width: 16px;
}

/* Promotion Cards Enhanced */
.promotion-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-lg);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.promotion-ribbon {
    position: absolute;
    top: 18px;
    right: -35px;
    background: var(--warning);
    color: white;
    padding: 0.375rem 3rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: var(--shadow-md);
    z-index: 10;
    font-family: var(--font-secondary);
}

.promotion-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.promotion-icon {
    width: 90px;
    height: 90px;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: white;
    font-size: 2.25rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.promotion-card:hover .promotion-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-glow);
}

.promotion-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-weight: 700;
}

.promotion-card p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.promotion-value {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    font-family: var(--font-secondary);
}

/* Safety Section Enhanced */
.safety-disclosure {
    background: var(--bg-light);
}

.safety-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border);
    margin-bottom: var(--spacing-lg);
    transition: var(--transition);
}

.safety-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.safety-item.warning {
    border-left: 6px solid var(--warning);
    background: linear-gradient(135deg, white 0%, rgba(245, 158, 11, 0.02) 100%);
}

.safety-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.safety-content h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    font-size: 1.375rem;
    font-family: var(--font-secondary);
    font-weight: 700;
}

.safety-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.safety-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
}

.safety-card .card-header {
    background: var(--primary-gradient);
    color: white;
    padding: var(--spacing-lg);
}

.safety-card .card-header h3 {
    margin: 0;
    color: white;
    font-size: 1.375rem;
    font-family: var(--font-secondary);
    font-weight: 700;
}

.safety-card .card-body {
    padding: var(--spacing-lg);
}

.risk-warning {
    background: rgba(245, 158, 11, 0.08);
    border: 2px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-primary);
}

.risk-warning i {
    color: var(--warning);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.disclaimer-section {
    margin-bottom: var(--spacing-lg);
}

.disclaimer-section:last-child {
    margin-bottom: 0;
}

.disclaimer-section h5 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
    font-family: var(--font-secondary);
    font-weight: 600;
}

.disclaimer-section ul {
    list-style: none;
    padding: 0;
}

.disclaimer-section li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.disclaimer-section li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Features Section */
.feature-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-lg);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.05), transparent);
    transition: left 0.8s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: white;
    font-size: 2.25rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-glow);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Section Enhanced */
.cta-section {
    background: var(--primary-gradient);
    color: white;
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float-cta 10s ease-in-out infinite;
}

.cta-shape-1 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.cta-shape-3 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 70%;
    animation-delay: 6s;
}

@keyframes float-cta {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-40px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-family: var(--font-secondary);
}

.cta-section h2::after {
    display: none;
}

.cta-section p {
    font-size: 1.375rem;
    margin-bottom: var(--spacing-xl);
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.cta-btn-primary {
    background: white;
    color: var(--primary);
    border-color: white;
    box-shadow: var(--shadow-xl);
}

.cta-btn-primary:hover {
    background: var(--bg-light);
    color: var(--primary);
    border-color: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

.cta-btn-demo {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-btn-demo:hover {
    background: white;
    color: var(--primary);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.cta-feature i {
    color: var(--success-light);
    font-size: 1.125rem;
}

/* Contact Cards Enhanced */
.contact-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-lg);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.05), transparent);
    transition: left 0.8s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.contact-icon {
    width: 90px;
    height: 90px;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: white;
    font-size: 2.25rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-glow);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-weight: 700;
}

.contact-card p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    text-align: left;
    border: 1px solid var(--border-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-info strong {
    color: var(--text-primary);
    font-family: var(--font-secondary);
}

/* Office Info */
.office-info {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border);
}

.office-info h3 {
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.625rem;
}

.office-details {
    margin-bottom: var(--spacing-lg);
}

.office-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.office-item i {
    color: var(--primary);
    font-size: 1.75rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.office-item strong {
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-weight: 600;
}

/* Lead Form */
.lead-form-container {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border);
}

.lead-form-container h3 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.75rem;
}

.form-control,
.form-select {
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    padding: 0.875rem 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
    font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-label {
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-check-label a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}

/* Enhanced Footer */
.footer {
    background: var(--bg-dark);
    color: white;
}

.footer-top {
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-bottom {
    padding: var(--spacing-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    margin-bottom: var(--spacing-lg);
}

.footer-brand .brand-text {
    color: white;
    font-size: 1.75rem;
}

.footer-brand .logo-icon {
    background: var(--primary-gradient);
    width: 48px;
    height: 48px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin: var(--spacing-md) 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-section {
    margin-bottom: var(--spacing-lg);
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-md);
    position: relative;
    font-family: var(--font-secondary);
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    display: inline-block;
}

.footer-section a:hover {
    color: white;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 400;
}

.legal-notice {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-notice small {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.85rem;
}

/* Floating Action Button */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: var(--z-fab);
}

.fab-main {
    width: 66px;
    height: 66px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.625rem;
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    border: none;
}

.fab-main:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.fab-main.open i {
    transform: rotate(45deg);
}

.fab-menu {
    position: absolute;
    bottom: 85px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.fab-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-item {
    width: 54px;
    height: 54px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.375rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: none;
    position: relative;
}

.fab-item:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.fab-item::before {
    content: attr(title);
    position: absolute;
    right: 70px;
    background: var(--bg-dark);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
    box-shadow: var(--shadow-md);
    font-family: var(--font-secondary);
    font-weight: 500;
}

.fab-item:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 54px;
    height: 54px;
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.375rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: var(--z-fab);
    box-shadow: var(--shadow-lg);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* Advanced Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Responsive Design */
@media (max-width: 1400px) {
    :root {
        --spacing-3xl: 5rem;
        --spacing-2xl: 3.5rem;
    }
}

@media (max-width: 1200px) {
    .hero .container {
        text-align: center;
    }
    
    .hero-platform {
        margin-top: var(--spacing-xl);
    }
    
    .platform-mockup {
        transform: none;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .floating-shape {
        display: none;
    }

    .platform-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .platform-item-icon {
        margin-bottom: var(--spacing-md);
    }

    .app-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .app-logo {
        margin-bottom: var(--spacing-md);
    }

    .app-features {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

@media (max-width: 992px) {
    :root {
        --spacing-3xl: 4rem;
        --spacing-2xl: 3rem;
        --spacing-xl: 2rem;
    }
    
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: var(--spacing-xl);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
        margin: 0 0 1rem 0;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 320px;
        margin: 0 0 1rem 0;
    }
    
    .cta-features {
        gap: var(--spacing-md);
    }
    
    .fab-container {
        bottom: 100px;
    }
    
    .back-to-top {
        bottom: 100px;
    }

    .market-icon,
    .account-icon,
    .promotion-icon,
    .feature-icon,
    .contact-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .app-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        background: var(--bg-light);
        border-radius: var(--radius-xl);
        padding: var(--spacing-md);
        margin-top: var(--spacing-md);
        box-shadow: var(--shadow-lg);
    }
    
    .navbar-actions {
        margin-top: var(--spacing-md);
        flex-direction: column;
        width: 100%;
    }
    
    .navbar-actions .btn {
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .platform-header {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .platform-body {
        padding: 1rem;
    }
    
    .trading-chart {
        height: 180px;
    }
    
    .safety-item {
        flex-direction: column;
        text-align: center;
    }

    .safety-icon {
        margin-bottom: var(--spacing-sm);
    }
    
    .fab-container {
        bottom: 25px;
        right: 25px;
    }
    
    .back-to-top {
        bottom: 25px;
        left: 25px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .section-header h2 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .app-header {
        gap: var(--spacing-sm);
    }

    .app-logo {
        width: 60px;
        height: 60px;
    }

    .app-logo .logo-w {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    :root {
        --spacing-3xl: 3rem;
        --spacing-2xl: 2rem;
        --spacing-xl: 1.5rem;
    }
    
    .section {
        padding: var(--spacing-xl) 0;
    }
    
    .platform-body {
        padding: 0.75rem;
    }
    
    .trading-chart {
        height: 150px;
    }
    
    .fab-main {
        width: 56px;
        height: 56px;
        font-size: 1.375rem;
    }
    
    .fab-item {
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
    }
    
    .back-to-top {
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.625rem 1.25rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .cta-section p {
        font-size: 1.25rem;
    }

    .market-icon,
    .account-icon,
    .promotion-icon,
    .feature-icon,
    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .platform-item-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .app-logo {
        width: 50px;
        height: 50px;
    }

    .app-logo .logo-w {
        font-size: 1.25rem;
    }
}

@media (max-width: 400px) {
    .hero-actions .btn,
    .cta-actions .btn {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }

    .market-card,
    .account-card,
    .promotion-card,
    .feature-card,
    .contact-card {
        padding: 1.25rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-actions,
    .cta-section,
    .fab-container,
    .back-to-top,
    .platform-overlay {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
        font-size: 12pt;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
        background: white !important;
    }
    
    .section {
        padding: 1rem 0;
    }

    h1, h2, h3, h4, h5, h6 {
        color: black !important;
    }

    .brand-text {
        -webkit-text-fill-color: black !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --text-primary: #000;
        --text-secondary: #333;
        --border: #666;
        --bg-light: #f0f0f0;
    }
    
    .btn-outline-primary {
        border-width: 3px;
    }

    .market-card,
    .account-card,
    .promotion-card,
    .feature-card,
    .contact-card {
        border-width: 3px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-shape,
    .cta-shape,
    .pulse-animation,
    .animated-badge {
        animation: none !important;
    }

    .platform-mockup {
        transform: none !important;
    }
}

/* Focus Styles for Accessibility */
*:focus {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

.btn:focus,
.nav-link:focus {
    outline: 3px solid var(--primary-light);
    outline-offset: 2px;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Selection Styling */
::selection {
    background: var(--primary);
    color: white;
}

::-moz-selection {
    background: var(--primary);
    color: white;
}