/* ============================================
   ALPHAREXX - Professional Trading Platform
   Modern, Aesthetic, Expensive Design
   ============================================ */

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

:root {
    --cyan-primary: #00d4ff;
    --cyan-secondary: #00ffff;
    --dark-bg: #0a0e27;
    --dark-bg-alt: #000000;
    --dark-bg-gradient: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    --green-live: #00ff00;
    --white: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --container-max: 1280px;
    --section-padding: 80px 20px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    --font-size-7xl: 4.5rem;
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: var(--font-size-xl);
    transition: var(--transition-base);
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 500;
    transition: var(--transition-base);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--cyan-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--cyan-primary);
}

.btn-primary-small {
    padding: 10px 24px;
    background: var(--cyan-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: var(--font-size-sm);
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
}

.btn-primary-small:hover {
    background: var(--cyan-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-base);
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   Professional Hero Section with Bull
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    /* Use dvh for mobile browsers if supported */
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.4) 0%, rgba(10, 14, 39, 0.6) 50%, rgba(10, 14, 39, 0.85) 100%);
    pointer-events: none;
}

.hero-content-wrapper {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    width: 100%;
    min-height: calc(100vh - 80px);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-content-centered {
    max-width: 900px;
    width: 100%;
    text-align: center;
    transform: translateY(-48px);
}

.hero-glow-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

.hero-glow-lines .glow-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
    height: 2px;
    width: 300px;
    animation: heroLineMove 12s linear infinite;
    filter: blur(1px);
}

.hero-glow-lines .line-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
    transform: rotate(-25deg);
}

.hero-glow-lines .line-2 {
    top: 60%;
    right: 20%;
    animation-delay: 4s;
    transform: rotate(-15deg);
}

.hero-glow-lines .line-3 {
    top: 80%;
    right: 5%;
    animation-delay: 8s;
    transform: rotate(-35deg);
}

@keyframes heroLineMove {
    0% {
        transform: translateX(100px) rotate(var(--rotate, 0deg));
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(-400px) rotate(var(--rotate, 0deg));
        opacity: 0;
    }
}

/* Animated Particles Background */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--cyan-primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; top: 60%; animation-delay: 2s; }
.particle:nth-child(3) { left: 80%; top: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 70%; top: 70%; animation-delay: 6s; }
.particle:nth-child(5) { left: 40%; top: 10%; animation-delay: 8s; }
.particle:nth-child(6) { left: 90%; top: 80%; animation-delay: 10s; }

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.6; }
    25% { transform: translateY(-30px) translateX(20px); opacity: 0.8; }
    50% { transform: translateY(-60px) translateX(-20px); opacity: 0.4; }
    75% { transform: translateY(-30px) translateX(10px); opacity: 0.8; }
}

/* Geometric Shapes */
.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.shape {
    position: absolute;
    border: 2px solid rgba(0, 212, 255, 0.3);
    opacity: 0.4;
}

.shape-1 {
    width: 300px;
    height: 300px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    left: 5%;
    top: 20%;
    animation: rotateShape 20s linear infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    right: 10%;
    top: 50%;
    animation: rotateShape 15s linear infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    left: 50%;
    bottom: 20%;
    transform: rotate(45deg);
    animation: pulseShape 3s ease-in-out infinite;
}

@keyframes rotateShape {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulseShape {
    0%, 100% { opacity: 0.4; transform: rotate(45deg) scale(1); }
    50% { opacity: 0.6; transform: rotate(45deg) scale(1.1); }
}

/* Grid Overlay */
.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
    z-index: 1;
}

/* Gradient Orbs */
.hero-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.6), transparent);
    left: -10%;
    top: 20%;
    animation: drift 20s ease-in-out infinite;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.4), transparent);
    right: -5%;
    bottom: 10%;
    animation: drift 25s ease-in-out infinite reverse;
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(50px, -30px); }
    66% { transform: translate(-30px, 50px); }
}

/* Hero Content */
.hero-main {
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-size: var(--font-size-7xl);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    text-align: inherit;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.65;
    text-align: inherit;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-feature-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 4px;
    margin-top: 32px;
}

.hero-feature-tag {
    display: inline-block;
    padding: 10px 18px;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    transition: border-color 0.25s ease, background 0.25s ease;
}

.hero-feature-tag:hover {
    border-color: rgba(0, 212, 255, 0.5);
    background: rgba(0, 212, 255, 0.08);
}

.hero-feature-tag-sep {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    user-select: none;
    padding: 0 2px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Image - Market Symbol (Bull/Bear/Both) */
.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 600px;
}

.market-symbol-container {
    position: relative;
    width: 100%;
    max-width: 750px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    cursor: none;
    animation: containerFloat 8s ease-in-out infinite;
}

@keyframes containerFloat {
    0%, 100% {
        transform: translateY(0) rotateX(0deg) rotateY(0deg);
    }
    25% {
        transform: translateY(-10px) rotateX(2deg) rotateY(3deg);
    }
    50% {
        transform: translateY(-20px) rotateX(0deg) rotateY(0deg);
    }
    75% {
        transform: translateY(-10px) rotateX(-2deg) rotateY(-3deg);
    }
}

.market-symbol-container.both-active {
    max-width: 1000px;
}

.symbol-image {
    width: 100%;
    height: auto;
    max-width: 650px;
    position: absolute;
    z-index: 3;
    opacity: 0;
    transform: scale(0.9) rotateY(15deg);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.9s ease,
                max-width 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 50px rgba(0, 212, 255, 0.6)) drop-shadow(0 0 100px rgba(0, 212, 255, 0.3));
    transform-style: preserve-3d;
    will-change: transform, opacity, filter, max-width;
    pointer-events: none;
}

.symbol-image.active {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
    z-index: 5;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.9s ease,
                max-width 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Leaving state - maintains size while fading out */
.symbol-image.leaving {
    opacity: 0 !important;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 4;
    /* Keep all other properties from active state */
    pointer-events: none;
}

#bullImage.leaving {
    max-width: 650px !important;
    transform: scale(1) rotateY(0deg) !important;
}

#bearImage.leaving {
    max-width: 650px !important;
    transform: scale(1) rotateY(0deg) !important;
}

#bothImage.leaving {
    max-width: 950px !important;
    transform: scale(1.35) rotateY(0deg) !important;
}

.market-symbol-container.both-active #bothImage.active {
    max-width: 1000px !important;
    transform: scale(1.4) rotateY(0deg) !important;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.9s ease,
                max-width 0.9s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#bullImage.active {
    filter: drop-shadow(0 0 60px rgba(0, 212, 255, 0.8)) drop-shadow(0 0 120px rgba(0, 212, 255, 0.5));
    animation: symbolFloat 6s ease-in-out infinite;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.9s ease,
                max-width 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

#bearImage.active {
    filter: drop-shadow(0 0 60px rgba(255, 107, 53, 0.8)) drop-shadow(0 0 120px rgba(255, 107, 53, 0.5));
    animation: symbolFloat 6s ease-in-out infinite;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.9s ease,
                max-width 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

#bothImage {
    max-width: 900px;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.9s ease,
                max-width 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

#bothImage.active {
    filter: drop-shadow(0 0 90px rgba(0, 212, 255, 0.9)) drop-shadow(0 0 90px rgba(255, 107, 53, 0.9)) drop-shadow(0 0 160px rgba(0, 212, 255, 0.7));
    animation: symbolFloat 6s ease-in-out infinite;
    transform: scale(1.35) rotateY(0deg) !important;
    max-width: 950px !important;
    z-index: 5 !important;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.9s ease,
                max-width 0.9s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

@keyframes symbolFloat {
    0%, 100% {
        transform: translateY(0) rotateY(0deg) scale(var(--scale, 1));
    }
    25% {
        transform: translateY(-15px) rotateY(2deg) scale(calc(var(--scale, 1) * 1.01));
    }
    50% {
        transform: translateY(-25px) rotateY(0deg) scale(calc(var(--scale, 1) * 1.02));
    }
    75% {
        transform: translateY(-15px) rotateY(-2deg) scale(calc(var(--scale, 1) * 1.01));
    }
}

#bothImage.active {
    --scale: 1.4;
}

.symbol-glow {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.5), rgba(0, 212, 255, 0.3), rgba(0, 212, 255, 0.1), transparent);
    border-radius: 50%;
    filter: blur(90px);
    z-index: 1;
    animation: symbolGlowPulse 4s ease-in-out infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity, background;
}

