
        :root {
            --bg-primary: #050505;
            --accent-green: #22C55E;
            --accent-green-dim: #2c7a31;
            --accent-cyan: #00d4ff;
            --text-white: #ffffff;
            --text-grey: #a0a0a0;
            --glass-bg: rgba(255, 255, 255, 0.04);
            --glass-border: rgba(255, 255, 255, 0.08);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-white);
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: default;
        }

        .bg-gradient-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .bg-grid-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
        }

        @keyframes gradient-drift {
            0% {
                background:
                    radial-gradient(circle at 15% 25%, rgba(99, 255, 105, 0.14), transparent 55%),
                    radial-gradient(circle at 85% 75%, rgba(99, 255, 105, 0.20), transparent 55%),
                    radial-gradient(circle at 50% 50%, rgba(99, 255, 105, 0.05), transparent 70%);
            }
            33% {
                background:
                    radial-gradient(circle at 30% 60%, rgba(99, 255, 105, 0.16), transparent 55%),
                    radial-gradient(circle at 70% 20%, rgba(99, 255, 105, 0.22), transparent 55%),
                    radial-gradient(circle at 50% 50%, rgba(99, 255, 105, 0.06), transparent 70%);
            }
            66% {
                background:
                    radial-gradient(circle at 60% 30%, rgba(99, 255, 105, 0.18), transparent 55%),
                    radial-gradient(circle at 20% 80%, rgba(99, 255, 105, 0.14), transparent 55%),
                    radial-gradient(circle at 50% 50%, rgba(99, 255, 105, 0.04), transparent 70%);
            }
            100% {
                background:
                    radial-gradient(circle at 80% 40%, rgba(99, 255, 105, 0.20), transparent 55%),
                    radial-gradient(circle at 10% 60%, rgba(99, 255, 105, 0.16), transparent 55%),
                    radial-gradient(circle at 50% 50%, rgba(99, 255, 105, 0.05), transparent 70%);
            }
        }

        .container {
            max-width: 1280px;
            width: 95%;
            padding: 0 20px 30px 20px;
            position: relative;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 28px;
            margin: 16px auto 0 auto;
            max-width: 1320px;
            width: 96%;
            background: rgba(10, 10, 10, 0.55);
            backdrop-filter: blur(22px) saturate(1.3);
            -webkit-backdrop-filter: blur(22px) saturate(1.3);
            border: 1px solid var(--accent-green);
            border-radius: 28px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
            position: sticky;
            top: 16px;
            z-index: 200;
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: rgba(8, 8, 8, 0.75);
            backdrop-filter: blur(26px) saturate(1.4);
            -webkit-backdrop-filter: blur(26px) saturate(1.4);
            border-color: rgba(0, 255, 13, 0.12);
            box-shadow: 0 8px 50px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.08);
        }

        .logo {
            font-size: 22px;
            font-weight: 800;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
            direction: ltr !important;
        }

        .logo-img {
            height: 38px;
            width: auto;
            object-fit: contain;
            display: block;
        }

        .logo .lt {
            color: var(--text-white);
        }

        .logo .academy {
            color: var(--accent-green);
        }

        nav {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        nav a {
            color: var(--text-grey);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
            cursor: pointer;
            letter-spacing: 0.3px;
        }

        nav a:hover,
        nav a.active {
            color: var(--text-white);
        }

        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent-green);
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        nav a:hover::after,
        nav a.active::after {
            width: 100%;
        }

        .btn-group {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-shrink: 0;
        }

        .btn {
            padding: 9px 22px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 13px;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-block;
            text-align: center;
            border: none;
            letter-spacing: 0.2px;
        }

        .btn-outline {
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: var(--text-white);
            background: transparent;
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: scale(1.04);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .btn-primary {
            background-color: var(--accent-green);
            color: var(--bg-primary);
            border: 1px solid var(--accent-green);
            font-weight: 700;
        }

        .btn-primary:hover {
            box-shadow: 0 0 30px rgba(99, 255, 105, 0.35);
            transform: scale(1.04);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: transparent;
            border: none;
            color: var(--text-white);
            font-size: 20px;
            padding: 6px 8px;
            border-radius: 10px;
            transition: background 0.2s;
        }

        .hamburger:hover {
            background: rgba(255, 255, 255, 0.06);
        }

        .mobile-nav {
            display: none;
            position: absolute;
            top: calc(100% + 10px);
            left: 50%;
            transform: translateX(-50%);
            width: 92%;
            background: rgba(10, 10, 10, 0.92);
            backdrop-filter: blur(24px) saturate(1.3);
            -webkit-backdrop-filter: blur(24px) saturate(1.3);
            flex-direction: column;
            align-items: center;
            padding: 28px 20px 32px;
            gap: 18px;
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            opacity: 0;
            pointer-events: none;
            transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
        }

        .mobile-nav.open {
            display: flex;
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-nav a {
            color: var(--text-grey);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            padding: 10px 0;
            width: 100%;
            text-align: center;
            transition: color 0.3s;
            border-radius: 12px;
        }

        .mobile-nav a:hover,
        .mobile-nav a.active {
            color: var(--text-white);
            background: rgba(9, 255, 0, 0.04);
        }

        .mobile-nav .btn-group {
            flex-direction: column;
            width: 100%;
            margin-top: 6px;
            gap: 10px;
        }

        .mobile-nav .btn-group .btn {
            width: 100%;
            text-align: center;
            padding: 12px;
            font-size: 15px;
        }

        .mobile-lang-btn {
            color: #fff;
            width: 100%;
        }

        .mobile-login-btn {
            color: #fff;
            width: 100%;
        }

        .mobile-start-btn {
            color: #000;
            width: 100%;
        }

       .hero {
            display: grid;
            grid-template-columns: 1.2fr 1fr; 
            gap: 60px; 
            padding-top: 60px; 
            padding-bottom: 90px; 
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .hero-left {
            opacity: 0;
            transform: translateX(-30px);
            animation: fade-up 0.8s forwards 0.5s;
            width: 100%; 
        }

        .hero-left h1 {
            font-size: 64px;
            line-height: 1.1;
            font-weight: 900;
            margin-bottom: 24px;
            letter-spacing: -2px;
        }

        .hero-subtitle {
            color: var(--accent-green);
            margin-bottom: 18px;
            font-weight: 600;
            font-size: 20px;
        }

        .hero-left p {
            color: var(--text-grey);
            font-size: 18px; 
            line-height: 1.7;
            margin-bottom: 24px;
            max-width: 100%;
        }

        .hero-subdescription {
            font-size: 15px; 
            margin-bottom: 35px;
            color: var(--text-grey);
        }

        .hero-btn-container {
            display: flex;
            gap: 15px;
        }

        .hero-primary-btn, .hero-secondary-btn {
            font-size: 16px; 
            padding: 15px 35px;
        }

        .hero-center {
            position: relative;
            height: 550px; 
            display: flex;
            justify-content: center; 
            align-items: center;
            opacity: 0;
            transform: scale(0.92);
            animation: fade-in 1s forwards 0.7s;
            cursor: default;
            overflow: hidden;
            width: 100%;
        }


        .ai-visualization {
            position: relative;
            width: 420px;
            height: 420px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
            transform: scale(0.85);
        }

        .ai-core {
            position: relative;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: radial-gradient(circle at 35% 30%, rgba(99, 255, 105, 0.5), rgba(34, 197, 94, 0.15) 60%, transparent 80%);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10;
            animation: core-pulse 3s ease-in-out infinite;
            box-shadow:
                0 0 60px rgba(34, 197, 94, 0.25),
                0 0 120px rgba(34, 197, 94, 0.10),
                inset 0 0 60px rgba(34, 197, 94, 0.08);
        }

        .ai-core::before {
            content: '';
            position: absolute;
            inset: -8px;
            border-radius: 50%;
            border: 1.5px solid rgba(34, 197, 94, 0.25);
            animation: core-ring-spin 8s linear infinite;
        }

        .ai-core::after {
            content: '';
            position: absolute;
            inset: -20px;
            border-radius: 50%;
            border: 1px solid rgba(34, 197, 94, 0.10);
            animation: core-ring-spin 12s linear infinite reverse;
        }

        @keyframes core-pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 0 60px rgba(34, 197, 94, 0.25), 0 0 120px rgba(34, 197, 94, 0.10), inset 0 0 60px rgba(34, 197, 94, 0.08);
            }
            50% {
                transform: scale(1.04);
                box-shadow: 0 0 80px rgba(34, 197, 94, 0.40), 0 0 160px rgba(34, 197, 94, 0.18), inset 0 0 80px rgba(34, 197, 94, 0.12);
            }
        }

        @keyframes core-ring-spin {
            to {
                transform: rotate(360deg);
            }
        }

        .ai-core .ai-icon {
            font-size: 56px;
            color: var(--accent-green);
            filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.4));
            z-index: 2;
            animation: icon-float 4s ease-in-out infinite;
        }

        @keyframes icon-float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-6px);
            }
        }

        .orbit-ring {
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(34, 197, 94, 0.10);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        .orbit-ring-1 {
            width: 260px;
            height: 260px;
            border-color: rgba(34, 197, 94, 0.12);
            animation: ring-spin 18s linear infinite;
        }
        .orbit-ring-2 {
            width: 320px;
            height: 320px;
            border-color: rgba(0, 212, 255, 0.07);
            animation: ring-spin 24s linear infinite reverse;
        }
        .orbit-ring-3 {
            width: 370px;
            height: 370px;
            border-color: rgba(34, 197, 94, 0.06);
            animation: ring-spin 30s linear infinite;
        }

        @keyframes ring-spin {
            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        .orbit-node {
            position: absolute;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent-green);
            box-shadow: 0 0 16px rgba(34, 197, 94, 0.6);
            top: 50%;
            left: 50%;
            transform-origin: 0 0;
        }

        .orbit-node::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 1px solid rgba(34, 197, 94, 0.20);
            animation: node-glow 2s ease-in-out infinite alternate;
        }

        @keyframes node-glow {
            0% {
                transform: scale(0.8);
                opacity: 0.4;
            }
            100% {
                transform: scale(1.4);
                opacity: 0.9;
            }
        }

        .orbit-node-1 {
            background: var(--accent-cyan);
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
            transform: rotate(0deg) translateX(130px);
            animation: node-orbit-1 12s ease-in-out infinite;
        }
        .orbit-node-1::after {
            border-color: rgba(0, 212, 255, 0.25);
        }

        .orbit-node-2 {
            transform: rotate(120deg) translateX(130px);
            animation: node-orbit-2 14s ease-in-out infinite;
        }

        .orbit-node-3 {
            transform: rotate(240deg) translateX(130px);
            animation: node-orbit-3 16s ease-in-out infinite;
        }

        .orbit-node-4 {
            width: 7px;
            height: 7px;
            background: #a78bfa;
            box-shadow: 0 0 14px rgba(167, 139, 250, 0.5);
            transform: rotate(40deg) translateX(160px);
            animation: node-orbit-4 20s ease-in-out infinite;
        }
        .orbit-node-4::after {
            border-color: rgba(167, 139, 250, 0.20);
        }

        .orbit-node-5 {
            width: 7px;
            height: 7px;
            background: #f472b6;
            box-shadow: 0 0 14px rgba(244, 114, 182, 0.4);
            transform: rotate(160deg) translateX(160px);
            animation: node-orbit-5 22s ease-in-out infinite;
        }
        .orbit-node-5::after {
            border-color: rgba(244, 114, 182, 0.20);
        }

        .orbit-node-6 {
            width: 8px;
            height: 8px;
            background: #fbbf24;
            box-shadow: 0 0 14px rgba(251, 191, 36, 0.4);
            transform: rotate(280deg) translateX(160px);
            animation: node-orbit-6 18s ease-in-out infinite;
        }
        .orbit-node-6::after {
            border-color: rgba(251, 191, 36, 0.20);
        }

        @keyframes node-orbit-1 {
            0%, 100% { transform: rotate(0deg) translateX(130px); }
            50% { transform: rotate(180deg) translateX(130px); }
        }
        @keyframes node-orbit-2 {
            0%, 100% { transform: rotate(120deg) translateX(130px); }
            50% { transform: rotate(300deg) translateX(130px); }
        }
        @keyframes node-orbit-3 {
            0%, 100% { transform: rotate(240deg) translateX(130px); }
            50% { transform: rotate(60deg) translateX(130px); }
        }
        @keyframes node-orbit-4 {
            0%, 100% { transform: rotate(40deg) translateX(160px); }
            50% { transform: rotate(220deg) translateX(160px); }
        }
        @keyframes node-orbit-5 {
            0%, 100% { transform: rotate(160deg) translateX(160px); }
            50% { transform: rotate(340deg) translateX(160px); }
        }
        @keyframes node-orbit-6 {
            0%, 100% { transform: rotate(280deg) translateX(160px); }
            50% { transform: rotate(100deg) translateX(160px); }
        }

        .ai-particle {
            position: absolute;
            border-radius: 50%;
            background: rgba(34, 197, 94, 0.30);
            pointer-events: none;
            animation: particle-float 6s ease-in-out infinite alternate;
        }

        .ai-particle-1 { width: 4px; height: 4px; top: 12%; left: 18%; animation-delay: 0s; background: rgba(0, 212, 255, 0.25); }
        .ai-particle-2 { width: 3px; height: 3px; top: 20%; right: 12%; animation-delay: 1.2s; background: rgba(167, 139, 250, 0.20); }
        .ai-particle-3 { width: 5px; height: 5px; bottom: 15%; left: 10%; animation-delay: 2.4s; background: rgba(244, 114, 182, 0.20); }
        .ai-particle-4 { width: 3px; height: 3px; bottom: 25%; right: 8%; animation-delay: 0.8s; background: rgba(251, 191, 36, 0.20); }
        .ai-particle-5 { width: 4px; height: 4px; top: 45%; left: 6%; animation-delay: 3.2s; background: rgba(34, 197, 94, 0.15); }
        .ai-particle-6 { width: 3px; height: 3px; top: 35%; right: 5%; animation-delay: 1.8s; background: rgba(0, 212, 255, 0.15); }

        @keyframes particle-float {
            0% { transform: translate(0, 0) scale(1); opacity: 0.3; }
            100% { transform: translate(12px, -18px) scale(1.6); opacity: 0.8; }
        }

        .ai-glow-ring {
            position: absolute;
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        .ai-glow-ring-1 {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 70%);
            animation: glow-pulse 4s ease-in-out infinite;
        }

        .ai-glow-ring-2 {
            width: 340px;
            height: 340px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.03) 0%, transparent 70%);
            animation: glow-pulse 6s ease-in-out infinite reverse;
        }

        @keyframes glow-pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
            50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
        }

        .about-section {
            text-align: center;
            padding: 60px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .about-title-margin {
            margin-bottom: 20px;
        }

        .about-sub {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .about-p {
            color: var(--text-grey);
            max-width: 800px;
            margin: 0 auto 15px auto;
            line-height: 1.7;
        }

        .about-p-last {
            color: var(--text-grey);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .ecosystem-section {
            padding: 70px 0;
        }

        .ecosystem-title {
            margin-bottom: 10px;
        }

        .ecosystem-subtitle {
            text-align: center;
            color: var(--text-grey);
            margin-bottom: 50px;
        }

        .coming-soon-indicator {
            font-size: 12px;
            color: var(--accent-green);
        }

        .section-title {
            font-size: 38px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 56px;
            letter-spacing: -1px;
        }

        .section-title span {
            color: var(--accent-green);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--accent-green);
            border-radius: 20px;
            padding: 36px 28px;
            transition: all 0.3s ease;
            text-align: left;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: #555;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
            background: rgba(255, 255, 255, 0.04);
        }

        .feature-icon {
            font-size: 30px;
            color: var(--accent-green);
            margin-bottom: 18px;
            display: block;
        }

        .feature-card h3 {
            font-size: 21px;
            margin-bottom: 14px;
        }

        .feature-card p {
            color: var(--text-grey);
            font-size: 14px;
            line-height: 1.7;
        }

        .features-section {
            padding: 50px 0;
        }

        .features-ai-container {
            margin-bottom: 80px;
            text-align: center;
        }

        .features-ai-title {
            margin-bottom: 20px;
        }

        .features-ai-subtitle {
            margin-bottom: 20px;
            font-size: 20px;
        }

        .features-ai-desc {
            color: var(--text-grey);
            max-width: 700px;
            margin: 0 auto 30px auto;
        }

        .features-ai-tags {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            color: var(--accent-green);
            font-weight: 600;
        }

        .features-auto-container {
            margin-bottom: 80px;
            background: rgba(255, 255, 255, 0.01);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .features-auto-title {
            margin-bottom: 20px;
            font-size: 32px;
        }

        .features-auto-desc {
            text-align: center;
            color: var(--text-grey);
            max-width: 700px;
            margin: 0 auto 40px auto;
        }

        .features-auto-steps {
            margin-top: 0;
        }

        .steps-container {
            display: flex;
            justify-content: space-between;
            gap: 28px;
            margin-top: 36px;
        }

        .step {
            flex: 1;
            text-align: center;
            padding: 16px 10px;
        }

        .step-number {
            width: 56px;
            height: 56px;
            background: var(--accent-green);
            color: #000;
            font-size: 22px;
            font-weight: 800;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 18px auto;
        }

        .step h4 {
            font-size: 19px;
            margin-bottom: 10px;
        }

        .step-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-green);
            font-size: 24px;
        }

        .copytrading-container {
            margin-bottom: 80px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }

        .copytrading-left {
            flex: 1;
            min-width: 300px;
        }

        .copytrading-title {
            text-align: left;
            margin-bottom: 20px;
        }

        .copytrading-subtitle {
            margin-bottom: 20px;
            font-size: 20px;
        }

        .copytrading-desc {
            color: var(--text-grey);
            line-height: 1.7;
        }

        .copytrading-right {
            flex: 1;
            min-width: 300px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: rgba(34, 197, 94, 0.05);
            border: 1px dashed var(--accent-green);
            border-radius: 20px;
            padding: 50px;
        }

        .copytrading-node {
            text-align: center;
            color: var(--text-grey);
        }

        .copytrading-icon {
            font-size: 50px;
            color: var(--text-white);
            margin-bottom: 10px;
        }

        .copytrading-arrow {
            margin: 0 30px;
            color: var(--accent-green);
            font-size: 30px;
            animation: pulse 2s infinite;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--accent-green);
            border-radius: 16px;
            padding: 28px 30px;
            transition: 0.3s;
        }

        .faq-item:hover {
            border-color: #444;
        }

        .faq-item h4 {
            font-size: 17px;
            margin-bottom: 10px;
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .faq-item h4 i {
            color: var(--accent-green);
            font-size: 18px;
        }

        .faq-item p {
            color: var(--text-grey);
            font-size: 14px;
            line-height: 1.6;
        }

        .faq-item-title {
            font-size: 22px;
            margin-bottom: 15px;
        }

        .soon-section {
            padding: 70px 0;
            text-align: center;
        }

        .soon-title {
            margin-bottom: 15px;
        }

        .soon-desc {
            color: var(--text-grey);
            max-width: 600px;
            margin: 0 auto 40px auto;
        }

        .soon-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }

        .soon-badge {
            cursor: default;
        }

        #final-cta {
            padding: 70px 0 60px 0;
            text-align: center;
            border-top: 1px solid #222;
            border-bottom: 1px solid #222;
        }

        #final-cta h2 {
            font-size: 44px;
            margin-bottom: 14px;
        }

        #final-cta p {
            color: var(--text-grey);
            font-size: 17px;
            margin-bottom: 28px;
        }

        #final-cta .btn {
            font-size: 12px;
            padding: 14px 38px;
        }

        .text-accent {
            color: var(--accent-green);
        }

        .cta-btn-container {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .contact-section {
            padding: 70px 0;
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-title {
            margin-bottom: 15px;
        }

        .contact-subtitle {
            color: var(--text-grey);
            margin-bottom: 40px;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            text-align: left;
            background: rgba(255, 255, 255, 0.01);
            padding: 20px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-label {
            color: var(--text-grey);
            font-size: 14px;
            font-weight: 500;
        }

        .form-input {
            padding: 14px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.03);
            color: #fff;
            font-family: inherit;
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .form-input:focus {
            border-color: var(--accent-green);
            box-shadow: 0 0 10px rgba(34, 197, 94, 0.2);
        }

        .form-textarea {
            padding: 14px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.03);
            color: #fff;
            font-family: inherit;
            resize: vertical;
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .form-textarea:focus {
            border-color: var(--accent-green);
            box-shadow: 0 0 10px rgba(34, 197, 94, 0.2);
        }

        .form-submit-btn {
            margin-top: 15px;
            border: none;
            font-family: inherit;
            font-size: 16px;
            cursor: pointer;
        }

        footer {
            margin-top: 36px;
            padding: 36px 0 18px 0;
            text-align: center;
            color: var(--text-grey);
            border-top: 1px solid #1a1a1a;
            width: 100%;
        }

        footer a {
            color: var(--accent-green);
            text-decoration: none;
            font-weight: 600;
        }

        footer a:hover {
            text-decoration: underline;
        }

        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: 40px;
        }

        .footer-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 30px;
            font-size: 13px;
        }

        .footer-disclaimer {
            max-width: 800px;
            text-align: center;
            color: #666;
            font-size: 12px;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        #back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background-color: var(--accent-green);
            color: var(--bg-primary);
            border: none;
            cursor: pointer;
            font-size: 20px;
            box-shadow: 0 4px 25px rgba(99, 255, 105, 0.3);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 999;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        #back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        #back-to-top:hover {
            transform: scale(1.1) translateY(-4px);
            box-shadow: 0 8px 35px rgba(99, 255, 105, 0.5);
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.8;
            }
            50% {
                transform: scale(1.15);
                opacity: 1;
            }
        }

        @keyframes fade-up {
            to {
                opacity: 1;
                transform: translateX(0) translateY(0);
            }
        }

        @keyframes fade-in {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @media (max-width: 1024px) {
            .hero {
                grid-template-columns: 1fr 1fr;
            }
            .hero-center {
                grid-column: span 2;
                height: 420px;
                margin: 20px 0;
            }
            .features-grid {
                grid-template-columns: 1fr 1fr;
            }
            header {
                padding: 10px 20px;
                border-radius: 24px;
                width: 97%;
            }
            nav {
                gap: 22px;
            }
            nav a {
                font-size: 13px;
            }
        }

        @media (max-width: 850px) {
            .hamburger {
                display: flex;
            }
            nav,
            header .desktop-group {
                display: none;
            }

            header {
                padding: 10px 18px;
                border-radius: 20px;
                width: 98%;
                margin-top: 12px;
                top: 12px;
            }
            .logo {
                font-size: 19px;
            }

            .hero {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 0;
                padding-top: 20px;
                padding-bottom: 40px;
            }
            .hero-left h1 {
                font-size: 34px;
            }
            .hero-left p {
                margin: 0 auto 24px auto;
                max-width: 100%;
                font-size: 15px;
            }

            .hero-center {
                grid-column: auto;
                height: 380px;
                margin: 10px 0 20px 0;
                transform: scale(1);
            }

            .features-grid {
                grid-template-columns: 1fr;
            }
            .steps-container {
                flex-direction: row-reverse;
                gap: 0px; 
                margin-top: 24px;
            }

            .step {
                padding: 8px 4px;
            }

            .step-number {
                width: 30px;
                height: 30px;
                font-size: 12px;
                margin-bottom: 10px;
            }

            .step h4 {
                font-size: 10px;
            }

            .step-arrow {
                font-size: 12px;
            }
            .faq-grid {
                grid-template-columns: 1fr;
            }
            .faq-item {
                padding: 22px 20px;
            }
            #final-cta h2 {
                font-size: 28px;
            }
            #final-cta p {
                font-size: 15px;
            }
            .section-title {
                font-size: 30px;
                margin-bottom: 40px;
            }
            #features {
                padding: 40px 0 30px 0;
            }
            #how-it-works {
                padding: 40px 0 30px 0;
            }
            #faq {
                padding: 40px 0 30px 0;
            }
            #final-cta {
                padding: 40px 0 36px 0;
            }

            .mobile-nav {
                width: 96%;
                padding: 22px 16px 26px;
                border-radius: 20px;
                top: calc(100% + 8px);
            }
            .mobile-nav a {
                font-size: 14px;
                padding: 8px 0;
            }
            .mobile-nav .btn-group .btn {
                font-size: 14px;
                padding: 11px;
            }

            #back-to-top {
                width: 44px;
                height: 44px;
                font-size: 16px;
                bottom: 20px;
                right: 20px;
            }
        }

        @media (max-width: 420px) {
            .hero-left h1 {
                font-size: 28px;
            }
            header {
                padding: 8px 14px;
                border-radius: 16px;
            }
            .logo {
                font-size: 16px;
            }
            .btn {
                font-size: 12px;
                padding: 7px 16px;
            }
        }

        html[dir="rtl"] body {
            text-align: right;
        }

        html[dir="rtl"] .hero-left {
            transform: translateX(30px);
        }

        html[dir="rtl"] .hero-right {
            transform: translateX(-30px);
        }

        html[dir="rtl"] .contact-form {
            text-align: right;
        }

        html[dir="rtl"] .form-group {
            text-align: right;
        }

        .btn-outline:hover {
            color: var(--accent-green);
            border: 1px solid rgb(0, 255, 13);
        }

        #lang-toggle-mobile:hover {
            color: var(--accent-green) !important;
        }
