/* Luma AI - Dark Mode Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #16161f;
    --bg-card-hover: #1c1c28;
    --border-color: #2a2a3a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6b6b7b;
    --accent: #6366f1;
    --accent-hover: #818cf8;
    --accent-glow: rgba(99, 102, 241, 0.3);
    --success: #10b981;
    --danger: #ef4444;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}

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

/* Promo Bar */
.promo-bar {
    background: linear-gradient(90deg, var(--accent), #a855f7);
    padding: 10px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1001;
}

.promo-text {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.promo-text strong {
    font-weight: 800;
}

.promo-link {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.promo-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Navigation - Glassmorphism */
.navbar {
    position: fixed;
    top: 40px;
    width: 100%;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-logo:hover .logo-text {
    background: linear-gradient(135deg, var(--accent), #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon {
    font-size: 28px;
}

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, var(--accent), #a855f7);
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.cta-button.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 14px;
}

.cta-icon {
    font-size: 16px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
    border-bottom: 1px solid var(--glass-border);
}

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

.mobile-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-link:hover {
    background: var(--glass-bg);
    color: var(--accent);
}

.mobile-cta {
    background: linear-gradient(135deg, var(--accent), #a855f7);
    border: none;
    padding: 16px;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-primary);
    padding-top: 120px;
}

.hero-bg {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.15);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
    min-width: 70px;
}

.countdown-item span:first-child {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
}

.countdown-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent), #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.primary-button {
    background: linear-gradient(135deg, var(--accent), #a855f7);
    border: none;
    padding: 20px 40px;
    border-radius: 16px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px var(--accent-glow);
}

.primary-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.secondary-button {
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 18px 36px;
    border-radius: 16px;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-text {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

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

.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 80px;
    color: var(--text-primary);
}

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

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

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 40px var(--accent-glow);
    background: var(--bg-card-hover);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

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

/* Results Section - Modern Cards */
.results {
    padding: 80px 0 120px;
    background: var(--bg-primary);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

.result-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), #a855f7);
}

.result-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
    border-color: var(--accent);
}

.result-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
    min-height: 58px;
    font-variant-numeric: tabular-nums;
}

.result-label {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 600;
    text-align: center;
    width: 100%;
}

/* Pricing - Premium Glass Design */
.pricing {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 60px var(--accent-glow);
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--glass-bg), rgba(99, 102, 241, 0.1));
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #a855f7);
    border-radius: 24px 24px 0 0;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-header h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.price {
    font-size: 48px;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 30px;
}

.price-old {
    font-size: 20px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price span {
    font-size: 18px;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-secondary);
}

.pricing-button {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-button.primary {
    background: var(--accent);
    border: none;
    color: white;
}

.pricing-button:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    color: var(--accent);
}