.market-symbol-container.bear-active .symbol-glow {
    background: radial-gradient(circle, rgba(255, 107, 53, 0.5), rgba(255, 107, 53, 0.3), rgba(255, 107, 53, 0.1), transparent);
}

.market-symbol-container.both-active .symbol-glow {
    background: radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.6), transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255, 107, 53, 0.6), transparent 50%);
    width: 200%;
    height: 200%;
    filter: blur(120px);
    opacity: 0.95;
}

.market-symbol-container:hover .symbol-glow {
    width: 180%;
    height: 180%;
    opacity: 0.9;
    filter: blur(110px);
}

@keyframes symbolGlowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1.2) rotate(180deg);
    }
}

.symbol-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.symbol-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--cyan-primary);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.9);
    animation: symbolParticleFloat 10s ease-in-out infinite;
    pointer-events: none;
    transition: background 0.9s ease, box-shadow 0.9s ease;
}

.market-symbol-container.bear-active .symbol-particle {
    background: var(--red-orange);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.9);
}

.market-symbol-container.both-active .symbol-particle:nth-child(odd) {
    background: var(--cyan-primary);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.9);
}

.market-symbol-container.both-active .symbol-particle:nth-child(even) {
    background: var(--red-orange);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.9);
}

.symbol-particle:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.symbol-particle:nth-child(2) { top: 35%; right: 12%; animation-delay: 1.2s; }
.symbol-particle:nth-child(3) { bottom: 35%; left: 15%; animation-delay: 2.4s; }
.symbol-particle:nth-child(4) { bottom: 15%; right: 8%; animation-delay: 3.6s; }
.symbol-particle:nth-child(5) { top: 55%; left: 5%; animation-delay: 4.8s; }
.symbol-particle:nth-child(6) { top: 70%; right: 5%; animation-delay: 6s; }
.symbol-particle:nth-child(7) { top: 25%; left: 50%; animation-delay: 7.2s; }
.symbol-particle:nth-child(8) { bottom: 50%; right: 20%; animation-delay: 8.4s; }

@keyframes symbolParticleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translate(40px, -40px) scale(1.3);
        opacity: 1;
    }
    50% {
        transform: translate(-30px, 30px) scale(0.7);
        opacity: 0.5;
    }
    75% {
        transform: translate(30px, 30px) scale(1.1);
        opacity: 0.9;
    }
}

.symbol-energy-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.symbol-energy-lines .energy-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.7), transparent);
    height: 3px;
    width: 250px;
    filter: blur(2px);
    animation: symbolEnergyLineMove 6s ease-in-out infinite;
    pointer-events: none;
    transition: background 0.9s ease;
}

.market-symbol-container.bear-active .symbol-energy-lines .energy-line {
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.7), transparent);
}

.market-symbol-container.both-active .symbol-energy-lines .energy-line:nth-child(odd) {
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.7), transparent);
}

.market-symbol-container.both-active .symbol-energy-lines .energy-line:nth-child(even) {
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.7), transparent);
}

.symbol-energy-lines .energy-line:nth-child(1) {
    top: 20%;
    right: 5%;
    animation-delay: 0s;
    transform: rotate(-25deg);
}

.symbol-energy-lines .energy-line:nth-child(2) {
    top: 45%;
    right: 8%;
    animation-delay: 1.5s;
    transform: rotate(20deg);
}

.symbol-energy-lines .energy-line:nth-child(3) {
    bottom: 30%;
    right: 2%;
    animation-delay: 3s;
    transform: rotate(-30deg);
}

.symbol-energy-lines .energy-line:nth-child(4) {
    top: 65%;
    right: 12%;
    animation-delay: 4.5s;
    transform: rotate(15deg);
}

@keyframes symbolEnergyLineMove {
    0%, 100% {
        transform: translateX(0) rotate(var(--rotate, 0deg));
        opacity: 0.5;
    }
    50% {
        transform: translateX(-60px) rotate(var(--rotate, 0deg));
        opacity: 0.9;
    }
}


@keyframes energyLineMove {
    0%, 100% {
        transform: translateX(0) rotate(var(--rotate, 0deg));
        opacity: 0.4;
    }
    50% {
        transform: translateX(-50px) rotate(var(--rotate, 0deg));
        opacity: 0.8;
    }
}

/* Parallax Effect on Scroll */
@media (min-width: 769px) {
    .bull-container {
        will-change: transform;
    }
    
    .hero-image-wrapper {
        will-change: transform;
    }
}

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: var(--font-size-lg);
    text-decoration: none;
    transition: var(--transition-base);
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--cyan-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary:hover {
    background: var(--cyan-secondary);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 10px 40px rgba(0, 212, 255, 0.6),
        0 0 60px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--cyan-primary);
    border-color: var(--cyan-primary);
    position: relative;
    overflow: hidden;
}

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

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

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.15);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    border-color: var(--cyan-secondary);
}

.btn-alpha {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 255, 255, 0.1));
    border-color: rgba(0, 212, 255, 0.5);
    color: var(--cyan-primary);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-alpha::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.4), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.btn-alpha:hover::after {
    width: 300px;
    height: 300px;
}

.btn-alpha:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(0, 255, 255, 0.2));
    border-color: var(--cyan-secondary);
    color: var(--cyan-secondary);
    box-shadow: 
        0 8px 30px rgba(0, 212, 255, 0.5),
        0 0 60px rgba(0, 212, 255, 0.3),
        inset 0 0 30px rgba(0, 212, 255, 0.1);
    transform: translateY(-4px) scale(1.05) rotateX(5deg);
}

.btn-alpha span {
    position: relative;
    z-index: 1;
}

/* System Status */
.system-status {
    position: absolute;
    top: 32px;
    right: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    z-index: 20;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--green-live);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--green-live);
    animation: pulse 2s ease-in-out infinite;
}

.status-label {
    color: var(--green-live);
    font-weight: 600;
    font-size: var(--font-size-sm);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* ============================================
   Section 2: Problem → Solution
   ============================================ */
.problem-solution-section {
    padding: var(--section-padding);
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

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

.bg-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-left {
    background: radial-gradient(circle, rgba(0, 212, 255, 0.4), transparent);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-right {
    background: radial-gradient(circle, rgba(255, 107, 53, 0.4), transparent);
    bottom: -200px;
    right: -200px;
    animation-delay: 10s;
}

.bg-grid-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 50px) scale(1.1); }
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.comparison-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.comparison-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

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

.problem-card {
    border-color: rgba(255, 107, 53, 0.2);
}

.problem-card:hover {
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

.solution-card {
    border-color: rgba(0, 212, 255, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.problem-icon {
    background: rgba(255, 107, 53, 0.2);
    color: var(--red-orange);
}

.solution-icon {
    background: rgba(0, 212, 255, 0.2);
    color: var(--cyan-primary);
}

.comparison-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon svg {
    width: 28px;
    height: 28px;
}

.card-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-primary);
}

.problem-list, .solution-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.problem-item, .solution-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.problem-marker, .solution-marker {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 4px;
}

.problem-content, .solution-content {
    flex: 1;
}

.problem-content strong, .solution-content strong {
    display: block;
    font-size: var(--font-size-lg);
    color: var(--text-primary);
    margin-bottom: 8px;
}

.problem-content p, .solution-content p {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.solution-message {
    margin-top: 32px;
    padding: 20px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    text-align: center;
}

.solution-message p {
    font-size: var(--font-size-lg);
    color: var(--cyan-primary);
    margin: 0;
}

.comparison-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
}

.divider-line {
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.5), transparent);
}

.divider-arrow {
    width: 48px;
    height: 48px;
    background: rgba(0, 212, 255, 0.2);
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan-primary);
    animation: arrowPulse 2s ease-in-out infinite;
}

.divider-arrow svg {
    width: 24px;
    height: 24px;
}

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

/* ============================================
   Section 3: Process Flow - New Blue 3D Design
   ============================================ */
.process-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #0a0e27 0%, #050816 50%, #0a0e27 100%);
    position: relative;
    overflow: hidden;
}

.process-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.process-section .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.process-bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.1), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.08), transparent 50%);
    opacity: 1;
    pointer-events: none;
}

