/* ========================================
   Nani Capital - Professional Forex Trading Tools
   Darker Blue Forex Theme
   ======================================== */

:root {
    /* Dark Blue Primary Colors - Forex Theme */
    --midnight-900: #0F172A;
    --midnight-800: #1E293B;
    --midnight-700: #334155;
    --slate-950: #020617;
    --slate-900: #0F172A;
    --slate-800: #1E293B;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748B;
    --slate-400: #94A3B8;
    --slate-300: #CBD5E1;
    --slate-200: #E2E8F0;
    --slate-100: #F1F5F9;
    
    /* Cyan/Sky/Cobalt Accents - Forex Theme */
    --cyan-500: #06B6D4;
    --cyan-400: #22D3EE;
    --sky-500: #0EA5E9;
    --sky-400: #38BDF8;
    --cobalt-500: #3B82F6;
    --cobalt-600: #2563EB;
    --cobalt-700: #1D4ED8;
    
    /* Background Colors */
    --background: #0F172A;
    --card-background: #1E293B;
    --card-background-alt: #334155;
    --border-color: #475569;
    --border-color-light: #64748B;
    
    /* Text Colors */
    --text-primary: #F1F5F9;
    --text-secondary: #CBD5E1;
    --text-tertiary: #94A3B8;
    --text-muted: #64748B;
    
    /* Forex-Specific Colors */
    --success-green: #10B981;
    --success-green-dark: #059669;
    --warning-orange: #F59E0B;
    --error-red: #EF4444;
    --error-red-dark: #DC2626;
    --info-blue: #3B82F6;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 80px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   Reset & Base Styles
   ======================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-xs);
    }
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.gradient-text {
    background: linear-gradient(135deg, var(--cyan-500) 0%, var(--sky-500) 50%, var(--cobalt-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Buttons
   ======================================== */

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--cyan-500);
    color: var(--slate-950);
    border: 1px solid var(--cyan-500);
}

.btn-primary:hover {
    background: var(--cyan-400);
    border-color: var(--cyan-400);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

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

.btn-secondary:hover {
    background: var(--slate-700);
    border-color: var(--slate-600);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
    display: block;
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .navbar {
        padding: 0;
    }
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    gap: var(--spacing-sm);
}

@media (max-width: 480px) {
    .nav-wrapper {
        padding: var(--spacing-xs) 0;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .nav-links {
        gap: var(--spacing-sm);
    }
    
    .nav-links a {
        font-size: 0.9375rem;
    }
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 1rem;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--text-primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--midnight-800);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    padding: var(--spacing-md);
    gap: var(--spacing-sm);
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

@media (max-width: 480px) {
    .mobile-menu {
        top: 60px;
        padding: var(--spacing-sm);
    }
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-menu a:hover {
    background: var(--slate-700);
    color: var(--text-primary);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    padding: var(--spacing-xl) 0;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

/* Forex Background Elements */
.forex-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

/* Currency Symbols Animation */
.currency-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.03;
}

.currency-symbols .symbol {
    position: absolute;
    font-size: 4rem;
    font-weight: 900;
    color: var(--cyan-500);
    opacity: 0.1;
    animation: floatSymbol 20s infinite linear;
}

.currency-symbols .symbol:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.currency-symbols .symbol:nth-child(2) { top: 20%; left: 85%; animation-delay: -3s; }
.currency-symbols .symbol:nth-child(3) { top: 60%; left: 15%; animation-delay: -6s; }
.currency-symbols .symbol:nth-child(4) { top: 70%; left: 80%; animation-delay: -9s; }
.currency-symbols .symbol:nth-child(5) { top: 30%; left: 50%; animation-delay: -12s; }
.currency-symbols .symbol:nth-child(6) { top: 80%; left: 60%; animation-delay: -15s; }
.currency-symbols .symbol:nth-child(7) { top: 40%; left: 5%; animation-delay: -18s; }
.currency-symbols .symbol:nth-child(8) { top: 15%; left: 70%; animation-delay: -21s; }

@keyframes floatSymbol {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.03; }
    25% { transform: translateY(-20px) rotate(90deg); opacity: 0.06; }
    50% { transform: translateY(0px) rotate(180deg); opacity: 0.03; }
    75% { transform: translateY(20px) rotate(270deg); opacity: 0.06; }
}

/* Price Lines */
.price-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.price-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan-500), transparent);
    opacity: 0.15;
    animation: moveLine 15s infinite linear;
}