.pricing-button.primary:hover {
    background: var(--accent-hover);
    color: white;
    box-shadow: 0 8px 30px var(--accent-glow);
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--accent), #a855f7);
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.mega-cta-button {
    background: white;
    color: var(--accent);
    border: none;
    padding: 25px 50px;
    font-size: 24px;
    font-weight: 900;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.mega-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-guarantee {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

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

.footer-links {
    display: flex;
    gap: 30px;
}

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

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Partners Section - Clean Minimal */
.partners {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partners-label {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-item {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.partner-item:hover {
    opacity: 1;
}

.partner-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

/* Team Section - Dark Style */
.team-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.team-subtitle {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.team-member {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: var(--accent);
    background: var(--bg-card-hover);
}

.member-photo {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    flex: 1;
}

.member-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.member-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.member-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.member-tags .tag {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-role {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 4px;
}

.member-exp {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 2px;
}

/* Demo Section */
.demo {
    padding: 100px 0;
    background: var(--bg-primary);
}

.demo-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 60px;
    margin-top: -60px;
}

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

.demo-screen {
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.demo-header {
    background: #2d2d2d;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.demo-dots {
    display: flex;
    gap: 8px;
}

.demo-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.demo-dots .dot.red { background: #ff5f57; }
.demo-dots .dot.yellow { background: #febc2e; }
.demo-dots .dot.green { background: #28c840; }

.demo-title {
    color: #9ca3af;
    font-size: 13px;
    font-weight: 500;
}

.demo-content {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
    overflow: hidden;
}

/* Grid lines */
.demo-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Candlestick chart */
.candlestick-chart {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.candle {
    position: absolute;
    width: 12px;
    border-radius: 2px;
}

.candle.green {
    background: #00E676;
    box-shadow: 0 0 8px rgba(0, 230, 118, 0.5);
}

.candle.red {
    background: #FF5252;
    box-shadow: 0 0 8px rgba(255, 82, 82, 0.5);
}

.candle .wick {
    position: absolute;
    width: 2px;
    left: 50%;
    transform: translateX(-50%);
}

.candle.green .wick {
    background: #00E676;
    bottom: 100%;
}

.candle.red .wick {
    background: #FF5252;
    top: 100%;
}

.demo-signals {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.signal-badge {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: pulse-signal 2s infinite;
}

.signal-badge.buy .signal-arrow {
    color: #00E676;
    font-size: 24px;
    text-shadow: 0 0 10px #00E676;
}

.signal-badge.sell .signal-arrow {
    color: #FF5252;
    font-size: 24px;
    text-shadow: 0 0 10px #FF5252;
}

.signal-badge .signal-text {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    margin-top: 4px;
}

.signal-badge.buy .signal-text {
    border: 1px solid #00E676;
}

.signal-badge.sell .signal-text {
    border: 1px solid #FF5252;
}

@keyframes pulse-signal {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.demo-panel {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 12px 16px;
    min-width: 140px;
}

.panel-header {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #333;
}

.panel-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.panel-label {
    color: #9E9E9E;
    font-size: 12px;
}

.panel-value {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.panel-value.bullish { color: #00E676; }
.panel-value.buy { color: #00E676; }

.demo-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.demo-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.demo-feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.demo-feature h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.demo-feature p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}


/* Testimonials - Glass Cards */
.testimonials {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
    position: relative;
}

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

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.testimonial-stars {
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
}

.author-avatar.pink {
    background: linear-gradient(135deg, #ec4899, #f472b6);
}

.author-name {
    display: block;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 15px;
}

.author-info {
    display: block;
    color: var(--text-muted);
    font-size: 13px;
}


/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--bg-primary);
}

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-question span:first-child {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-icon {
    font-size: 24px;
    color: var(--accent);
    font-weight: 300;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}


/* Signup Form */
.signup-form {
    max-width: 600px;
    margin: 40px auto;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.form-input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.15);
}

.form-input option {
    background: #1a1a1a;
    color: white;
}

.signup-form .mega-cta-button {
    width: 100%;
    margin-top: 8px;
}

.form-success {
    background: rgba(0, 230, 118, 0.2);
    border: 1px solid #00E676;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    color: white;
}

.form-success h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        display: none;
    }
    
    .nav-logo {
        font-size: 20px;
    }
    
    .logo-icon {
        font-size: 28px;
    }
    
    /* Hero */
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 14px;
    }
    
    /* Countdown timer mobile */
    .countdown-timer {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .countdown-item {
        padding: 10px 12px;
        min-width: 55px;
    }
    
    .countdown-item span:first-child {
        font-size: 20px;
    }
    
    .countdown-label {
        font-size: 9px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .primary-button, .secondary-button {
        padding: 16px 24px;
        font-size: 16px;
    }
    
    /* Pricing sale badge mobile */
    .pricing-sale-badge {
        font-size: 13px;
        padding: 10px 20px;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-icon {
        font-size: 20px;
    }
    
    .stat-text {
        font-size: 10px;
    }
    
    /* Section titles */
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    /* Partners */
    .partners {
        padding: 40px 0;
    }
    
    .partners-logos {
        gap: 30px;
    }
    
    .partner-name {
        font-size: 16px;
    }
    
    /* Demo */
    .demo {
        padding: 60px 0;
    }
    
    .demo-subtitle {
        font-size: 14px;
        margin-top: -30px;
        margin-bottom: 30px;
    }
    
    .demo-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .demo-content {
        height: 250px;
    }
    
    .demo-panel {
        display: none;
    }
    
    .signal-badge .signal-text {
        font-size: 9px;
        padding: 3px 6px;
    }
    
    .demo-feature-icon {
        font-size: 24px;
    }
    
    .demo-feature h4 {
        font-size: 16px;
    }
    
    .demo-feature p {
        font-size: 13px;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    /* Features */
    .features {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px;
    }
    
    .feature-icon {
        font-size: 36px;
    }
    
    .feature-card h3 {
        font-size: 20px;
    }
    
    /* Results */
    .results {
        padding: 60px 0;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-items: center;
    }
    
    .result-card {
        padding: 24px 16px;
        width: 100%;
    }
    
    .result-number {
        font-size: 32px;
    }
    
    .result-label {
        font-size: 14px;
    }
    
    /* Pricing */
    .pricing {
        padding: 60px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card {
        padding: 30px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .price {
        font-size: 36px;
    }
    
    /* FAQ */
    .faq {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 18px;
    }
    
    .faq-question span:first-child {
        font-size: 15px;
    }
    
    .faq-answer p {
        padding: 0 18px 18px;
        font-size: 14px;
    }
    
    /* Team */
    .team-section {
        padding: 60px 0;
    }
    
    .team-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .team-header h2 {
        font-size: 32px;
    }
    
    .team-member {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .member-photo {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }
    
    .member-header {
        flex-direction: column;
        align-items: center;
    }
    
    .member-header h3 {
        font-size: 20px;
    }
    
    .member-tags {
        justify-content: center;
    }
    
    /* CTA */
    .cta {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .mega-cta-button {
        padding: 18px 30px;
        font-size: 16px;
    }
    
    .signup-form {
        margin: 30px auto;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-input {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

/* Small phones */
@media (max-width: 380px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .result-card {
        max-width: 100%;
    }
    
    .partner-name {
        font-size: 14px;
    }
    
    .partners-logos {
        gap: 20px;
    }
}


/* ========== SCROLL ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animations for grids */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }


.pricing-sale-badge {
    text-align: center;
    background: linear-gradient(135deg, var(--accent), #a855f7);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    margin: 0 auto 20px;
    display: block;
    width: fit-content;
}

.pricing-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 60px;
}


/* Telegram Login Button */
.telegram-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #29b6f6 !important;
}

.telegram-link:hover {
    color: #4fc3f7 !important;
}

.telegram-login-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    color: var(--text-muted);
}

.telegram-login-divider::before,
.telegram-login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.telegram-login-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #0088cc, #29b6f6);
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.3);
}

.telegram-login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 136, 204, 0.4);
}

.telegram-login-button i {
    font-size: 22px;
}


/* Logo Image - Premium Glow Effect */
.logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.6)) 
            drop-shadow(0 0 25px rgba(168, 85, 247, 0.4));
    animation: logo-glow 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.9)) 
            drop-shadow(0 0 40px rgba(168, 85, 247, 0.6));
    transform: scale(1.1);
}

@keyframes logo-glow {
    0%, 100% {
        filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.6)) 
                drop-shadow(0 0 25px rgba(168, 85, 247, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 18px rgba(99, 102, 241, 0.8)) 
                drop-shadow(0 0 35px rgba(168, 85, 247, 0.5));
    }
}

.nav-logo .logo-img {
    width: 32px;
    height: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-logo:hover .logo-text {
    background: linear-gradient(135deg, var(--accent), #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo .logo-img {
    width: 36px;
    height: 36px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.footer-logo:hover .logo-text {
    background: linear-gradient(135deg, var(--accent), #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0f 0%, #12121a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.loading-logo {
    font-size: 64px;
    margin-bottom: 20px;
    animation: pulse-glow 2s ease-in-out infinite;
}

.loading-text {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--accent), #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(99, 102, 241, 0.2);
    border-top: 3px solid var(--accent);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

.loading-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    opacity: 0.8;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.8));
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Founder Section */
.founder-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.founder-card {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 50px;
    transition: all 0.3s ease;
}

.founder-card:hover {
    border-color: var(--accent);
    background: var(--bg-card-hover);
    transform: translateY(-5px);
}

.founder-photo {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-info {
    flex: 1;
}

.founder-header {
    margin-bottom: 25px;
}

.founder-header h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.founder-role {
    font-size: 16px;
    color: var(--accent);
    font-weight: 600;
    margin-left: 10px;
}

.founder-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.founder-tags .tag {
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.founder-info h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.founder-bio {
    list-style: none;
    padding: 0;
}

.founder-bio li {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Mobile */
@media (max-width: 768px) {
    .founder-section {
        padding: 60px 0;
    }
    
    .founder-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .founder-photo {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
    
    .founder-header h3 {
        font-size: 24px;
    }
    
    .founder-bio li {
        font-size: 14px;
    }
}
/* Approach Section */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.approach-card {
    border-radius: 20px;
    padding: 40px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.approach-card.light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #212529;
}

.approach-card.dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d1117 100%);
    color: #ffffff;
}

.approach-header h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.approach-card.light h3 {
    color: #212529;
}

.approach-card.dark h3 {
    color: var(--accent);
}

.approach-header p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.8;
}

.approach-image {
    margin-top: 30px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Math Formulas */
.math-formulas {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.math-formulas span {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 8px 16px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
}

/* AI Brain */
.neural-network {
    position: relative;
    width: 150px;
    height: 80px;
}

.node {
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    animation: pulse-node 2s ease-in-out infinite;
}

.node:nth-child(1) {
    top: 0;
    left: 20px;
    animation-delay: 0s;
}

.node:nth-child(2) {
    top: 30px;
    left: 0;
    animation-delay: 0.3s;
}

.node:nth-child(3) {
    top: 60px;
    left: 20px;
    animation-delay: 0.6s;
}

.connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    animation: data-flow 2s ease-in-out infinite;
}

.connection:nth-child(4) {
    top: 10px;
    left: 40px;
    width: 60px;
    transform: rotate(15deg);
}

.connection:nth-child(5) {
    top: 40px;
    left: 40px;
    width: 60px;
    transform: rotate(-15deg);
}

@keyframes pulse-node {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px var(--accent);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 20px var(--accent);
    }
}

@keyframes data-flow {
    0% {
        opacity: 0;
        transform: translateX(-20px) rotate(15deg);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(20px) rotate(15deg);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .approach-card {
        padding: 30px 20px;
        min-height: 250px;
    }
    
    .approach-header h3 {
        font-size: 24px;
    }
    
    .approach-header p {
        font-size: 14px;
    }
}
/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(249, 115, 22, 0.15));
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 16px;
    padding: 25px 30px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    animation: urgency-pulse 2s ease-in-out infinite;
}

@keyframes urgency-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(239, 68, 68, 0.4);
    }
}

.urgency-timer {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.urgency-icon {
    font-size: 28px;
    animation: shake 0.5s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.urgency-text {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 16px;
}

.urgency-countdown {
    display: flex;
    align-items: center;
    gap: 5px;
}

.urgency-time-block {
    background: rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    min-width: 50px;
}

.urgency-time-block span:first-child {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #ef4444;
    font-variant-numeric: tabular-nums;
}

.urgency-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.urgency-separator {
    font-size: 24px;
    font-weight: 800;
    color: #ef4444;
}

.urgency-spots {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-size: 15px;
}

.spots-pulse {
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    animation: spots-blink 1s ease-in-out infinite;
}

@keyframes spots-blink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.urgency-spots strong {
    color: #ef4444;
    font-size: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .urgency-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .urgency-timer {
        justify-content: center;
    }
    
    .urgency-text {
        font-size: 14px;
    }
    
    .urgency-time-block span:first-child {
        font-size: 20px;
    }
}
/* Sticky CTA for Mobile */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 15px 20px;
    z-index: 999;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.sticky-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
}

.sticky-cta-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sticky-price {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 700;
}

.sticky-price s {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 14px;
}

.sticky-discount {
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.sticky-cta-button {
    background: linear-gradient(135deg, var(--accent), #a855f7);
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    color: white;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 20px var(--accent-glow);
    transition: all 0.3s ease;
}

.sticky-cta-button:active {
    transform: scale(0.98);
}

/* Show only on mobile */
@media (max-width: 768px) {
    .sticky-cta {
        display: block;
    }
    
    /* Add padding to body so content isn't hidden behind sticky */
    body {
        padding-bottom: 80px;
    }
}

/* How to Earn Section */
.how-to-earn {
    padding: 120px 0;
    background: var(--bg-primary);
}

.how-to-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    margin-top: -60px;
    margin-bottom: 60px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.step-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #a855f7);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

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

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent), #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.step-icon {
    font-size: 48px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Connector lines between steps */
.steps-grid::after {
    display: none;
}

/* Tips Card */
.how-to-tips {
    max-width: 700px;
    margin: 0 auto 0;
}

.how-to-earn {
    padding-bottom: 60px;
}

.tip-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 16px;
    padding: 25px 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.tip-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.tip-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.tip-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .how-to-earn {
        padding: 60px 0;
    }
    
    .how-to-subtitle {
        font-size: 14px;
        margin-top: -40px;
        margin-bottom: 40px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    .step-icon {
        font-size: 40px;
    }
    
    .step-card h3 {
        font-size: 18px;
    }
    
    .tip-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .tip-content h4 {
        font-size: 16px;
    }
    
    .tip-content p {
        font-size: 14px;
    }
}

/* Where to Trade Section */
.where-to-trade {
    margin-top: 60px;
    margin-bottom: 40px;
}

.where-to-trade h3 {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.where-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 40px;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.platform-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.platform-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.15);
}

.platform-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), #a855f7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.platform-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.platform-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.platform-link {
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: var(--accent);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.platform-link:hover {
    background: var(--accent);
    color: white;
}

.platform-note {
    font-size: 12px;
    color: var(--text-muted);
}

/* Mobile */
@media (max-width: 900px) {
    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .where-to-trade h3 {
        font-size: 22px;
    }
    
    .where-subtitle {
        font-size: 14px;
    }
    
    .platform-card {
        padding: 20px;
    }
}

/* Workflow Diagram */
.workflow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 60px auto;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    max-width: 900px;
    flex-wrap: wrap;
}

.workflow-step {
    flex-shrink: 0;
}

.workflow-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 25px 30px;
    border-radius: 16px;
    min-width: 140px;
    transition: all 0.3s ease;
}

.workflow-box:hover {
    transform: translateY(-5px);
}

.workflow-box.tradingview {
    background: linear-gradient(135deg, #1e3a5f, #2563eb);
    border: 2px solid #3b82f6;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.workflow-box.exchange {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border: 2px solid var(--accent);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.workflow-box.profit {
    background: linear-gradient(135deg, #065f46, #10b981);
    border: 2px solid #10b981;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.workflow-icon {
    font-size: 36px;
}

.workflow-label {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.workflow-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.workflow-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--accent);
}

.workflow-arrow span:first-child {
    font-size: 32px;
    font-weight: 300;
    animation: arrow-pulse 1.5s ease-in-out infinite;
}

.arrow-label {
    font-size: 12px;
    font-weight: 700;
    background: var(--accent);
    color: white;
    padding: 3px 10px;
    border-radius: 10px;
}

@keyframes arrow-pulse {
    0%, 100% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(5px);
        opacity: 0.7;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .workflow-diagram {
        flex-direction: column;
        gap: 20px;
        padding: 30px 15px;
    }
    
    .workflow-arrow {
        transform: rotate(90deg);
    }
    
    .workflow-arrow span:first-child {
        animation: arrow-pulse-vertical 1.5s ease-in-out infinite;
    }
    
    @keyframes arrow-pulse-vertical {
        0%, 100% {
            transform: translateY(0);
            opacity: 1;
        }
        50% {
            transform: translateY(5px);
            opacity: 0.7;
        }
    }
    
    .workflow-box {
        min-width: 200px;
        padding: 20px 25px;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .promo-bar {
        padding: 8px 15px;
        gap: 10px;
    }
    
    .promo-text {
        font-size: 12px;
    }
    
    .promo-link {
        font-size: 12px;
        padding: 4px 12px;
    }
    
    .navbar {
        top: 36px;
        padding: 12px 0;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding-top: 140px;
    }
}
