/* ========== ROOT VARIABLES ========== */
:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #111111;
    --bg-card: rgba(15, 15, 15, 0.9);

    --neon-gold: #f59e0b;
    --neon-amber: #d97706;
    --neon-yellow: #fbbf24;
    --neon-orange: #ea580c;
    --neon-green: #10b981;
    --neon-emerald: #059669;
    --neon-cyan: #06b6d4;
    --neon-blue: #3b82f6;
    --neon-purple: #8b5cf6;
    --neon-pink: #ec4899;
    --neon-red: #ef4444;

    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-green: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-cyan: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);

    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;

    --glow-gold: 0 0 30px rgba(245, 158, 11, 0.4);
    --glow-green: 0 0 30px rgba(16, 185, 129, 0.4);
    --glow-cyan: 0 0 30px rgba(6, 182, 212, 0.4);

    --border-gold: rgba(245, 158, 11, 0.2);
    --border-green: rgba(16, 185, 129, 0.2);
    --border-cyan: rgba(6, 182, 212, 0.2);

    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
}

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

html {
    overflow-x: hidden;
}

.container {
    max-width: 1260px !important;
}


/* Specific fixes for elements that might overflow */
.testimonial-card {
    max-width: 400px;
}

.ai-dashboard-card {
    max-width: 100%;
}

/* Ensure floating elements don't cause overflow */
.floating-badge {
    max-width: calc(100vw - 40px);
}

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

/* ========== ANIMATED BACKGROUND ========== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(245, 158, 11, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 158, 11, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(25px, 25px);
    }
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatUp 20s linear infinite;
}

.floating-particles .particle:nth-child(3n) {
    background: var(--neon-green);
}

.floating-particles .particle:nth-child(5n) {
    background: var(--neon-cyan);
}

.floating-particles .particle:nth-child(7n) {
    background: var(--neon-purple);
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.glow-orbs .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: orbFloat 15s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation-delay: 5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(15px, -15px) scale(1.05);
    }

    50% {
        transform: translate(-10px, 10px) scale(0.95);
    }

    75% {
        transform: translate(10px, 15px) scale(1.02);
    }
}

/* ========== LIVE TICKER ========== */
.live-ticker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid var(--border-gold);
    z-index: 1001;
    overflow: hidden;
    height: 40px;
}

.ticker-content {
    display: flex;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-symbol {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.85rem;
}

.ticker-price {
    font-weight: 500;
    font-size: 0.85rem;
}

.ticker-price.up {
    color: var(--neon-green);
}

.ticker-price.down {
    color: var(--neon-red);
}

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

.ticker-change.up {
    color: var(--neon-green);
}

.ticker-change.down {
    color: var(--neon-red);
}

/* ========== NAVBAR ========== */
.navbar-landing {
    background: transparent;
    padding: 20px 0;
    transition: all 0.4s ease;
    z-index: 1000;
    margin-top: 40px;
}

.navbar-landing.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    margin-top: 35px;
    border-bottom: 1px solid var(--border-gold);
}

.navbar-landing .navbar-brand img {
    height: 65px;
    scale: 1.7;
}

.navbar-landing .nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 10px 18px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.navbar-landing .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-landing .nav-link:hover::after,
.navbar-landing .nav-link.active::after {
    width: 60%;
}

.navbar-landing .nav-link:hover,
.navbar-landing .nav-link.active {
    color: var(--neon-gold) !important;
}

.navbar-landing .navbar-toggler {
    border: 1px solid var(--border-gold);
    padding: 8px 12px;
    background: rgba(245, 158, 11, 0.1);
}

.navbar-landing .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23f59e0b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Nav Auth Buttons */
.nav-auth-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-login {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-login::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-login:hover {
    color: #000;
    border-color: var(--neon-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.btn-login:hover::before {
    opacity: 1;
}

.btn-register {
    background: var(--gradient-gold);
    color: #000;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-register::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: btnShine 2.5s ease-in-out infinite;
}

@keyframes btnShine {
    0% {
        left: -100%;
    }

    60%,
    100% {
        left: 100%;
    }
}

.btn-register:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
    color: #000;
}

.btn-register i {
    transition: transform 0.3s ease;
}

.btn-register:hover i {
    transform: translateX(4px);
}

/* ========== BUTTONS ========== */
.btn-gradient {
    background: var(--gradient-gold);
    border: none;
    color: #000;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
}

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

.btn-gradient:hover::before {
    left: 100%;
}

.btn-gradient:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 50px rgba(245, 158, 11, 0.5);
    color: #000;
}

.btn-glow {
    animation: btnGlow 2s ease-in-out infinite;
}

@keyframes btnGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(245, 158, 11, 0.6), 0 0 60px rgba(245, 158, 11, 0.3);
    }
}