.process-flow-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.process-card-new {
    position: relative;
    background: rgba(5, 10, 30, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-card-new:hover,
.process-card-new.process-card-inview {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 
        0 20px 50px rgba(0, 212, 255, 0.3),
        0 0 60px rgba(0, 212, 255, 0.15);
}

.process-step-number {
    position: absolute;
    top: -18px;
    left: 15px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.15);
    border: 2px solid rgba(0, 212, 255, 0.5);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.process-card-glow {
    display: none;
}

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

.process-icon-wrapper {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-icon-new {
    width: 70px;
    height: 70px;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d4ff;
    transition: all 0.4s ease;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.3);
}

.process-icon-new svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    stroke: #00d4ff;
}

/* All cards: inner icon animates on hover/scroll (same as card 2) */
.process-card-new:hover .process-icon-new,
.process-card-new.process-card-inview .process-icon-new {
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
    border-color: rgba(0, 212, 255, 0.7);
    animation: processIconPulse 2s ease-in-out infinite;
}

@keyframes processIconPulse {
    0%, 100% {
        transform: scale(1.1) rotateY(0deg);
    }
    25% {
        transform: scale(1.15) rotateY(10deg) rotateX(5deg);
    }
    50% {
        transform: scale(1.2) rotateY(0deg);
    }
    75% {
        transform: scale(1.15) rotateY(-10deg) rotateX(-5deg);
    }
}

/* Center Card - AI/Strategy */
.process-card-center {
    transform: scale(1.05);
    z-index: 2;
    border-color: rgba(0, 212, 255, 0.5);
}

.process-card-center:hover,
.process-card-center.process-card-inview {
    transform: translateY(-10px) scale(1.08);
}

.process-icon-ai {
    width: 90px !important;
    height: 90px !important;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2), rgba(0, 212, 255, 0.05)) !important;
    border: 2px solid rgba(0, 212, 255, 0.6) !important;
    box-shadow: 
        0 0 40px rgba(0, 212, 255, 0.5),
        inset 0 0 30px rgba(0, 212, 255, 0.1) !important;
    animation: aiIconPulse 3s ease-in-out infinite;
}

.process-icon-ai svg {
    width: 46px !important;
    height: 46px !important;
    filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.6));
}
.process-icon-ai svg circle {
    filter: drop-shadow(0 0 3px currentColor);
}

@keyframes aiIconPulse {
    0%, 100% {
        box-shadow: 
            0 0 40px rgba(0, 212, 255, 0.5),
            inset 0 0 30px rgba(0, 212, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 0 60px rgba(0, 212, 255, 0.7),
            inset 0 0 40px rgba(0, 212, 255, 0.2);
    }
}

.process-card-center:hover .process-icon-ai,
.process-card-center.process-card-inview .process-icon-ai {
    animation: aiIconPulse 3s ease-in-out infinite, processIconPulse 2s ease-in-out infinite;
}

.process-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.process-card-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
}

.process-arrow {
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.6), rgba(0, 212, 255, 0.2));
    z-index: 10;
}

.process-arrow::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid rgba(0, 212, 255, 0.5);
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
}

.process-card-new:last-child .process-arrow {
    display: none;
}

/* Particles for all sections */
.section-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.section-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 212, 255, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
    animation: sectionParticleFloat 20s infinite ease-in-out;
}

.section-particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.section-particle:nth-child(2) { left: 20%; top: 60%; animation-delay: 3s; }
.section-particle:nth-child(3) { left: 80%; top: 30%; animation-delay: 6s; }
.section-particle:nth-child(4) { left: 70%; top: 70%; animation-delay: 9s; }
.section-particle:nth-child(5) { left: 40%; top: 10%; animation-delay: 12s; }
.section-particle:nth-child(6) { left: 90%; top: 80%; animation-delay: 15s; }

@keyframes sectionParticleFloat {
    0%, 100% { 
        transform: translateY(0) translateX(0) scale(1); 
        opacity: 0.6; 
    }
    25% { 
        transform: translateY(-40px) translateX(30px) scale(1.2); 
        opacity: 1; 
    }
    50% { 
        transform: translateY(-80px) translateX(-30px) scale(0.8); 
        opacity: 0.4; 
    }
    75% { 
        transform: translateY(-40px) translateX(20px) scale(1.1); 
        opacity: 0.9; 
    }
}

/* ============================================
   Section 4: Performance Snapshot
   ============================================ */
.performance-snapshot-section {
    padding: var(--section-padding);
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.snapshot-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15), transparent);
    border-radius: 50%;
    filter: blur(100px);
    transform: translate(-50%, -50%);
    animation: glowPulse 8s ease-in-out infinite;
}

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

.snapshot-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.snapshot-tab {
    padding: 12px 32px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.snapshot-tab:hover {
    border-color: rgba(0, 212, 255, 0.4);
    color: var(--text-primary);
}

.snapshot-tab.active {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--cyan-primary);
    color: var(--cyan-primary);
}

.snapshot-content {
    position: relative;
    z-index: 1;
}

.snapshot-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.metric-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.metric-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.2);
}

.metric-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-value {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--cyan-primary);
    margin-bottom: 20px;
}

.metric-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--cyan-primary), rgba(0, 212, 255, 0.6));
    border-radius: 4px;
    transition: width 1s ease;
}

.metric-fill.negative {
    background: linear-gradient(90deg, var(--red-orange), rgba(255, 107, 53, 0.6));
}

.metric-fill-61 { width: 61%; }
.metric-fill-68 { width: 68%; }
.metric-fill-41 { width: 41%; }

.snapshot-chart {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 32px;
}

.chart-container {
    width: 100%;
    height: 300px;
    position: relative;
}

.chart-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 8px;
    padding: 20px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--cyan-primary), rgba(0, 212, 255, 0.4));
    border-radius: 4px 4px 0 0;
    min-width: 20px;
    animation: barGrow 1s ease-out;
    transition: height 0.3s ease;
}

.chart-bar:nth-child(1) { animation-delay: 0.05s; }
.chart-bar:nth-child(2) { animation-delay: 0.1s; }
.chart-bar:nth-child(3) { animation-delay: 0.15s; }
.chart-bar:nth-child(4) { animation-delay: 0.2s; }
.chart-bar:nth-child(5) { animation-delay: 0.25s; }
.chart-bar:nth-child(6) { animation-delay: 0.3s; }
.chart-bar:nth-child(7) { animation-delay: 0.35s; }
.chart-bar:nth-child(8) { animation-delay: 0.4s; }
.chart-bar:nth-child(9) { animation-delay: 0.45s; }
.chart-bar:nth-child(10) { animation-delay: 0.5s; }

.chart-bar-h45 { height: 45%; }
.chart-bar-h55 { height: 55%; }
.chart-bar-h60 { height: 60%; }
.chart-bar-h65 { height: 65%; }
.chart-bar-h70 { height: 70%; }
.chart-bar-h75 { height: 75%; }
.chart-bar-h80 { height: 80%; }
.chart-bar-h85 { height: 85%; }
.chart-bar-h90 { height: 90%; }

@keyframes barGrow {
    from {
        height: 0;
    }
}

.snapshot-cta {
    text-align: center;
}

/* ============================================
   Section 5: Dashboard Preview
   ============================================ */
.dashboard-preview-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--dark-bg-alt) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.dashboard-bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.dashboard-preview-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-mockup {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.dashboard-mockup:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 100px rgba(0, 212, 255, 0.3);
}

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

.dashboard-header-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.dashboard-logo {
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--cyan-primary);
    letter-spacing: 2px;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.status-dot.live {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff00;
    animation: statusPulse 2s ease-in-out infinite;
}

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

.dashboard-header-right {
    color: var(--text-primary);
    font-size: var(--font-size-base);
}

.dashboard-content {
    padding: 32px;
}

.dashboard-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.dashboard-stat {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.stat-value {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-primary);
}

.stat-value.positive {
    color: #00ff00;
}

.stat-value.negative {
    color: var(--red-orange);
}

.dashboard-graph {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.graph-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    padding: 20px 0;
}

.graph-line {
    flex: 1;
    background: linear-gradient(180deg, var(--cyan-primary), rgba(0, 212, 255, 0.3));
    border-radius: 4px 4px 0 0;
    animation: graphGrow 1s ease-out;
}

.graph-line:nth-child(1) { height: 60%; animation-delay: 0.1s; }
.graph-line:nth-child(2) { height: 80%; animation-delay: 0.2s; }
.graph-line:nth-child(3) { height: 45%; animation-delay: 0.3s; }