.price-line:nth-child(1) { top: 25%; width: 60%; left: -60%; animation-delay: 0s; }
.price-line:nth-child(2) { top: 45%; width: 80%; left: -80%; animation-delay: -3s; }
.price-line:nth-child(3) { top: 65%; width: 70%; left: -70%; animation-delay: -6s; }
.price-line:nth-child(4) { top: 35%; width: 50%; left: -50%; animation-delay: -9s; }
.price-line:nth-child(5) { top: 75%; width: 90%; left: -90%; animation-delay: -12s; }

@keyframes moveLine {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(100vw + 100%)); }
}

/* Trading Patterns */
.trading-patterns {
    position: absolute;
    width: 100%;
    height: 100%;
}

.pattern {
    position: absolute;
    border: 2px solid var(--sky-500);
    opacity: 0.1;
    animation: patternPulse 8s infinite ease-in-out;
}

.pattern-1 {
    top: 20%;
    right: 10%;
    width: 100px;
    height: 60px;
    border-radius: 50% 0 50% 0;
    animation-delay: 0s;
}

.pattern-2 {
    bottom: 30%;
    left: 5%;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    animation-delay: -2.5s;
}

.pattern-3 {
    top: 50%;
    right: 30%;
    width: 60px;
    height: 100px;
    border-radius: 0 50% 0 50%;
    animation-delay: -5s;
}

@keyframes patternPulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.05; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.1; }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    margin-bottom: var(--spacing-sm);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-secondary);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.trust-badges {
    display: flex;
    gap: var(--spacing-lg);
}

.badge {
    display: flex;
    flex-direction: column;
}

.badge-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.badge-text {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

/* Trading Chart Animation */
.trading-chart-container {
    width: 100%;
    height: 500px;
    max-width: 100%;
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: var(--spacing-md);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--border-color);
}

.chart-title {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.875rem;
}

.chart-icon {
    color: var(--cyan-500);
    flex-shrink: 0;
}

.chart-pair {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 4px 12px;
    background: var(--midnight-800);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
}

.trading-chart {
    width: 100%;
    flex: 1;
    display: block;
    background: transparent;
    min-height: 0;
    touch-action: none;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--border-color);
}

.header-left {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.dashboard-icon {
    color: var(--cyan-500);
    flex-shrink: 0;
}

.dashboard-header h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin: 0 0 4px 0;
}

.dashboard-subtitle {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin: 0;
}

.market-status {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.status-time {
    color: var(--text-tertiary);
    font-size: 0.75rem;
    margin-left: var(--spacing-xs);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
}

.status-dot.active {
    background: var(--success-green);
    box-shadow: 0 0 8px var(--success-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Dashboard Stats */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.stat-card {
    background: var(--midnight-800);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: var(--spacing-sm);
    text-align: center;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-bottom: 4px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stat-change {
    font-size: 0.7rem;
    font-weight: 600;
}

.stat-change.positive {
    color: var(--success-green);
}

.stat-change.negative {
    color: var(--error-red);
}

/* Currency Pairs */
.currency-pairs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.pair-card {
    background: var(--midnight-800);
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pair-card.featured {
    border-left: 3px solid var(--cyan-500);
}

.pair-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.2);
    border-color: var(--cyan-500);
}

.pair-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xs);
}

.pair-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.pair-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.pair-badge.hot {
    background: var(--error-red);
    color: white;
}

.pair-price-container {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: var(--spacing-xs);
}

.pair-price {
    font-weight: 700;
    font-size: 1.25rem;
}

.pair-price.positive {
    color: var(--success-green);
}

.pair-price.negative {
    color: var(--error-red);
}

.pair-change {
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 2px;
}

.pair-change.positive {
    color: var(--success-green);
}

.pair-change.negative {
    color: var(--error-red);
}

.pair-chart {
    height: 40px;
    margin: var(--spacing-xs) 0;
    opacity: 0.8;
}

.mini-chart {
    width: 100%;
    height: 100%;
}

.pair-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-tertiary);
    margin-top: var(--spacing-xs);
}

/* Trading Signals */
.trading-signals {
    background: var(--midnight-800);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: var(--spacing-sm);
}