.btn-outline-gold {
    background: transparent;
    color: var(--neon-gold);
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    border: 2px solid var(--neon-gold);
    transition: all 0.4s ease;
}

.btn-outline-gold:hover {
    background: var(--gradient-gold);
    color: #000;
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.4);
}

.btn-lg {
    padding: 18px 48px;
    font-size: 1.1rem;
}

/* ========== HERO SECTION ========== */
.hero-section {
    min-height: 100vh;
    padding-top: 180px;
    position: relative;
}

/* Mobile hero section spacing adjustments */
@media (max-width: 767px) {
    .hero-section {
        padding-top: 120px;
        min-height: auto;
    }
}

.hero-content {
    padding: 40px 0;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--border-gold);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    position: relative;
}

.ai-badge-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.ai-badge span {
    color: var(--neon-gold);
    font-weight: 500;
    font-size: 0.9rem;
}

.badge-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 1px solid var(--neon-gold);
    padding: 4px;
    border-radius: 50px;
    animation: badgePulse 2s ease-out infinite;
}

@keyframes badgePulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Trust Section */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust-avatars {
    display: flex;
    align-items: center;
}

.trust-avatars img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid var(--bg-primary);
    margin-left: -12px;
    object-fit: cover;
}

.trust-avatars img:first-child {
    margin-left: 0;
}

.more-users {
    width: 44px;
    height: 44px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #000;
    margin-left: -12px;
}

.trust-rating {
    color: var(--neon-gold);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.trust-rating span {
    color: var(--text-primary);
    margin-left: 6px;
    font-weight: 600;
}

.trust-text p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* ========== AI DASHBOARD CARD ========== */
.ai-dashboard-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    box-shadow: var(--glow-gold), 0 30px 60px rgba(0, 0, 0, 0.5);
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-status {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ai-brain {
    width: 48px;
    height: 48px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #000;
    position: relative;
}

.brain-pulse {
    position: absolute;
    inset: -4px;
    border: 2px solid var(--neon-gold);
    border-radius: 14px;
    animation: brainPulse 1.5s ease-out infinite;
}

@keyframes brainPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.status-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.status-value {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 500;
}

.status-value.active {
    color: var(--neon-green);
}

.status-value .dot {
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--neon-red);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-red);
    border-radius: 50%;
    animation: livePulse 1s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5);
    }

    50% {
        transform: scale(1.2);
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    }
}

/* Live Chart */
.live-chart {
    margin: 20px 0;
    position: relative;
}

.chart-svg {
    width: 100%;
    height: 120px;
}

.chart-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s ease-out forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.chart-dot {
    animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        r: 6;
    }

    50% {
        r: 10;
    }
}

.chart-price {
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: right;
}