@keyframes graphGrow {
    from { height: 0; }
}

.graph-label {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.dashboard-signals {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.signal-item {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 16px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
    align-items: center;
}

.signal-pair {
    font-weight: 700;
    color: var(--text-primary);
}

.signal-type {
    font-size: var(--font-size-sm);
    padding: 4px 12px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
}

.signal-type.long {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
}

.signal-type.short {
    background: rgba(255, 107, 53, 0.2);
    color: var(--red-orange);
}

.signal-status {
    font-size: var(--font-size-sm);
    padding: 4px 12px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
}

.signal-status.active {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
}

.signal-status.closed {
    background: rgba(0, 212, 255, 0.2);
    color: var(--cyan-primary);
}

.signal-pnl {
    text-align: right;
    font-weight: 700;
    font-size: var(--font-size-lg);
}

.signal-pnl.positive {
    color: #00ff00;
}

.signal-pnl.negative {
    color: var(--red-orange);
}

.dashboard-message {
    text-align: center;
    margin-top: 48px;
    padding: 24px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
}

.dashboard-message p {
    font-size: var(--font-size-lg);
    color: var(--cyan-primary);
    font-style: italic;
    margin: 0;
}

/* ============================================
   Section 6: Pricing Preview
   ============================================ */
.pricing-preview-section {
    padding: var(--section-padding);
    background: var(--dark-bg);
    position: relative;
}

.pricing-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.pricing-preview-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
}

.pricing-preview-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 30px 70px rgba(0, 212, 255, 0.3);
}

.pricing-preview-card.featured {
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(0, 212, 255, 0.05);
}

.preview-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--cyan-primary), var(--red-orange));
    color: #000;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: var(--font-size-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.preview-plan-name {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.preview-plan-price {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: var(--cyan-primary);
    margin-bottom: 32px;
}

.preview-plan-price span {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
}

.preview-plan-features {
    margin-bottom: 32px;
    text-align: left;
}

.preview-feature {
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.preview-feature:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: var(--font-size-base);
}

/* ============================================
   Section 7: Final CTA
   ============================================ */
.final-cta-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--dark-bg) 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2), transparent);
    border-radius: 50%;
    filter: blur(120px);
    transform: translate(-50%, -50%);
    animation: ctaGlowPulse 6s ease-in-out infinite;
}

@keyframes ctaGlowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

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

.cta-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--cyan-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
    animation: ctaParticleFloat 15s ease-in-out infinite;
}

.cta-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.cta-particle:nth-child(2) { top: 60%; right: 15%; animation-delay: 5s; }
.cta-particle:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 10s; }
.cta-particle:nth-child(4) { bottom: 60%; right: 10%; animation-delay: 15s; }

@keyframes ctaParticleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    25% { transform: translate(30px, -30px) scale(1.2); opacity: 1; }
    50% { transform: translate(-20px, 20px) scale(0.8); opacity: 0.4; }
    75% { transform: translate(20px, 20px) scale(1.1); opacity: 0.8; }
}

.final-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

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

.status-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: var(--font-size-base);
}

.status-item svg {
    width: 20px;
    height: 20px;
    color: var(--cyan-primary);
}

.final-cta-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.final-cta-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.6;
}

.final-cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary.large, .btn-secondary.large {
    padding: 18px 40px;
    font-size: var(--font-size-lg);
}

/* ============================================
   Features Section (Legacy - keeping for compatibility)
   ============================================ */
.features-section {
    padding: var(--section-padding);
    background: var(--dark-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-base);
    text-align: center;
}

.feature-card:hover {
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan-primary);
    transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: rgba(0, 212, 255, 0.3);
    transform: scale(1.1);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-description {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   Performance Section
   ============================================ */
.performance-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-alt) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.stat-card {
    text-align: center;
    padding: 32px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    transition: var(--transition-base);
}

.stat-card:hover {
    transform: scale(1.05);
    border-color: rgba(0, 212, 255, 0.4);
}

.stat-value {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: var(--cyan-primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: var(--section-padding);
    background: var(--dark-bg-alt);
    text-align: center;
}

.cta-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.cta-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Footer - Professional & Dense
   ============================================ */
.footer {
    background: #000000;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 80px 20px 30px;
    position: relative;
}

.footer-main {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr 1.2fr 1.2fr 1.2fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-description {
    margin-top: 16px;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    color: var(--cyan-primary);
    transition: var(--transition-base);
    text-decoration: none;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--cyan-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

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

.footer-heading {
    font-size: var(--font-size-base);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: var(--transition-base);
    line-height: 1.5;
}

.footer-link:hover {
    color: var(--cyan-primary);
    padding-left: 4px;
}

.footer-newsletter {
    max-width: 280px;
}

.newsletter-text {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.newsletter-input {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: var(--font-size-sm);
    transition: var(--transition-base);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--cyan-primary);
    background: rgba(255, 255, 255, 0.08);
}

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

.newsletter-btn {
    padding: 12px 24px;
    background: var(--cyan-primary);
    border: none;
    border-radius: 8px;
    color: var(--white);
    font-weight: 600;
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: var(--transition-base);
}

.newsletter-btn:hover {
    background: var(--cyan-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4);
}

.newsletter-note {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    font-style: italic;
}

.footer-bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.footer-bottom-left,
.footer-bottom-right {
    flex: 1;
}

.footer-bottom-right {
    text-align: right;
}

/* ============================================
   Plans Page
   ============================================ */
.plans-section {
    padding: 120px 20px 80px;
    background: var(--dark-bg);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.plans-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.candlestick-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to top, rgba(0, 212, 255, 0.08) 1px, transparent 1px),
        linear-gradient(to right, rgba(0, 212, 255, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.4;
}

/* Animated Candles */
.candle {
    position: absolute;
    width: 8px;
    height: 80px;
    background: linear-gradient(to top, 
        rgba(0, 255, 0, 0.6) 0%, rgba(0, 255, 0, 0.6) 35%, 
        transparent 35%, transparent 45%,
        rgba(255, 0, 0, 0.6) 45%, rgba(255, 0, 0, 0.6) 75%,
        transparent 75%);
    border-radius: 2px;
    opacity: 0.7;
    animation: candleFloat 8s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.candle-1 {
    left: 10%;
    top: 15%;
    animation-delay: 0s;
    transform: rotate(-8deg);
}

.candle-2 {
    left: 25%;
    top: 60%;
    animation-delay: 1.5s;
    transform: rotate(5deg);
    height: 100px;
}

.candle-3 {
    right: 15%;
    top: 25%;
    animation-delay: 3s;
    transform: rotate(-5deg);
    height: 90px;
}

.candle-4 {
    right: 30%;
    top: 70%;
    animation-delay: 4.5s;
    transform: rotate(8deg);
    height: 85px;
}

.candle-5 {
    left: 50%;
    top: 10%;
    animation-delay: 2s;
    transform: rotate(-3deg);
    height: 95px;
}

.candle-6 {
    left: 45%;
    top: 80%;
    animation-delay: 5s;
    transform: rotate(6deg);
    height: 75px;
}

@keyframes candleFloat {
    0%, 100% {
        transform: translateY(0) rotate(var(--rotate, 0deg));
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(calc(var(--rotate, 0deg) + 5deg));
        opacity: 0.9;
    }
}

/* Animated Bitcoin Coins */
.btc-coin {
    position: absolute;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.4), rgba(255, 193, 7, 0.1), transparent);
    border-radius: 50%;
    filter: blur(25px);
    opacity: 0.6;
    z-index: 2;
    animation: btcFloat 12s ease-in-out infinite;
}

.btc-left {
    left: -50px;
    top: 25%;
    animation-delay: 0s;
}

.btc-right {
    right: -50px;
    top: 55%;
    animation-delay: 4s;
}

.btc-center {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    animation-delay: 2s;
    opacity: 0.4;
}

.btc-top {
    left: 50%;
    top: 5%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    animation-delay: 6s;
    opacity: 0.3;
}

@keyframes btcFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.8;
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
        opacity: 0.5;
    }
}

/* Glowing Lines */
.glow-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.glow-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
    height: 2px;
    width: 200px;
    animation: lineMove 10s linear infinite;
    filter: blur(1px);
}

.line-1 {
    top: 20%;
    left: 0;
    animation-delay: 0s;
    transform: rotate(15deg);
}

.line-2 {
    top: 60%;
    right: 0;
    animation-delay: 3s;
    transform: rotate(-15deg);
}

