/* Trading-themed color palette */
:root {
    --primary-color: #FFD700;        /* Gold */
    --secondary-color: #00D4FF;      /* Cyan Blue */
    --accent-color: #FF6B35;         /* Orange */
    --success-color: #00FF88;        /* Green */
    --danger-color: #FF3366;         /* Red */
    --dark-bg: #0D1421;              /* Deep Navy */
    --card-bg: #1A2332;              /* Card Background */
    --text-light: #FFFFFF;
    --text-muted: #8A9BAE;
    --border-color: #2D3748;
    --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FF6B35 100%);
    --gradient-secondary: linear-gradient(135deg, #00D4FF 0%, #0080FF 100%);
    --gradient-dark: linear-gradient(135deg, #0D1421 0%, #1A2332 100%);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Trading particles background */
.trading-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.trading-particles::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

/* Navigation */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(13, 20, 33, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-family: 'JetBrains Mono', monospace;
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar .logo i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-dark);
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    overflow: hidden;
}

.hero-background-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(45, 55, 72, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45, 55, 72, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
    width: 100%;
}

.hero-visual {
    animation: slideInRight 1s ease-out;
    width: 100%;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--success-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: var(--success-color);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success-color);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { 
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.2);
        transform: scale(1);
    }
    to { 
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
        transform: scale(1.02);
    }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.gradient-text {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trading-crown {
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.performance-ticker {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(26, 35, 50, 0.5);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.ticker-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.ticker-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.ticker-value {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-light);
}

.ticker-value.positive {
    color: var(--success-color);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(26, 35, 50, 0.3);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-number {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-symbol {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: var(--dark-bg);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-light);
    border-color: var(--border-color);
}

.cta-button.secondary:hover {
    background: var(--card-bg);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--success-color);
}

.hero-visual {
    animation: slideInRight 1s ease-out;
}

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

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: rgba(26, 35, 50, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(1) { animation-delay: 0s; }
.floating-card:nth-child(2) { animation-delay: 2s; }
.floating-card:nth-child(3) { animation-delay: 4s; }

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

.currency-pair {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
}

.price-change {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 0.8rem;
}

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

.price-change.negative {
    color: var(--danger-color);
}

.trading-dashboard {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.5s both;
}

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

.dashboard-header {
    display: flex;
    background: rgba(13, 20, 33, 0.8);
    border-bottom: 1px solid var(--border-color);
}

.tab {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab.active {
    color: var(--primary-color);
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
}

.dashboard-content {
    padding: 1.5rem;
}

.chart-container {
    margin-bottom: 1.5rem;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.chart-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.asset {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    color: var(--text-light);
    font-size: 1.1rem;
}

.price {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.price.negative {
    color: var(--danger-color);
}

.change {
    font-size: 0.9rem;
}

.timeframe-selector {
    display: flex;
    gap: 0.5rem;
}

.timeframe {
    padding: 0.25rem 0.75rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-muted);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeframe.active,
.timeframe:hover {
    background: var(--secondary-color);
    color: var(--dark-bg);
    border-color: var(--secondary-color);
}

.trading-signals {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
}

.signal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: signalPulse 2s infinite;
}

.signal.buy {
    background: rgba(0, 255, 136, 0.2);
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

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

.quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.quick-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(13, 20, 33, 0.5);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.quick-stat .label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.quick-stat .value {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    color: var(--text-light);
}

.quick-stat .value.positive {
    color: var(--success-color);
}

.hero-chart {
    flex: 1;
    max-width: 500px;
    z-index: 2;
    position: relative;
}

.chart-container {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .performance-ticker {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-indicators {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .floating-elements {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 1rem 40px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cta-button {
        justify-content: center;
    }
    
    .quick-stats {
        grid-template-columns: 1fr;
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--dark-bg);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--dark-bg);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Performance Section */
.performance {
    padding: 100px 0;
    background: var(--card-bg);
}

.performance h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.performance-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 2rem;
    color: var(--dark-bg);
}

.stat-card h3 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.performance-chart {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.performance-chart h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.chart-wrapper {
    position: relative;
    height: 400px;
    background: var(--card-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--dark-bg);
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Price Alert Banner */
.price-alert {
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border: 2px solid var(--danger-color);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem auto 4rem;
    max-width: 800px;
    animation: alertPulse 2s infinite;
}

@keyframes alertPulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 0 10px rgba(255, 51, 102, 0);
        transform: scale(1.02);
    }
}

.alert-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.alert-content i {
    color: var(--danger-color);
    font-size: 1.5rem;
    animation: fire 1s ease-in-out infinite alternate;
}

@keyframes fire {
    from { transform: scale(1) rotate(0deg); }
    to { transform: scale(1.1) rotate(5deg); }
}

.alert-text {
    color: var(--text-light);
    font-weight: 600;
    flex: 1;
}

.countdown-timer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.countdown-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.countdown {
    display: flex;
    gap: 1rem;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 51, 102, 0.2);
    padding: 0.5rem;
    border-radius: 8px;
    min-width: 50px;
}

.time-unit span:first-child {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--danger-color);
}

.time-unit small {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Single Plan Layout */
.pricing-grid.single-plan {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
    width: 100%;
}

.pricing-card.mega {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255, 215, 0, 0.05) 100%);
}

.special-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--dark-bg);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.price-comparison {
    margin-bottom: 1rem;
}

.old-price {
    text-align: center;
    margin-bottom: 0.5rem;
}

.old-price .label {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: block;
}

.old-price .amount {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.current-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.current-price .currency {
    font-size: 2rem;
    color: var(--primary-color);
}

.current-price .amount {
    font-family: 'JetBrains Mono', monospace;
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 0 0.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.current-price .period {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.savings {
    text-align: center;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--success-color);
    border-radius: 12px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.save-amount {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--success-color);
    display: block;
}

.save-percent {
    font-size: 0.9rem;
    color: var(--success-color);
}

.plan-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    text-align: center;
}

.features-section {
    margin: 2rem 0;
}

.features-section h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-light);
    font-weight: 500;
}

.features-list .fa-check {
    color: var(--success-color);
    font-size: 1.1rem;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--success-color);
    border-radius: 12px;
    padding: 1rem;
    margin: 2rem 0;
    color: var(--success-color);
    font-weight: 600;
}

.guarantee-badge i {
    font-size: 1.2rem;
}

.mega-button {
    width: 100%;
    padding: 1.5rem;
    background: var(--gradient-primary);
    color: var(--dark-bg);
    border: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.mega-button::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;
}

.mega-button:hover::before {
    left: 100%;
}

.mega-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
}

.button-text {
    display: block;
    font-size: 1.2rem;
}

.button-subtext {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.urgency-text {
    text-align: center;
    color: var(--danger-color);
    font-weight: 600;
    font-size: 0.9rem;
    animation: urgencyBlink 2s infinite;
}

@keyframes urgencyBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.7; }
}