.price-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.price-change {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.price-change.up {
    color: var(--neon-green);
}

.price-change.down {
    color: var(--neon-red);
}

/* AI Signals */
.ai-signals {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.signal-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 12px;
    animation: signalSlide 0.5s ease-out;
}

@keyframes signalSlide {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.signal-item.buy .signal-icon {
    color: var(--neon-green);
}

.signal-item.sell .signal-icon {
    color: var(--neon-red);
}

.signal-icon {
    font-size: 1.5rem;
}

.signal-info {
    flex: 1;
}

.signal-pair {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
}

.signal-action {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.signal-confidence {
    display: flex;
    align-items: center;
    gap: 8px;
}

.confidence-bar {
    width: 60px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.confidence-fill {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 3px;
    animation: fillBar 1s ease-out;
}

@keyframes fillBar {
    from {
        width: 0;
    }
}

.signal-confidence span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--neon-gold);
}

/* Dashboard Stats */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.stat-box {
    background: rgba(245, 158, 11, 0.05);
    border-radius: var(--radius-sm);
    padding: 14px;
    text-align: center;
}

.stat-box .stat-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.stat-box .stat-value {
    font-size: 1rem;
    font-weight: 700;
}

.stat-box .stat-value.up {
    color: var(--neon-green);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid var(--border-gold);
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--glow-gold);
    animation: floatBadge 4s ease-in-out infinite;
}

.floating-badge i {
    color: var(--neon-gold);
}

.badge-1 {
    top: -20px;
    right: 20px;
}

.badge-2 {
    bottom: -20px;
    left: 20px;
    animation-delay: 2s;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ========== LIVE STATS BAR ========== */
.live-stats-bar {
    padding: 40px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mobile section spacing adjustments */
@media (max-width: 767px) {
    .live-stats-bar {
        padding: 30px 0;
    }
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    transition: all 0.2s ease;
    height: 100%;
}

.stat-item:hover {
    border-color: var(--border-gold);
    transform: translateY(-5px);
    box-shadow: var(--glow-gold);
}

.stat-item .stat-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--neon-gold);
    transition: all 0.2s ease;
}

.stat-item:hover .stat-icon {
    background: var(--gradient-gold);
    color: #000;
    transform: scale(1.1);
}

.stat-content {
    flex: 1;
}

.stat-content .stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-content .stat-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ========== FEATURES SECTION ========== */
.features-section {
    padding: 70px 0;
    background: var(--bg-secondary);
}

/* Mobile section spacing adjustments */
@media (max-width: 767px) {
    .features-section {
        padding: 40px 0;
    }
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--border-gold);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--neon-gold);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.75rem, 1.4968rem + 1.2658vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-secondary);
    max-width: 550px;
    font-size:  clamp(0.875rem, 0.8497rem + 0.1266vw, 1rem);
    line-height: 1.7;
}

.section-header {
    margin-bottom: 40px;
}

.section-header.text-center .section-subtitle {
    margin: 0 auto;
}

/* Feature Cards */
.feature-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 32px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-glow {
    opacity: 1;
}

.feature-card:hover {
    border-color: var(--neon-gold);
    transform: translateY(-10px);
    box-shadow: var(--glow-gold), 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon-wrap {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
}

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.1) 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--neon-gold);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.icon-ring {
    position: absolute;
    inset: -5px;
    border: 1px solid var(--neon-gold);
    border-radius: 14px;
    opacity: 0;
    transition: all 0.4s ease;
}

.feature-card:hover .icon-ring {
    opacity: 1;
    animation: ringPulse 1.5s ease-out infinite;
}

@keyframes ringPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.feature-card:hover .feature-icon {
    background: var(--gradient-gold);
    color: #000;
    transform: scale(1.1);
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.feature-stats {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--neon-gold);
    font-size: 0.85rem;
    font-weight: 500;
}

.feature-stats i {
    font-size: 1rem;
}

/* Feature Card Variants */
.feature-card.green {
    border-color: var(--border-green);
}

.feature-card.green .feature-icon {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--border-green);
    color: var(--neon-green);
}

.feature-card.green .feature-glow {
    background: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
}