.line-3 {
    top: 80%;
    left: 20%;
    animation-delay: 6s;
    transform: rotate(25deg);
}

@keyframes lineMove {
    0% {
        transform: translateX(-100px) rotate(var(--rotate, 0deg));
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 100px)) rotate(var(--rotate, 0deg));
        opacity: 0;
    }
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--cyan-primary);
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
    animation: particleFloat 15s ease-in-out infinite;
}

.particle-1 {
    left: 15%;
    top: 20%;
    animation-delay: 0s;
}

.particle-2 {
    left: 80%;
    top: 30%;
    animation-delay: 2s;
}

.particle-3 {
    left: 30%;
    top: 70%;
    animation-delay: 4s;
}

.particle-4 {
    left: 70%;
    top: 75%;
    animation-delay: 6s;
}

.particle-5 {
    left: 50%;
    top: 40%;
    animation-delay: 8s;
}

.particle-6 {
    left: 20%;
    top: 85%;
    animation-delay: 10s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(40px, -40px) scale(1.2);
        opacity: 0.9;
    }
    50% {
        transform: translate(-30px, 30px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(20px, 20px) scale(1.1);
        opacity: 0.8;
    }
}

.plans-section .container {
    position: relative;
    z-index: 10;
}

.plans-section .section-header {
    text-align: center;
    margin-bottom: 64px;
}

.plans-section .section-title {
    font-size: var(--font-size-5xl);
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.plans-section .section-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.plan-card {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
    transform-style: preserve-3d;
    perspective: 1000px;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

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

.plan-card:hover {
    border-color: rgba(0, 212, 255, 0.8);
    transform: translateY(-12px) rotateX(2deg) rotateY(-2deg) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 212, 255, 0.5),
        0 0 80px rgba(0, 212, 255, 0.3),
        inset 0 0 30px rgba(0, 212, 255, 0.1);
    animation: cardPulse 2s ease-in-out infinite;
}

@keyframes cardPulse {
    0%, 100% {
        box-shadow: 
            0 20px 60px rgba(0, 212, 255, 0.5),
            0 0 80px rgba(0, 212, 255, 0.3),
            inset 0 0 30px rgba(0, 212, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 25px 70px rgba(0, 212, 255, 0.6),
            0 0 100px rgba(0, 212, 255, 0.4),
            inset 0 0 40px rgba(0, 212, 255, 0.15);
    }
}

.plan-card > * {
    position: relative;
    z-index: 1;
}

.plan-card.plan-popular {
    border-color: var(--cyan-primary);
    border-width: 3px;
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
    animation: popularGlow 3s ease-in-out infinite;
}

.plan-card.plan-popular:hover {
    transform: translateY(-15px) rotateX(3deg) rotateY(-3deg) scale(1.05);
    box-shadow: 
        0 30px 80px rgba(0, 212, 255, 0.7),
        0 0 120px rgba(0, 212, 255, 0.5),
        inset 0 0 50px rgba(0, 212, 255, 0.2);
}

@keyframes popularGlow {
    0%, 100% {
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 60px rgba(0, 212, 255, 0.8);
    }
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--cyan-primary), var(--cyan-secondary));
    color: var(--dark-bg);
    padding: 8px 24px;
    border-radius: 25px;
    font-size: var(--font-size-sm);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.5);
    z-index: 5;
}

.plan-bear,
.plan-bull {
    position: absolute;
    width: 250px;
    height: 250px;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
    animation: bearBullFloat 8s ease-in-out infinite;
}

.plan-bear {
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(255, 107, 53, 0.4), rgba(255, 107, 53, 0.2), transparent);
    border-radius: 50%;
    filter: blur(50px);
    animation-delay: 0s;
}

.plan-bull {
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(0, 212, 255, 0.4), rgba(0, 212, 255, 0.2), transparent);
    border-radius: 50%;
    filter: blur(50px);
    animation-delay: 2s;
}

@keyframes bearBullFloat {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-60%) scale(1.1);
        opacity: 0.7;
    }
}

.plan-header {
    margin-bottom: 32px;
    text-align: center;
}

.plan-name {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-subtitle {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.price-amount {
    font-size: var(--font-size-5xl);
    font-weight: 900;
    color: var(--cyan-primary);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    transition: all 0.3s ease;
    display: inline-block;
}

.plan-card:hover .price-amount {
    transform: scale(1.1);
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    animation: priceGlow 2s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% {
        text-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    }
    50% {
        text-shadow: 0 0 40px rgba(0, 212, 255, 1);
    }
}

.price-period {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
}

.plan-note {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    text-align: center;
    margin-top: 8px;
    font-style: italic;
}

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

.plan-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    transform: translateX(0);
}

.plan-card:hover .plan-features li {
    transform: translateX(5px);
    color: var(--text-primary);
}

.plan-card:hover .plan-features li:nth-child(1) {
    transition-delay: 0.05s;
}

.plan-card:hover .plan-features li:nth-child(2) {
    transition-delay: 0.1s;
}

.plan-card:hover .plan-features li:nth-child(3) {
    transition-delay: 0.15s;
}

.plan-card:hover .plan-features li:nth-child(4) {
    transition-delay: 0.2s;
}

.plan-card:hover .plan-features li:nth-child(5) {
    transition-delay: 0.25s;
}

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

.btn-plan {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: var(--cyan-primary);
    border: 2px solid var(--cyan-primary);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: var(--font-size-base);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.btn-plan::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-plan:hover::before {
    width: 300px;
    height: 300px;
}

.btn-plan:hover {
    background: var(--cyan-secondary);
    border-color: var(--cyan-secondary);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 10px 30px rgba(0, 212, 255, 0.6),
        0 0 40px rgba(0, 212, 255, 0.4);
}

.btn-plan:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-plan-primary {
    background: var(--cyan-primary);
    color: var(--white);
    border-color: var(--cyan-primary);
}

.btn-plan-primary:hover {
    background: var(--cyan-secondary);
    border-color: var(--cyan-secondary);
}

.btn-plan-secondary {
    display: block;
    width: 100%;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid rgba(0, 212, 255, 0.5);
    color: var(--cyan-primary);
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: var(--font-size-sm);
    transition: var(--transition-base);
    margin-top: 12px;
}

.btn-plan-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--cyan-primary);
}

.plan-disclaimer {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
    font-style: italic;
}