.signal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.signal-header-left {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.signal-icon {
    color: var(--cyan-500);
    flex-shrink: 0;
}

.signal-count {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    background: var(--slate-700);
    padding: 4px 8px;
    border-radius: 12px;
}

.signal-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.signal-item {
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    transition: var(--transition);
}

.signal-item:hover {
    transform: translateX(4px);
}

.signal-item.buy {
    background: rgba(16, 185, 129, 0.15);
    border-left: 3px solid var(--success-green);
}

.signal-item.sell {
    background: rgba(239, 68, 68, 0.15);
    border-left: 3px solid var(--error-red);
}

.signal-main {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
}

.signal-type-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.signal-type-badge.buy {
    background: var(--success-green);
    color: white;
}

.signal-type-badge.sell {
    background: var(--error-red);
    color: white;
}

.signal-details {
    flex: 1;
}

.signal-pair {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.8rem;
    margin-bottom: 2px;
}

.signal-entry {
    font-size: 0.7rem;
    color: var(--text-tertiary);
}

.signal-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--spacing-xs);
    padding-top: var(--spacing-xs);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.signal-targets {
    display: flex;
    gap: var(--spacing-sm);
    font-size: 0.7rem;
    color: var(--text-tertiary);
}

.signal-time {
    color: var(--text-tertiary);
    font-size: 0.7rem;
}

/* ========================================
   Section Styles
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding: 0 var(--spacing-sm);
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .section-header {
        padding: 0;
        margin-bottom: var(--spacing-md);
    }
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--cyan-500), var(--sky-500));
    color: var(--slate-950);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.section-header h2 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* ========================================
   Features Section
   ======================================== */

.features-overview {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.features-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.features-overview .container {
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
}

.feature-card {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.2);
    border-color: var(--cyan-500);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cyan-500), var(--sky-500));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.feature-icon svg path,
.feature-icon svg line,
.feature-icon svg polyline,
.feature-icon svg circle,
.feature-icon svg rect {
    stroke: var(--slate-950);
}

.feature-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   Products Section
   ======================================== */

.products-section {
    padding: var(--spacing-xl) 0;
    background: var(--midnight-800);
    position: relative;
    overflow: hidden;
}

.products-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgba(6, 182, 212, 0.05) 49%, rgba(6, 182, 212, 0.05) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(14, 165, 233, 0.05) 49%, rgba(14, 165, 233, 0.05) 51%, transparent 52%);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
}

.products-section .container {
    position: relative;
    z-index: 2;
}

.products-tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-secondary);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--slate-700);
    color: var(--text-primary);
    border-color: var(--cyan-500);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
}

.product-card {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.2);
    border-color: var(--cyan-500);
}

.product-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: var(--cyan-500);
    color: var(--slate-950);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cyan-500), var(--sky-500));
    color: var(--slate-950);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

.product-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.product-card > p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    flex-grow: 1;
}

.product-features {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.product-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--border-color);
}

.product-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
}

/* ========================================
   Pricing Section
   ======================================== */

.pricing-section {
    padding: var(--spacing-xl) 0;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .pricing-toggle {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .toggle-label {
        font-size: 0.875rem;
    }
}

.toggle-label {
    font-weight: 600;
    color: var(--text-secondary);
}

.save-badge {
    background: var(--cyan-500);
    color: var(--slate-950);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    margin-left: 8px;
    font-weight: 600;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--slate-700);
    transition: var(--transition);
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: var(--text-primary);
    transition: var(--transition);
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--cyan-500);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

.pricing-card {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.2);
    border-color: var(--cyan-500);
}

.pricing-card.featured {
    border: 2px solid var(--cyan-500);
    background: var(--midnight-800);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cyan-500);
    color: var(--slate-950);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.pricing-header h3 {
    margin-bottom: var(--spacing-xs);
}

.pricing-header p {
    font-size: 1rem;
    color: var(--text-tertiary);
}

.pricing-price {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    vertical-align: super;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
}

.price-period {
    font-size: 1rem;
    color: var(--text-tertiary);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
}

.pricing-note p {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   Testimonials Section
   ======================================== */

.testimonials-section {
    padding: var(--spacing-xl) 0;
    background: var(--background);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
}

.testimonial-card {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.stars {
    color: var(--warning-orange);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-card > p {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--cyan-500), var(--sky-500));
    color: var(--slate-950);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

/* ========================================
   FAQ Section
   ======================================== */

.faq-section {
    padding: var(--spacing-xl) 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    margin-bottom: var(--spacing-sm);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: var(--spacing-md);
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--midnight-800);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--cyan-500);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--midnight-900) 0%, var(--midnight-800) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.cta-content > p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.cta-buttons .btn-primary {
    background: var(--cyan-500);
    color: var(--slate-950);
    border-color: var(--cyan-500);
}

.cta-buttons .btn-primary:hover {
    background: var(--cyan-400);
    border-color: var(--cyan-400);
}