.feature-card.green:hover {
    border-color: var(--neon-green);
    box-shadow: var(--glow-green), 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card.green:hover .feature-icon {
    background: var(--gradient-green);
    color: #fff;
}

.feature-card.green .icon-ring {
    border-color: var(--neon-green);
}

.feature-card.green .feature-stats {
    color: var(--neon-green);
}

.feature-card.cyan {
    border-color: var(--border-cyan);
}

.feature-card.cyan .feature-icon {
    background: rgba(6, 182, 212, 0.1);
    border-color: var(--border-cyan);
    color: var(--neon-cyan);
}

.feature-card.cyan .feature-glow {
    background: radial-gradient(circle at 50% 0%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
}

.feature-card.cyan:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan), 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card.cyan:hover .feature-icon {
    background: var(--gradient-cyan);
    color: #fff;
}

.feature-card.cyan .icon-ring {
    border-color: var(--neon-cyan);
}

.feature-card.cyan .feature-stats {
    color: var(--neon-cyan);
}

.feature-card.purple {
    border-color: rgba(139, 92, 246, 0.2);
}

.feature-card.purple .feature-icon {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
    color: var(--neon-purple);
}

.feature-card.purple .feature-glow {
    background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.feature-card.purple:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4), 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card.purple:hover .feature-icon {
    background: var(--gradient-purple);
    color: #fff;
}

.feature-card.purple .icon-ring {
    border-color: var(--neon-purple);
}

.feature-card.purple .feature-stats {
    color: var(--neon-purple);
}

/* ========== AI SHOWCASE SECTION ========== */
.ai-showcase-section {
    padding: 70px 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

/* Mobile section spacing adjustments */
@media (max-width: 767px) {
    .ai-showcase-section {
        padding: 40px 0;
    }
}

.ai-features-list {
    margin-top: 30px;
}

.ai-feature-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.ai-feature-item:hover {
    border-color: var(--border-gold);
    background: rgba(245, 158, 11, 0.05);
}

.feature-check {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-check.green {
    background: var(--gradient-green);
    color: #fff;
}

.feature-check.cyan {
    background: var(--gradient-cyan);
    color: #fff;
}

.ai-feature-item h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.ai-feature-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* AI Terminal */
.ai-terminal {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.95) 0%, rgba(5, 5, 5, 0.98) 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--glow-gold), 0 30px 60px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.terminal-dots .dot.red {
    background: #ef4444;
}

.terminal-dots .dot.yellow {
    background: #f59e0b;
}

.terminal-dots .dot.green {
    background: #10b981;
}

.terminal-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.terminal-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--neon-green);
}

.terminal-status .status-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

.terminal-body {
    padding: 20px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.85rem;
    min-height: 300px;
}

.terminal-line {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.terminal-line.visible {
    opacity: 1;
    transform: translateY(0);
}

.line-time {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.line-type {
    font-weight: 600;
    font-size: 0.75rem;
}

.line-type.info {
    color: var(--neon-cyan);
}

.line-type.scan {
    color: var(--neon-purple);
}

.line-type.signal {
    color: var(--neon-gold);
}

.line-type.trade {
    color: var(--neon-blue);
}

.line-type.success {
    color: var(--neon-green);
}

.line-type.profit {
    color: var(--neon-green);
}

.line-text {
    color: var(--text-secondary);
}

.terminal-cursor {
    display: inline-block;
    color: var(--neon-gold);
    animation: cursorBlink 1s step-end infinite;
}

@keyframes cursorBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* ========== HOW IT WORKS ========== */
.how-it-works-section {
    padding: 70px 0;
    background: var(--bg-secondary);
}

/* Mobile section spacing adjustments */
@media (max-width: 767px) {
    .how-it-works-section {
        padding: 40px 0;
    }
}

.steps-container {
    position: relative;
}

.steps-line {
    position: absolute;
    top: 80px;
    left: 16.66%;
    width: 66.66%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-gold), var(--neon-green), var(--neon-cyan));
    opacity: 0.3;
}

.step-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 40px 28px 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-card:hover {
    border-color: var(--neon-gold);
    transform: translateY(-8px);
    box-shadow: var(--glow-gold);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    box-shadow: var(--glow-gold);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--neon-gold);
    margin: 15px 0 20px;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: var(--gradient-gold);
    color: #fff;
    transform: scale(1.1);
}

.step-icon.gold {
    background: rgba(245, 158, 11, 0.1);
    border-color: var(--border-gold);
    color: var(--neon-gold);
}

.step-icon.green {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--border-green);
    color: var(--neon-green);
}

.step-icon.cyan {
    background: rgba(6, 182, 212, 0.1);
    border-color: var(--border-cyan);
    color: var(--neon-cyan);
}

.step-card:hover .step-icon.gold {
    background: var(--gradient-gold);
    color: #fff;
}

.step-card:hover .step-icon.green {
    background: var(--gradient-green);
    color: #fff;
}

.step-card:hover .step-icon.cyan {
    background: var(--gradient-cyan);
    color: #fff;
}

.step-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
}

.step-arrow {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-gold);
    z-index: 10;
    font-size: 0.9rem;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    padding: 70px 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    overflow: hidden;
}

/* Mobile section spacing adjustments */
@media (max-width: 767px) {
    .testimonials-section {
        padding: 40px 0;
    }
}