.plans-note {
    margin-top: 48px;
    text-align: center;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

/* ============================================
   Auth Pages
   ============================================ */
.auth-section {
    padding: 120px 20px 80px;
    background: var(--dark-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
}

.auth-card {
    background: linear-gradient(180deg, rgba(20, 25, 45, 0.6) 0%, rgba(10, 14, 39, 0.85) 100%);
    border: 1px solid rgba(0, 212, 255, 0.18);
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.auth-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.auth-header h1 {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.auth-header p {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
}

.auth-form {
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}
.form-group:last-of-type { margin-bottom: 24px; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: var(--font-size-sm);
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: var(--font-size-base);
    transition: var(--transition-base);
}

.form-group input:focus {
    outline: none;
    border-color: var(--cyan-primary);
    background: rgba(255, 255, 255, 0.08);
}

/* Password field with show/hide eye */
.password-input-wrap {
    position: relative;
    display: block;
}
.password-input-wrap input {
    padding-right: 48px;
}
.password-toggle-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, background 0.2s;
}
.password-toggle-btn:hover {
    color: var(--cyan-primary);
    background: rgba(0, 212, 255, 0.1);
}
.password-toggle-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.password-toggle-btn .icon-hide { display: none; }
.password-toggle-btn[aria-pressed="true"] .icon-show { display: none; }
.password-toggle-btn[aria-pressed="true"] .icon-hide { display: block; }

.form-hint {
    display: block;
    margin-top: 6px;
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

.btn-full {
    width: 100%;
}

.error-message {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff6b6b;
    padding: 12px;
    border-radius: 8px;
    margin-top: 16px;
    font-size: var(--font-size-sm);
}

.success-message {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #00ff00;
    padding: 12px;
    border-radius: 8px;
    margin-top: 16px;
    font-size: var(--font-size-sm);
}

.auth-footer {
    text-align: center;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.auth-footer a {
    color: var(--cyan-primary);
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.auth-links-row { margin-bottom: 16px; font-size: var(--font-size-sm); }
.auth-links-row .auth-link { color: var(--cyan-primary); text-decoration: none; }
.auth-links-row .auth-link:hover { text-decoration: underline; }

/* ============================================
   Performance Page
   ============================================ */
.performance-page-section {
    padding: 120px 20px 80px;
    background: var(--dark-bg);
    min-height: 100vh;
}

.performance-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.performance-stat-card {
    text-align: center;
    padding: 32px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    transition: var(--transition-base);
}

.performance-stat-card:hover {
    transform: scale(1.05);
    border-color: rgba(0, 212, 255, 0.4);
}

.performance-stat-card .stat-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

/* ============================================
   Utility Classes
   ============================================ */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

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

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        gap: 40px;
    }
    
    .hero-title {
        font-size: var(--font-size-6xl);
    }
    
    .hero-image-wrapper {
        min-height: 500px;
    }
    
    .symbol-image {
        max-width: 90%;
    }
    
    .market-symbol-container.both-active {
        max-width: 95%;
    }
    
    .market-symbol-container.both-active #bothImage.active {
        max-width: 95% !important;
        transform: scale(1.1) !important;
    }
    
    /* Footer Tablet Landscape */
    .footer-main {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-description {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-newsletter {
        grid-column: span 2;
        grid-row: 3; /* Push to bottom row */
        max-width: 100%;
    }
    
    /* Arrange 5 link columns + newsletter */
    /* Row 2: 4 links */
    /* Row 3: 1 link + newsletter */
}

@media (max-width: 991px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-top: 1px solid rgba(0, 212, 255, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-links.mobile-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links .nav-link {
        padding: 16px 20px;
        border-bottom: 1px solid rgba(0, 212, 255, 0.1);
        width: 100%;
        display: block;
    }
    
    .nav-links .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-links .btn-primary-small {
        margin-top: 12px;
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .hero {
        align-items: stretch;
        padding-top: 80px;
        min-height: 100vh;
    }
    
    .hero .container {
        display: flex;
        flex-direction: column;
        width: 100%;
        min-height: calc(100vh - 80px);
    }
    
    .hero-content-wrapper {
        min-height: calc(100vh - 80px);
        min-height: calc(100dvh - 80px);
        padding: 40px 0 80px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 20px;
    }
    
    .hero-content-centered {
        text-align: center;
        transform: none;
        display: flex;
        flex-direction: column;
        flex: 1;
        min-height: 0;
        justify-content: center;
    }
    
    .hero-main {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1;
        min-height: 0;
        padding-top: 100px; /* Increased from 40px to 100px */
        justify-content: flex-start; /* Start content from top */
    }
    
    .hero-main .hero-title {
        margin-bottom: 16px;
        flex-shrink: 0;
        text-align: center;
    }
    
    .hero-main .hero-subtitle,
    .hero-main .hero-feature-tags {
        flex-shrink: 0;
        text-align: center;
        justify-content: center;
    }
    
    .hero-cta {
        margin-top: auto; /* Push CTA to bottom */
        padding-top: 20px;
        justify-content: center;
        flex-shrink: 0;
        width: 100%;
        padding-bottom: 20px; /* Add bottom padding */
    }
    
    .hero-bg-image {
        background-position: center top;
    }
    
    .hero-bg-image::after {
        background: linear-gradient(180deg,
            rgba(10, 14, 39, 0.85) 0%,
            rgba(10, 14, 39, 0.45) 50%,
            rgba(10, 14, 39, 0.9) 100%);
    }
    
    .hero-title {
        font-size: 2.75rem; /* Better scaling */
        text-align: center;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 90%;
    }
    
    .hero-feature-tags {
        justify-content: center;
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* New Sections Responsive */
    .comparison-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .comparison-divider {
        flex-direction: row;
        height: auto;
        padding: 20px 0;
    }
    
    .divider-line {
        width: 100px;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent);
    }
    
    .divider-arrow {
        transform: rotate(90deg);
    }
    
    .process-flow {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .process-flow-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-card-center {
        transform: scale(1);
    }
    
    .process-card-center:hover,
    .process-card-center.process-card-inview {
        transform: translateY(-8px) scale(1.02);
    }
    
    .process-arrow {
        display: none;
    }
    
    .step-connector {
        display: none;
    }
    
    .snapshot-metrics {
        grid-template-columns: 1fr;
    }
    
    .dashboard-stats-row {
        grid-template-columns: 1fr;
    }
    
    .signal-item {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
    }
    
    .pricing-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-status-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .final-cta-title {
        font-size: var(--font-size-3xl);
    }
    
    .final-cta-subtitle {
        font-size: var(--font-size-lg);
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        margin: 0 auto;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-newsletter {
        grid-column: 1 / -1;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    
    .newsletter-form {
        max-width: 400px;
        margin: 0 auto 12px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .footer-bottom-right {
        text-align: center;
    }
    
    .system-status {
        top: 100px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-base);
    }
    
    .hero-feature-tag {
        font-size: var(--font-size-sm);
        padding: 8px 14px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    /* New Sections Small Mobile */
    .comparison-card {
        padding: 24px;
    }
    
    .process-step {
        padding: 0;
    }
    
    .step-content {
        padding: 24px;
    }
    
    .snapshot-tabs {
        flex-direction: column;
        gap: 12px;
    }
    
    .snapshot-tab {
        width: 100%;
    }
    
    .dashboard-mockup {
        border-radius: 16px;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .final-cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary.large, .btn-secondary.large {
        width: 100%;
    }
    
    .cta-buttons,
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-bear,
    .plan-bull {
        display: none;
    }
    
    .btc-coin {
        opacity: 0.3;
    }
}

@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .plan-bear,
    .plan-bull {
        opacity: 0.3;
    }
}

/* ============================================
   ENHANCED HERO - FLOATING CRYPTO ELEMENTS
   ============================================ */

/* Floating Candles */
.floating-candles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.candle-stick {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.15;
    animation: floatCandle 15s ease-in-out infinite;
    transform-style: preserve-3d;
}

.candle-stick .wick {
    width: 2px;
    height: 20px;
    background: currentColor;
}

.candle-stick .body {
    width: 10px;
    height: 40px;
    border-radius: 2px;
    box-shadow: 0 0 15px currentColor;
}

.candle-stick.green {
    color: #00ff88;
}
.candle-stick.green .body {
    background: linear-gradient(180deg, #00ff88 0%, rgba(0,255,136,0.3) 100%);
}

.candle-stick.red {
    color: #ff3366;
}
.candle-stick.red .body {
    background: linear-gradient(180deg, #ff3366 0%, rgba(255,51,102,0.3) 100%);
}

.candle-stick.c1 { top: 15%; left: 5%; animation-delay: 0s; }
.candle-stick.c2 { top: 25%; left: 12%; animation-delay: 2s; }
.candle-stick.c3 { top: 60%; left: 3%; animation-delay: 4s; }
.candle-stick.c4 { top: 75%; left: 10%; animation-delay: 6s; }
.candle-stick.c5 { top: 20%; right: 8%; animation-delay: 1s; }
.candle-stick.c6 { top: 40%; right: 3%; animation-delay: 3s; }
.candle-stick.c7 { top: 65%; right: 12%; animation-delay: 5s; }
.candle-stick.c8 { top: 85%; right: 5%; animation-delay: 7s; }

@keyframes floatCandle {
    0%, 100% {
        transform: translateY(0) translateZ(0) rotateY(0deg) scale(1);
        opacity: 0.1;
    }
    25% {
        transform: translateY(-20px) translateZ(30px) rotateY(10deg) scale(1.1);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-40px) translateZ(50px) rotateY(0deg) scale(1.2);
        opacity: 0.25;
    }
    75% {
        transform: translateY(-20px) translateZ(30px) rotateY(-10deg) scale(1.1);
        opacity: 0.2;
    }
}

/* Floating Bitcoins */
.floating-bitcoins {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.btc-icon {
    position: absolute;
    font-size: 2rem;
    font-weight: 800;
    color: #f7931a;
    opacity: 0.1;
    text-shadow: 0 0 30px rgba(247, 147, 26, 0.5), 0 0 60px rgba(247, 147, 26, 0.3);
    animation: floatBitcoin 20s ease-in-out infinite;
    transform-style: preserve-3d;
}

.btc1 { top: 10%; left: 8%; font-size: 2.5rem; animation-delay: 0s; }
.btc2 { top: 30%; left: 2%; font-size: 1.8rem; animation-delay: 3s; }
.btc3 { top: 70%; left: 6%; font-size: 2rem; animation-delay: 6s; }
.btc4 { top: 15%; right: 5%; font-size: 2.2rem; animation-delay: 2s; }
.btc5 { top: 50%; right: 2%; font-size: 1.6rem; animation-delay: 5s; }
.btc6 { top: 80%; right: 8%; font-size: 2rem; animation-delay: 8s; }

@keyframes floatBitcoin {
    0%, 100% {
        transform: translateY(0) translateZ(0) rotateY(0deg) rotateX(0deg) scale(1);
        opacity: 0.08;
    }
    25% {
        transform: translateY(-30px) translateZ(50px) rotateY(30deg) rotateX(10deg) scale(1.1);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-50px) translateZ(80px) rotateY(0deg) rotateX(0deg) scale(1.2);
        opacity: 0.2;
    }
    75% {
        transform: translateY(-25px) translateZ(40px) rotateY(-30deg) rotateX(-10deg) scale(1.1);
        opacity: 0.15;
    }
}

/* Floating Chart SVG */
.floating-chart-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.3;
}

.chart-wave {
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    animation: drawChart 10s ease-in-out infinite;
}

.chart-wave.wave1 {
    animation-delay: 0s;
}

.chart-wave.wave2 {
    animation-delay: 2s;
}

@keyframes drawChart {
    0% {
        stroke-dashoffset: 1500;
        opacity: 0;
    }
    30% {
        opacity: 0.4;
    }
    50% {
        stroke-dashoffset: 0;
        opacity: 0.5;
    }
    70% {
        opacity: 0.4;
    }
    100% {
        stroke-dashoffset: -1500;
        opacity: 0;
    }
}

/* ============================================
   ENHANCED 3D EFFECTS FOR BOTH.PNG
   ============================================ */

/* Secondary Glow Layer */
.symbol-glow-secondary {
    position: absolute;
    width: 120%;
    height: 120%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255, 107, 53, 0.4) 0%, transparent 50%);
    filter: blur(60px);
    z-index: 0;
    animation: glowPulse 3s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes glowPulse {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.15); }
}

/* Light Rays */
.light-rays-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.light-ray {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 200%;
    background: linear-gradient(to top, 
        transparent 0%, 
        rgba(255, 255, 255, 0.05) 20%, 
        rgba(255, 255, 255, 0.15) 50%, 
        rgba(255, 255, 255, 0.05) 80%, 
        transparent 100%);
    transform-origin: center center;
    animation: rayPulse 4s ease-in-out infinite;
}

.ray1 { transform: rotate(0deg) translateY(-50%); animation-delay: 0s; }
.ray2 { transform: rotate(60deg) translateY(-50%); animation-delay: 0.7s; }
.ray3 { transform: rotate(120deg) translateY(-50%); animation-delay: 1.4s; }
.ray4 { transform: rotate(180deg) translateY(-50%); animation-delay: 2.1s; }
.ray5 { transform: rotate(240deg) translateY(-50%); animation-delay: 2.8s; }
.ray6 { transform: rotate(300deg) translateY(-50%); animation-delay: 3.5s; }

@keyframes rayPulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.6; }
}

/* Energy Rings */
.energy-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    animation: ringExpand 4s ease-out infinite;
}

.energy-ring.ring1 {
    width: 100px;
    height: 100px;
    border-color: rgba(0, 212, 255, 0.6);
    animation-delay: 0s;
}

.energy-ring.ring2 {
    width: 100px;
    height: 100px;
    border-color: rgba(255, 107, 53, 0.5);
    animation-delay: 1.3s;
}

.energy-ring.ring3 {
    width: 100px;
    height: 100px;
    border-color: rgba(255, 255, 255, 0.3);
    animation-delay: 2.6s;
}

@keyframes ringExpand {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

/* Spotlight Center */
.spotlight-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 30%, 
        transparent 70%);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
    animation: spotlightPulse 3s ease-in-out infinite;
}

@keyframes spotlightPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.8; }
}

/* Enhanced Both Image */
#bothImage.active {
    filter: 
        drop-shadow(0 0 80px rgba(0, 212, 255, 1))
        drop-shadow(0 0 80px rgba(255, 107, 53, 1))
        drop-shadow(0 0 150px rgba(0, 212, 255, 0.6))
        drop-shadow(0 0 150px rgba(255, 107, 53, 0.6))
        drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
    animation: enhancedFloat 6s ease-in-out infinite;
    transform: scale(1.35) rotateY(0deg) translateZ(50px) !important;
    max-width: 950px !important;
    z-index: 5 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

@keyframes enhancedFloat {
    0%, 100% {
        transform: scale(1.35) translateY(0) rotateY(0deg) rotateX(0deg) translateZ(50px);
    }
    25% {
        transform: scale(1.37) translateY(-12px) rotateY(2deg) rotateX(-1deg) translateZ(70px);
    }
    50% {
        transform: scale(1.4) translateY(-20px) rotateY(0deg) rotateX(0deg) translateZ(100px);
    }
    75% {
        transform: scale(1.37) translateY(-12px) rotateY(-2deg) rotateX(1deg) translateZ(70px);
    }
}

/* Enhanced Particles */
.symbol-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--cyan-primary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--cyan-primary), 0 0 30px var(--cyan-primary);
    animation: particleFloat3D 8s ease-in-out infinite;
    z-index: 6;
}