.urgency-text i {
    margin-right: 0.5rem;
}

/* Value Proposition */
.value-proposition {
    margin-top: 4rem;
    text-align: center;
}

.value-proposition h3 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.value-item h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--card-bg);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-item h3 {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.info-item p {
    color: var(--text-muted);
}

.contact-form {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--dark-bg);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.form-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p,
.footer-section li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger span:first-child {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:last-child {
    bottom: 0;
}

.hamburger.active span:first-child {
    transform: rotate(45deg);
    top: 50%;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:last-child {
    transform: rotate(-45deg);
    bottom: 50%;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-layout {
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .floating-elements {
        /* Reduce floating elements on medium screens */
        display: none;
    }
}

@media (max-width: 968px) {
    /* Navigation adjustments */
    .navbar {
        padding: 1rem;
    }
    
    .navbar .logo {
        font-size: 1.5rem;
    }
    
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: var(--dark-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
        z-index: 1000;
        gap: 2rem;
        border-left: 1px solid var(--border-color);
    }

    .nav-links.active {
        right: 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }
    
    /* Hero Section adjustments */
    .hero {
        padding: 100px 0 40px;
        min-height: auto;
    }
    
    .hero-layout {
        grid-template-columns: 1fr !important;
        gap: 3rem;
        text-align: center;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .hero-content {
        order: 1;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-visual {
        order: 2;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        display: none; /* Hide on mobile devices */
    }
    
    .performance-ticker {
        display: none; /* Hide on mobile devices */
    }
    
    .trust-indicators {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        min-width: 200px;
        justify-content: center;
        flex: 1;
        max-width: 250px;
    }
    
    /* Hide complex dashboard on mobile - show simpler chart */
    .trading-dashboard {
        display: none; /* Hide entire trading dashboard on mobile */
    }
    
    /* Features section */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    /* Performance section */
    .performance-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Pricing section */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .price-alert {
        padding: 1rem;
        text-align: center;
    }
    
    .alert-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .countdown {
        gap: 0.5rem;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .value-item {
        padding: 1.5rem;
        text-align: center;
    }
    
    /* Contact section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        text-align: center;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 580px) {
    /* Mobile-specific adjustments */
    .hero h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Ensure these elements remain hidden on small mobile devices */
    .hero-stats {
        display: none;
    }
    
    .performance-ticker {
        display: none;
    }
    
    .trading-dashboard {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        min-width: auto;
    }
    
    .trust-indicators {
        max-width: 350px;
    }
    
    .performance-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    /* Further reductions for smaller tablets */
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat {
        padding: 0.75rem;
    }
    
    .performance-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Hide performance chart on smaller devices */
    .performance-chart {
        display: none;
    }
    
    .features-section h4 {
        font-size: 1rem;
    }
    
    .features-list li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Mobile phone optimizations */
    .container {
        padding: 0 1rem;
    }
    
    .navbar {
        padding: 0.75rem;
    }
    
    .navbar .logo {
        font-size: 1.3rem;
    }
    
    .hero {
        padding: 80px 1rem 30px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .status-indicator {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Simplify performance ticker for mobile */
    .performance-ticker {
        padding: 0.75rem;
    }
    
    .ticker-item {
        gap: 0.15rem;
    }
    
    .ticker-label {
        font-size: 0.7rem;
    }
    
    .ticker-value {
        font-size: 1rem;
    }
    
    /* Hide some hero stats on very small screens */
    .hero-stats .stat:nth-child(3),
    .hero-stats .stat:nth-child(4) {
        display: none;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        justify-content: center;
    }
    
    /* Hide trust indicators on very small screens */
    .trust-indicators {
        display: none;
    }
    
    /* Simplify trading dashboard */
    .trading-dashboard {
        margin-top: 2rem;
    }
    
    .dashboard-content {
        padding: 1rem;
    }
    
    /* Section spacing */
    .features, .performance, .pricing, .contact {
        padding: 60px 0;
    }
    
    .features h2, .performance h2, .pricing h2, .contact h2 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Pricing adjustments */
    .plan-header h3 {
        font-size: 1.5rem;
    }
    
    .current-price .amount {
        font-size: 3rem;
    }
    
    .current-price .currency {
        font-size: 1.5rem;
    }
    
    .current-price .period {
        font-size: 1rem;
    }
    
    /* Hide some feature categories on mobile */
    .features-section .features-list:nth-of-type(2),
    .features-section .features-list:nth-of-type(3) {
        display: none;
    }
    
    .features-section h4:nth-of-type(2),
    .features-section h4:nth-of-type(3) {
        display: none;
    }
    
    /* Simplify form */
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    /* Countdown timer adjustments */
    .countdown {
        gap: 0.25rem;
    }
    
    .time-unit {
        min-width: 40px;
        padding: 0.25rem;
    }
    
    .time-unit span:first-child {
        font-size: 1rem;
    }
    
    .time-unit small {
        font-size: 0.6rem;
    }
}

@media (max-width: 360px) {
    /* Very small device optimizations */
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .current-price .amount {
        font-size: 2.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .nav-links {
        width: 250px;
    }
    
    /* Further simplify features */
    .features-grid .feature-card:nth-child(n+4) {
        display: none;
    }
    
    /* Show only essential stats */
    .performance-stats .stat-card:nth-child(n+3) {
        display: none;
    }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}