/* Testimonials Slider */
.testimonials-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    width: calc(400px * 6 + 24px * 5);
    /* Fixed width instead of max-content */
    animation: testimonialSlide 25s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes testimonialSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 28px;
    width: 400px;
    min-width: 400px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--neon-gold);
    box-shadow: var(--glow-gold);
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.testimonial-header img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--neon-gold);
}

.testimonial-header h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-header span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.profit-badge {
    margin-left: auto;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--border-gold);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--neon-gold);
}

.profit-badge.green {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--border-green);
    color: var(--neon-green);
}

.profit-badge.cyan {
    background: rgba(6, 182, 212, 0.1);
    border-color: var(--border-cyan);
    color: var(--neon-cyan);
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rating {
    color: var(--neon-gold);
    font-size: 0.9rem;
}

.verified {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--neon-green);
}

/* Removed carousel controls - using auto-slide now */

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 80px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

/* Mobile section spacing adjustments */
@media (max-width: 767px) {
    .cta-section {
        padding: 40px 0;
    }
}

.cta-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-orb.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation: orbFloat 15s ease-in-out infinite;
}

.cta-orb.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
    animation: orbFloat 15s ease-in-out infinite reverse;
}

.cta-orb.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat 12s ease-in-out infinite;
    animation-delay: 3s;
}

.cta-card {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.95) 0%, rgba(5, 5, 5, 0.98) 100%);
    border-radius: var(--radius-xl);
    padding: 60px 50px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Animated gradient border */
.cta-glow-border {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(90deg, var(--neon-gold), var(--neon-green), var(--neon-cyan), var(--neon-gold));
    background-size: 300% 100%;
    animation: borderGlow 4s linear infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

.cta-content {
    position: relative;
    z-index: 2;
}

/* Icon with rings */
.cta-icon-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 40px;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #000;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.5);
}

.cta-icon-ring {
    position: absolute;
    inset: -10px;
    border: 2px solid var(--neon-gold);
    border-radius: 50%;
    opacity: 0.5;
    animation: ctaRingPulse 2s ease-out infinite;
}

.cta-icon-ring.ring-2 {
    inset: -20px;
    animation-delay: 0.5s;
    opacity: 0.3;
}

@keyframes ctaRingPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta-subtitle {
    color: var(--text-secondary);
    font-size:clamp(0.875rem, 0.8497rem + 0.1266vw, 1rem);
    max-width: 480px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.cta-feature-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-green);
    animation: dotGlow 1.5s ease-in-out infinite;
}

.cta-feature:nth-child(2) .cta-feature-dot {
    animation-delay: 0.3s;
}

.cta-feature:nth-child(3) .cta-feature-dot {
    animation-delay: 0.6s;
}

@keyframes dotGlow {

    0%,
    100% {
        box-shadow: 0 0 5px var(--neon-green);
    }

    50% {
        box-shadow: 0 0 15px var(--neon-green), 0 0 25px var(--neon-green);
    }
}

/* Premium CTA Button */
.btn-cta-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 18px 48px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-cta-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-gold);
    transition: all 0.4s ease;
}

.btn-cta-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: btnShine 2.5s ease-in-out infinite;
}

.btn-cta-content {
    position: relative;
    z-index: 2;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-cta-premium:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.5), 0 0 30px rgba(245, 158, 11, 0.3);
}

.btn-cta-premium:hover .btn-cta-content {
    color: #000;
}

.btn-cta-premium:hover .btn-cta-content i {
    animation: rocketShake 0.5s ease-in-out;
}

@keyframes rocketShake {

    0%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-3px) rotate(-5deg);
    }

    75% {
        transform: translateY(-3px) rotate(5deg);
    }
}

.cta-trust-text {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.cta-trust-text i {
    color: var(--neon-green);
}

/* Floating particles */
.cta-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--neon-gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: ctaParticleFloat 8s ease-in-out infinite;
}

.cta-particle.p1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.cta-particle.p2 {
    top: 30%;
    right: 15%;
    background: var(--neon-green);
    animation-delay: 2s;
}

.cta-particle.p3 {
    bottom: 25%;
    left: 15%;
    background: var(--neon-cyan);
    animation-delay: 4s;
}

.cta-particle.p4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 6s;
}