.symbol-particle:nth-child(odd) {
    background: #ff6b35;
    box-shadow: 0 0 15px #ff6b35, 0 0 30px #ff6b35;
}

.symbol-particle:nth-child(1) { top: 5%; left: 20%; animation-delay: 0s; }
.symbol-particle:nth-child(2) { top: 15%; right: 15%; animation-delay: 0.8s; }
.symbol-particle:nth-child(3) { top: 30%; left: 5%; animation-delay: 1.6s; }
.symbol-particle:nth-child(4) { top: 45%; right: 10%; animation-delay: 2.4s; }
.symbol-particle:nth-child(5) { top: 60%; left: 15%; animation-delay: 3.2s; }
.symbol-particle:nth-child(6) { top: 75%; right: 20%; animation-delay: 4s; }
.symbol-particle:nth-child(7) { top: 85%; left: 25%; animation-delay: 4.8s; }
.symbol-particle:nth-child(8) { top: 10%; left: 50%; animation-delay: 5.6s; }
.symbol-particle:nth-child(9) { top: 90%; right: 30%; animation-delay: 6.4s; }
.symbol-particle:nth-child(10) { top: 40%; left: 30%; animation-delay: 7.2s; }
.symbol-particle:nth-child(11) { top: 55%; right: 35%; animation-delay: 0.4s; }
.symbol-particle:nth-child(12) { top: 70%; left: 40%; animation-delay: 2s; }

@keyframes particleFloat3D {
    0%, 100% {
        transform: translateY(0) translateZ(0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-25px) translateZ(40px) scale(1.3);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-40px) translateZ(80px) scale(1.5);
        opacity: 1;
    }
    75% {
        transform: translateY(-25px) translateZ(40px) scale(1.3);
        opacity: 0.7;
    }
}

/* ============================================
   CENTER LIGHT RISE - Between Bull & Bear
   ============================================ */
.center-light-rise {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 400px;
    z-index: 2;
    pointer-events: none;
}

/* Main Light Beam - CONTINUOUSLY BRIGHTENING */
.light-beam {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 100%;
    background: linear-gradient(to top, 
        transparent 0%,
        rgba(0, 212, 255, 0.2) 15%,
        rgba(0, 212, 255, 0.7) 35%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 107, 53, 0.7) 65%,
        rgba(255, 107, 53, 0.2) 85%,
        transparent 100%);
    filter: blur(3px);
    animation: lightBeamContinuousBrighten 2.5s ease-in-out infinite;
}

.light-beam.beam-left {
    left: 40%;
    width: 3px;
    opacity: 0.7;
    animation-delay: 0.3s;
    transform: translateX(-50%) rotate(-8deg);
}

.light-beam.beam-right {
    left: 60%;
    width: 3px;
    opacity: 0.7;
    animation-delay: 0.6s;
    transform: translateX(-50%) rotate(8deg);
}

@keyframes lightBeamContinuousBrighten {
    0% {
        height: 70%;
        opacity: 0.6;
        filter: blur(3px);
    }
    50% {
        height: 110%;
        opacity: 0.9;
        filter: blur(5px);
    }
    100% {
        height: 130%;
        opacity: 1;
        filter: blur(6px);
    }
}