.cta-buttons .btn-secondary {
    border-color: var(--border-color);
    color: var(--text-primary);
    background: transparent;
}

.cta-buttons .btn-secondary:hover {
    background: var(--slate-700);
    border-color: var(--slate-600);
    color: var(--text-primary);
}

.cta-guarantee {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--midnight-900);
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.25rem;
    color: white;
    margin-bottom: var(--spacing-sm);
}

.footer-logo svg path,
.footer-logo svg rect {
    fill: white;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--slate-800);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--cyan-500);
    border-color: var(--cyan-500);
    color: var(--slate-950);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

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

.footer-col ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-col ul li a {
    color: var(--text-tertiary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--cyan-500);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
}

.disclaimer {
    background: var(--midnight-800);
    border: 1px solid var(--border-color);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    font-size: 0.875rem;
    text-align: left;
    color: var(--text-tertiary);
}

.footer-bottom > p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablet and below (1024px) */
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 var(--spacing-md);
    }
    
    h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
    h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
    h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Tablet (768px - 1024px) */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-cta {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-cta .btn-large {
        flex: 1;
        min-width: 200px;
    }
    
    .trust-badges {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--spacing-md);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .products-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .section-header {
        padding: 0 var(--spacing-sm);
    }
    
    /* Trading Chart Tablet */
    .trading-chart-container {
        height: 450px;
        padding: var(--spacing-sm);
    }
    
    .chart-header {
        flex-wrap: wrap;
        gap: var(--spacing-xs);
    }
    
    .chart-title {
        font-size: 0.8rem;
    }
    
    .chart-pair {
        font-size: 0.75rem;
        padding: 3px 10px;
    }
    
    /* Features Section */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    /* Products Section */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    /* Pricing Section */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .pricing-card.featured {
        transform: scale(1.02);
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
}

/* Mobile (480px - 768px) */
@media (max-width: 768px) {
    /* Navigation */
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    /* Hero Section */
    .hero {
        padding: var(--spacing-lg) 0;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn-large {
        width: 100%;
        margin: 0;
    }
    
    .trust-badges {
        flex-direction: row;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: var(--spacing-sm);
    }
    
    .badge {
        flex: 1;
        min-width: 100px;
        text-align: center;
    }
    
    .badge-number {
        font-size: 1.25rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
    
    /* Sections */
    .section-header {
        padding: 0;
    }
    
    .section-header h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Features Section */
    .features-overview {
        padding: var(--spacing-lg) 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .feature-card {
        padding: var(--spacing-md);
    }
    
    /* Products Section */
    .products-section {
        padding: var(--spacing-lg) 0;
    }
    
    .products-tabs {
        flex-direction: column;
        width: 100%;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .product-card {
        padding: var(--spacing-md);
    }
    
    /* Pricing Section */
    .pricing-section {
        padding: var(--spacing-lg) 0;
    }
    
    .pricing-toggle {
        flex-wrap: wrap;
        gap: var(--spacing-xs);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .pricing-card {
        padding: var(--spacing-md);
    }
    
    .pricing-card.featured {
        transform: scale(1);
        border-width: 2px;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    /* Testimonials */
    .testimonials-section {
        padding: var(--spacing-lg) 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .testimonial-card {
        padding: var(--spacing-md);
    }
    
    /* FAQ Section */
    .faq-section {
        padding: var(--spacing-lg) 0;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: var(--spacing-sm);
    }
    
    .faq-answer p {
        padding: 0 var(--spacing-sm) var(--spacing-sm);
        font-size: 0.9375rem;
    }
    
    /* CTA Section */
    .cta-section {
        padding: var(--spacing-lg) 0;
    }
    
    .cta-content h2 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
    
    .cta-content > p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn-large {
        width: 100%;
    }
    
    /* Footer */
    .footer {
        padding: var(--spacing-lg) 0 var(--spacing-sm);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .footer-col {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .disclaimer {
        font-size: 0.75rem;
        padding: var(--spacing-sm);
    }
    
    /* Trading Chart Mobile Adjustments */
    .trading-chart-container {
        height: 350px;
        padding: var(--spacing-sm);
        margin: 0 calc(-1 * var(--spacing-sm));
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    .chart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
        padding: 0 var(--spacing-sm);
    }
    
    .chart-title {
        font-size: 0.75rem;
    }
    
    .chart-icon {
        width: 16px;
        height: 16px;
    }
    
    .chart-pair {
        font-size: 0.7rem;
        padding: 3px 8px;
        align-self: flex-start;
    }
    
    .trading-chart {
        padding: 0 var(--spacing-sm);
    }
    
    /* Reduce background animation intensity on mobile */
    .currency-symbols .symbol {
        font-size: 2rem;
        opacity: 0.02;
    }
    
    .price-line {
        opacity: 0.05;
    }
    
    .pattern {
        opacity: 0.03;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    :root {
        --spacing-xl: 40px;
        --spacing-lg: 24px;
        --spacing-md: 16px;
        --spacing-sm: 12px;
        --spacing-xs: 8px;
    }
    
    /* Typography */
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    p {
        font-size: 0.9375rem;
    }
    
    /* Navigation */
    .nav-wrapper {
        padding: var(--spacing-xs) 0;
    }
    
    .logo {
        font-size: 0.875rem;
    }
    
    /* Hero Section */
    .hero {
        padding: var(--spacing-md) 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: var(--spacing-md);
    }
    
    .hero-cta {
        gap: var(--spacing-xs);
    }
    
    .btn-large {
        padding: 12px 20px;
        font-size: 0.9375rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .badge {
        width: 100%;
    }
    
    .badge-number {
        font-size: 1.125rem;
    }
    
    .badge-text {
        font-size: 0.7rem;
    }
    
    /* Sections */
    .section-header {
        margin-bottom: var(--spacing-md);
    }
    
    .section-label {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .section-header p {
        font-size: 0.9375rem;
    }
    
    /* Features */
    .features-overview {
        padding: var(--spacing-md) 0;
    }
    
    .feature-card {
        padding: var(--spacing-sm);
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-card h3 {
        font-size: 1.125rem;
    }
    
    .feature-card p {
        font-size: 0.875rem;
    }
    
    /* Products */
    .products-section {
        padding: var(--spacing-md) 0;
    }
    
    .products-tabs {
        gap: var(--spacing-xs);
    }
    
    .tab-btn {
        padding: 10px 16px;
        font-size: 0.875rem;
    }
    
    .product-card {
        padding: var(--spacing-sm);
    }
    
    .product-price {
        font-size: 1.5rem;
    }
    
    /* Pricing */
    .pricing-section {
        padding: var(--spacing-md) 0;
    }
    
    .pricing-toggle {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .pricing-card {
        padding: var(--spacing-sm);
    }
    
    .pricing-header h3 {
        font-size: 1.25rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .pricing-features li {
        font-size: 0.875rem;
        padding: 8px 0;
    }
    
    /* Testimonials */
    .testimonials-section {
        padding: var(--spacing-md) 0;
    }
    
    .testimonial-card {
        padding: var(--spacing-sm);
    }
    
    .testimonial-card > p {
        font-size: 0.875rem;
    }
    
    /* FAQ */
    .faq-section {
        padding: var(--spacing-md) 0;
    }
    
    .faq-question {
        font-size: 0.9375rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .faq-answer p {
        font-size: 0.875rem;
        padding: 0 var(--spacing-sm) var(--spacing-sm);
    }
    
    /* CTA */
    .cta-section {
        padding: var(--spacing-md) 0;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content > p {
        font-size: 0.9375rem;
    }
    
    .cta-guarantee {
        font-size: 0.875rem;
    }
    
    /* Footer */
    .footer {
        padding: var(--spacing-md) 0 var(--spacing-xs);
    }
    
    .footer-logo {
        font-size: 1rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .footer-col h4 {
        font-size: 0.875rem;
    }
    
    .footer-col ul li a {
        font-size: 0.875rem;
    }
    
    .disclaimer {
        font-size: 0.7rem;
        padding: var(--spacing-xs);
    }
    
    /* Trading Chart Small Mobile */
    .trading-chart-container {
        height: 280px;
        padding: var(--spacing-xs);
        margin: 0 calc(-1 * var(--spacing-xs));
    }
    
    .chart-header {
        padding: 0 var(--spacing-xs);
        margin-bottom: var(--spacing-xs);
    }
    
    .chart-title {
        font-size: 0.7rem;
    }
    
    .chart-icon {
        width: 14px;
        height: 14px;
    }
    
    .chart-pair {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
    
    /* Buttons */
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9375rem;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .trading-chart-container {
        height: 300px;
    }
}

@media (max-width: 480px) and (orientation: landscape) {
    .trading-chart-container {
        height: 250px;
    }
}

/* ========================================
   Animations
   ======================================== */

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll offset for fixed navbar */
section {
    scroll-margin-top: 80px;
}