@keyframes ctaParticleFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }

    25% {
        transform: translateY(-8px) translateX(4px);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-4px) translateX(-4px);
        opacity: 0.4;
    }

    75% {
        transform: translateY(-10px) translateX(2px);
        opacity: 0.7;
    }
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, #030303 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--neon-gold) 20%, var(--neon-green) 50%, var(--neon-cyan) 80%, transparent 100%);
}

.footer-top {
    padding: 80px 0 60px;
    position: relative;
    z-index: 1;
}

.footer-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
    bottom: -250px;
    left: -150px;
    pointer-events: none;
}

.footer-glow-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.04) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.footer-brand {
    margin-bottom: 24px;
}

.footer-brand img {
    height: 70px;
    filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.3));
    transition: all 0.4s ease;
    scale: 1.9;
    padding-left: 10px;
}

.footer-brand img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.5));
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 320px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--neon-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

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

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--neon-gold);
}

.footer-links a:hover::before {
    opacity: 1;
    left: -18px;
}

.footer-links a:hover {
    color: var(--neon-gold);
    padding-left: 6px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 46px;
    height: 46px;
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.social-icons a:hover {
    background: var(--gradient-gold);
    color: #000;
    transform: translateY(-5px);
    box-shadow: var(--glow-gold);
}

.social-icons a:nth-child(2):hover {
    background: var(--gradient-cyan);
    box-shadow: var(--glow-cyan);
}

.social-icons a:nth-child(3):hover {
    background: var(--gradient-purple);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}

.social-icons a:nth-child(4):hover {
    background: var(--gradient-green);
    box-shadow: var(--glow-green);
}

/* Newsletter */
.footer-newsletter-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 5px;
    transition: all 0.3s ease;
}

.newsletter-form:focus-within {
    border-color: var(--neon-gold);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form button {
    background: var(--gradient-gold);
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px 24px;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-gold);
}