/* Light Flare - Center Glow - CONTINUOUSLY BRIGHTENING */
.light-flare {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle,
        rgba(255, 255, 255, 1) 0%,
        rgba(0, 212, 255, 0.8) 20%,
        rgba(255, 107, 53, 0.6) 40%,
        transparent 70%);
    border-radius: 50%;
    filter: blur(25px);
    animation: lightFlareContinuousBrighten 2.5s ease-in-out infinite;
}

@keyframes lightFlareContinuousBrighten {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
        filter: blur(20px);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.9;
        filter: blur(30px);
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 1;
        filter: blur(35px);
    }
}

/* Light Core - Intense Center - CONTINUOUSLY BRIGHTENING */
.light-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle,
        #ffffff 0%,
        rgba(0, 212, 255, 1) 25%,
        rgba(255, 107, 53, 1) 50%,
        transparent 100%);
    border-radius: 50%;
    animation: lightCoreContinuousBrighten 2s ease-in-out infinite;
}

@keyframes lightCoreContinuousBrighten {
    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 
            0 0 40px rgba(255, 255, 255, 0.9),
            0 0 80px rgba(0, 212, 255, 0.9),
            0 0 120px rgba(255, 107, 53, 0.7),
            0 0 160px rgba(0, 212, 255, 0.5);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.8);
        box-shadow: 
            0 0 80px rgba(255, 255, 255, 1),
            0 0 160px rgba(0, 212, 255, 1),
            0 0 240px rgba(255, 107, 53, 0.9),
            0 0 320px rgba(0, 212, 255, 0.7),
            0 0 400px rgba(255, 255, 255, 0.4);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.2);
        box-shadow: 
            0 0 100px rgba(255, 255, 255, 1),
            0 0 200px rgba(0, 212, 255, 1),
            0 0 300px rgba(255, 107, 53, 1),
            0 0 400px rgba(0, 212, 255, 0.8),
            0 0 500px rgba(255, 255, 255, 0.5);
        opacity: 1;
    }
}

/* Light Pulse Rings */
.light-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.5);
    animation: lightPulseExpand 3s ease-out infinite;
}

.light-pulse.pulse1 {
    width: 50px;
    height: 50px;
    animation-delay: 0s;
}

.light-pulse.pulse2 {
    width: 50px;
    height: 50px;
    animation-delay: 1s;
    border-color: rgba(255, 255, 255, 0.6);
}

.light-pulse.pulse3 {
    width: 50px;
    height: 50px;
    animation-delay: 2s;
    border-color: rgba(255, 107, 53, 0.5);
}

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

/* Light Sparks */
.light-sparks {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}

.spark {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff, 0 0 20px var(--cyan-primary);
    animation: sparkFloat 4s ease-in-out infinite;
}

.spark:nth-child(1) { top: 50%; left: 50%; animation-delay: 0s; --angle: 0deg; }
.spark:nth-child(2) { top: 50%; left: 50%; animation-delay: 0.5s; --angle: 45deg; }
.spark:nth-child(3) { top: 50%; left: 50%; animation-delay: 1s; --angle: 90deg; }
.spark:nth-child(4) { top: 50%; left: 50%; animation-delay: 1.5s; --angle: 135deg; }
.spark:nth-child(5) { top: 50%; left: 50%; animation-delay: 2s; --angle: 180deg; }
.spark:nth-child(6) { top: 50%; left: 50%; animation-delay: 2.5s; --angle: 225deg; }
.spark:nth-child(7) { top: 50%; left: 50%; animation-delay: 3s; --angle: 270deg; }
.spark:nth-child(8) { top: 50%; left: 50%; animation-delay: 3.5s; --angle: 315deg; }

@keyframes sparkFloat {
    0% {
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(0) scale(0);
        opacity: 0;
    }
    20% {
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-30px) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-100px) scale(0.5);
        opacity: 0;
    }
}


/* ============================================
   Contact Us Page - Premium Design
   ============================================ */
.contact-section {
    padding: 140px 20px 100px;
    background: var(--dark-bg);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

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

.contact-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    animation: orbFloat 25s ease-in-out infinite;
}

.contact-orb-1 {
    background: radial-gradient(circle, rgba(0, 212, 255, 0.5), transparent);
    top: -150px;
    left: -150px;
}

.contact-orb-2 {
    background: radial-gradient(circle, rgba(255, 107, 53, 0.35), transparent);
    bottom: -150px;
    right: -150px;
    animation-delay: -12s;
}

.contact-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.contact-particles .contact-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--cyan-primary);
    border-radius: 50%;
    opacity: 0.4;
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.6);
    animation: particleFloat 18s ease-in-out infinite;
}

.contact-particles .contact-particle:nth-child(1) { left: 10%; top: 15%; animation-delay: 0s; }
.contact-particles .contact-particle:nth-child(2) { left: 85%; top: 25%; animation-delay: 3s; }
.contact-particles .contact-particle:nth-child(3) { left: 20%; top: 80%; animation-delay: 6s; }
.contact-particles .contact-particle:nth-child(4) { left: 75%; top: 70%; animation-delay: 9s; }
.contact-particles .contact-particle:nth-child(5) { left: 50%; top: 40%; animation-delay: 12s; }
.contact-particles .contact-particle:nth-child(6) { left: 30%; top: 55%; animation-delay: 15s; }

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-info-card {
    background: linear-gradient(180deg, rgba(20, 25, 45, 0.7) 0%, rgba(10, 14, 39, 0.9) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 24px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.06), transparent 50%);
    pointer-events: none;
}

.contact-info-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.08), transparent);
    pointer-events: none;
}

.contact-info-content { position: relative; z-index: 1; }

.contact-info-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--cyan-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.contact-info-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.contact-info-desc {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-info-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-stat {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-stat-icon svg {
    width: 24px;
    height: 24px;
    color: var(--cyan-primary);
}

.contact-stat-label {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-stat-value {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-primary);
}

.contact-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.3), transparent);
    margin: 32px 0;
    opacity: 0.5;
}

.contact-info-note {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-form-card {
    background: linear-gradient(180deg, rgba(20, 25, 45, 0.6) 0%, rgba(10, 14, 39, 0.9) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 24px;
    padding: 48px 44px;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.contact-form-header {
    margin-bottom: 32px;
}

.contact-form-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-group { margin-bottom: 20px; }

.contact-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--text-primary);
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: var(--font-size-base);
    font-family: inherit;
    transition: var(--transition-base);
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: var(--text-muted);
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-color: var(--cyan-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

.contact-form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 32px;
    margin-top: 8px;
    font-size: var(--font-size-lg);
}

.contact-submit-btn .btn-arrow {
    display: flex;
    transition: transform 0.3s ease;
}

.contact-submit-btn .btn-arrow svg {
    width: 20px;
    height: 20px;
}

.contact-submit-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.contact-error-message {
    padding: 14px 18px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 12px;
    color: #f87171;
    font-size: var(--font-size-sm);
    margin-bottom: 24px;
}

.contact-success-message {
    text-align: center;
    padding: 48px 24px;
}

.contact-success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.2);
    border: 2px solid rgba(34, 197, 94, 0.5);
    border-radius: 50%;
}

.contact-success-icon svg {
    width: 36px;
    height: 36px;
    color: #22c55e;
}

.contact-success-message h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.contact-success-message p {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contact-section { padding: 120px 16px 60px; }
    .contact-info-card,
    .contact-form-card { padding: 32px 24px; }
    .contact-form-row { grid-template-columns: 1fr; }
    .contact-info-title { font-size: var(--font-size-2xl); }
}


/* Responsive */
@media (max-width: 768px) {
    .floating-candles,
    .floating-bitcoins,
    .floating-chart-svg {
        opacity: 0.5;
    }
    
    .btc-icon {
        font-size: 1.2rem;
    }
    
    .candle-stick .body {
        height: 25px;
        width: 6px;
    }
    
    .light-rays-container,
    .energy-ring,
    .center-light-rise {
        display: none;
    }
}

/* Footer Mobile */
@media (max-width: 576px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-column {
        text-align: center;
        align-items: center;
    }
    
    .footer-links-list {
        align-items: center;
    }
    
    .footer-link:hover {
        padding-left: 0;
        transform: translateY(-2px);
    }
}