/* Payment Icons */
.footer-payment {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-payment span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.payment-icons {
    display: flex;
    gap: 10px;
}

.payment-icons i {
    font-size: 1.8rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: var(--neon-gold);
    transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px 0;
    background: rgba(0, 0, 0, 0.3);
}

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

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
    flex-shrink: 0;
}

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

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-bottom-links a:hover {
    color: var(--neon-gold);
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* ========== ANIMATIONS ========== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.animate-on-scroll:nth-child(1) {
    transition-delay: 0.1s;
}

.animate-on-scroll:nth-child(2) {
    transition-delay: 0.2s;
}

.animate-on-scroll:nth-child(3) {
    transition-delay: 0.3s;
}

.animate-on-scroll:nth-child(4) {
    transition-delay: 0.4s;
}

.animate-on-scroll:nth-child(5) {
    transition-delay: 0.5s;
}

.animate-on-scroll:nth-child(6) {
    transition-delay: 0.6s;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* Reduce animations on mobile for better performance */
@media (max-width: 767px) {

    .orb-1,
    .orb-2,
    .orb-3 {
        animation: none;
    }

    .grid-lines {
        animation: none;
    }

    .floating-particles .particle {
        animation-duration: 30s;
    }

    .cta-particle {
        animation: none;
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1199px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .navbar-landing {
        margin-top: 40px;
    }

    .navbar-landing .navbar-collapse {
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: clamp(1rem, 0.8987rem + 0.5063vw, 1.5rem);
        border-radius: var(--radius);
        margin-top: 15px;
        border: 1px solid var(--border-gold);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }

    .navbar-landing .navbar-nav {
        gap: 0 !important;
    }


    .navbar-landing .nav-link:hover {
        background: rgba(245, 158, 11, 0.1);
    }

    .navbar-landing .nav-link::after {
        display: none;
    }

    .nav-auth-buttons {
        gap: 12px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-login,
.btn-register {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 28px;
}

.hero-section {
    padding-top: 150px;
}

.hero-visual {
    margin-top: 50px;
}

.stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.steps-line {
    display: none;
}

.step-arrow {
    display: none;
}

.step-card {
    margin-bottom: 40px;
}

.testimonials-grid {
    grid-template-columns: 1fr;
}

.footer-bottom-content {
    flex-direction: column;
    text-align: center;
}

.hero-content {
    padding: 40px 12px;
}
}

@media (max-width: 767px) {
    .live-ticker {
        height: 36px;
    }

    .ticker-item {
        padding: 8px 20px;
    }

    .ticker-symbol,
    .ticker-price {
        font-size: 0.75rem;
    }

    .navbar-landing .navbar-brand img {
        height: 55px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-gradient,
    .hero-buttons .btn-outline-gold {
        width: 100%;
        justify-content: center;
    }

    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .ai-dashboard-card {
        padding: 20px;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 16px;
    }

    .feature-card {
        padding: 24px;
    }

    .ai-terminal {
        margin-top: 40px;
    }

    .terminal-body {
        padding: 16px;
        min-height: 250px;
    }

    .terminal-line {
        flex-wrap: wrap;
        gap: 6px;
    }

    .cta-card {
        padding: 50px 24px;
    }

    .cta-icon-wrap {
        width: 80px;
        height: 80px;
    }

    .cta-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .cta-features {
        gap: 16px;
    }

    .cta-feature {
        font-size: 0.85rem;
    }

    .btn-cta-premium {
        padding: 16px 36px;
        font-size: 1rem;
    }

    .cta-particle {
        display: none;
    }

    .footer-top {
        padding: 60px 0 40px;
    }

    .footer-brand img {
        height: 60px;
    }

    .newsletter-form {
        flex-direction: row;
    }

    .newsletter-form input {
        min-width: 0;
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .newsletter-form button {
        width: auto;
        padding: 12px 18px;
    }

    .footer-payment {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-bottom-links {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Additional mobile spacing improvements */
    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .hero-content {
        padding: 20px 0 40px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    /* Reduce gaps between sections */
    section {
        margin-bottom: 0;
    }
}

@media (max-width: 575px) {
    .navbar-landing .navbar-brand img {
        height: 50px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .ai-badge {
        padding: 8px 14px;
    }

    .ai-badge span {
        font-size: 0.8rem;
    }

    .trust-avatars img {
        width: 38px;
        height: 38px;
    }

    .more-users {
        width: 38px;
        height: 38px;
        font-size: 0.7rem;
    }

    .floating-badge {
        display: none;
    }

    .stat-item .stat-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .stat-content .stat-number {
        font-size: 1.5rem;
    }

    .feature-icon-wrap {
        width: 60px;
        height: 60px;
    }

    .feature-card .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-header img {
        width: 48px;
        height: 48px;
    }

    .profit-badge {
        padding: 4px 10px;
        font-size: 0.75rem;
    }

    .cta-icon-wrap {
        width: 70px;
        height: 70px;
    }

    .cta-icon {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }

    .cta-icon-ring {
        inset: -8px;
    }

    .cta-icon-ring.ring-2 {
        inset: -16px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 12px;
    }

    .btn-cta-premium {
        padding: 14px 28px;
        font-size: 0.95rem;
        width: 100%;
    }

    .social-icons a {
        width: 42px;
        height: 42px;
    }
}


/* Stat Icon Color Variants */
.stat-item .stat-icon.green {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--border-green);
    color: var(--neon-green);
}

.stat-item:hover .stat-icon.green {
    background: var(--gradient-green);
    color: #fff;
}

.stat-item .stat-icon.cyan {
    background: rgba(6, 182, 212, 0.1);
    border-color: var(--border-cyan);
    color: var(--neon-cyan);
}

.stat-item:hover .stat-icon.cyan {
    background: var(--gradient-cyan);
    color: #fff;
}

.stat-item .stat-icon.purple {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
    color: var(--neon-purple);
}

.stat-item:hover .stat-icon.purple {
    background: var(--gradient-purple);
    color: #fff;
}

@media (max-width: 1260px) {
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Ensure testimonials don't overflow on smaller screens */
    .testimonials-track {
        width: calc(350px * 6 + 20px * 5);
    }

    .testimonial-card {
        width: 350px;
        min-width: 350px;
    }
}

@media (max-width: 991px) {

    /* Fix testimonials for tablet */
    .testimonials-track {
        width: calc(320px * 6 + 16px * 5);
    }

    .testimonial-card {
        width: 320px;
        min-width: 320px;
    }
}

@media (max-width: 767px) {

    /* Fix testimonials for mobile */
    .testimonials-track {
        width: calc(280px * 6 + 12px * 5);
    }

    .testimonial-card {
        width: 280px;
        min-width: 280px;
        padding: 20px;
    }
}