
        /* --- LOGIKA: TILLARNI BOSHQARISH --- */
        [data-lang] {
            display: none;
        }

        html[data-active-lang="uz"] [data-lang="uz"] {
            display: block;
        }

        html[data-active-lang="en"] [data-lang="en"] {
            display: block;
        }

        html[data-active-lang="ru"] [data-lang="ru"] {
            display: block;
        }

        html[data-active-lang="uz"] span[data-lang="uz"],
        html[data-active-lang="en"] span[data-lang="en"],
        html[data-active-lang="ru"] span[data-lang="ru"] {
            display: inline;
        }

        /* --- VARIABLES (UIC Brand Colors) --- */
        :root {
            --bg-color: #0F172A; /* To'q ko'k */
            --surface: #1E293B;
            --surface-hover: #334155;
            --border: rgba(255, 255, 255, 0.1);
            --text-main: #F8FAFC;
            --text-muted: #94A3B8;
            --primary: #0EA5E9; /* UIC moviy rangi */
            --accent: #38BDF8;
            --gradient-text: linear-gradient(135deg, #F8FAFC 0%, #94A3B8 100%);
            --gradient-primary: linear-gradient(135deg, #0EA5E9 0%, #38BDF8 100%);
            --footer-bg: #0B1120;
            --nav-bg: rgba(15, 23, 42, 0.85);
        }

        [data-theme="light"] {
            --bg-color: #FFFFFF;
            --surface: #F1F5F9;
            --surface-hover: #E2E8F0;
            --border: rgba(0, 0, 0, 0.08);
            --text-main: #0F172A;
            --text-muted: #64748B;
            --primary: #0284C7;
            --accent: #0EA5E9;
            --gradient-text: linear-gradient(135deg, #0F172A 0%, #475569 100%);
            --footer-bg: #F8FAFC;
            --nav-bg: rgba(255, 255, 255, 0.9);
        }

        /* --- GLOBAL STYLES --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            transition: all 0.2s ease-in-out;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-main);
            overflow-x: hidden;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        /* Orqa fon effektlari */
        .glow-bg {
            position: fixed;
            top: -20%;
            left: 50%;
            transform: translateX(-50%);
            width: 1200px;
            height: 800px;
            background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
            z-index: -1;
            pointer-events: none;
        }

        /* --- NAVIGATION --- */
        .nav-wrapper {
            position: fixed;
            top: 20px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            z-index: 999;
            padding: 0 20px;
        }

        .site-header {
            width: 100%;
            max-width: 1100px;
            background: var(--nav-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--border);
            border-radius: 100px;
            padding: 8px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.3);
        }

        /* LOGO UCHUN STYLE */
        .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .logo-img {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--border);
        }

        .logo-text {
            font-weight: 800;
            font-size: 1.2rem;
            letter-spacing: -0.5px;
            color: var(--text-main);
            text-transform: uppercase;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn {
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
        }

        .btn-ghost {
            color: var(--text-muted);
        }

        .btn-ghost:hover {
            color: var(--text-main);
            background: var(--surface);
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            border: none;
            box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(14, 165, 233, 0.5);
        }

        .controls {
            display: flex;
            gap: 10px;
            border-right: 1px solid var(--border);
            padding-right: 15px;
        }

        .icon-btn {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            color: var(--text-main);
        }

        select.lang-select {
            background: transparent;
            border: none;
            color: var(--text-main);
            font-weight: 700;
            cursor: pointer;
            outline: none;
        }

        select.lang-select option {
            background: var(--bg-color);
        }

        /* --- HERO SECTION --- */
        .hero-section {
            padding: 180px 20px 80px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero-label {
            padding: 6px 16px;
            border-radius: 50px;
            border: 1px solid var(--border);
            background: rgba(255, 255, 255, 0.03);
            color: var(--primary);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 24px;
            display: inline-block;
        }

        .hero-section h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -1px;
            margin-bottom: 24px;
            background: var(--gradient-text);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-section p {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 650px;
            margin-bottom: 40px;
            line-height: 1.7;
        }

        /* --- STATS SECTION --- */
        .stats-section {
            max-width: 1000px;
            margin: 0 auto 100px;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            text-align: center;
        }

        .stat-card {
            padding: 20px;
            border-right: 1px solid var(--border);
        }

        .stat-card:last-child {
            border-right: none;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-main);
            display: block;
        }

        .stat-label {
            color: var(--text-muted);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* --- BENTO GRID (Portfolio & Akselerator Focused) --- */
        .features-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 140px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .bento-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .card {
            background: var(--surface);
            border: 1px solid var(--border);
            padding: 40px;
            border-radius: 32px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 300px; /* Siqilib qolmaslik uchun minimal balandlik */
        }

        .card:hover {
            border-color: rgba(14, 165, 233, 0.4);
            transform: translateY(-5px);
        }

        /* Kartalar joylashuvi */
        .card-large {
            grid-column: span 2;
        }

        .card-full {
            grid-column: span 3;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 40px;
        }

        .card-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            background: rgba(14, 165, 233, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 24px;
            color: var(--primary);
            flex-shrink: 0; /* Ikonka siqilmasligi uchun */
        }

        .card h3 {
            font-size: 1.5rem;
            margin-bottom: 12px;
            color: var(--text-main);
        }

        .card p {
            color: var(--text-muted);
            font-size: 1rem;
        }

        /* --- FOOTER --- */
        .site-footer {
            background: var(--footer-bg);
            border-top: 1px solid var(--border);
            padding: 80px 0 40px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
        }

        .footer-brand h2 {
            font-weight: 800;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .footer-brand p {
            color: var(--text-muted);
            margin-bottom: 30px;
            max-width: 300px;
            font-size: 0.95rem;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--surface);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            transition: 0.3s;
        }

        .social-icon svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .social-icon:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-3px);
        }

        .footer-col h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: var(--text-main);
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: var(--text-muted);
            font-size: 0.95rem;
            transition: 0.2s;
        }

        .footer-col ul li a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 60px auto 0;
            padding: 30px 20px 0;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* --- RESPONSIVE MOBILE FIX --- */
        .hamburger {
            display: none;
            color: var(--text-main);
            font-size: 1.5rem;
            cursor: pointer;
        }

        @media (max-width: 1024px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .bento-grid {
                grid-template-columns: 1fr 1fr;
            }

            .card-large,
            .card-full {
                grid-column: span 2;
            }
        }

        /* TELEFON EKRANLARI UCHUN MUHIM QISM */
        @media (max-width: 900px) {
            .nav-links {
                display: none; /* Menyuni yashirish */
            }

            .hamburger {
                display: block; /* Gamburgerni ko'rsatish */
            }

            .hero-section h1 {
                font-size: 2.5rem;
            }

            /* Statistika */
            .stats-section {
                grid-template-columns: 1fr;
                border: 1px solid var(--border);
                border-radius: 20px;
                padding: 20px;
            }

            .stat-card {
                border-right: none;
                border-bottom: 1px solid var(--border);
                padding-bottom: 20px;
                margin-bottom: 20px;
            }

            .stat-card:last-child {
                border-bottom: none;
                margin-bottom: 0;
            }

            /* KARTALAR SIQILIB QOLMASLIGI UCHUN FIX */
            .bento-grid {
                grid-template-columns: 1fr; /* Hammasi 1 qator bo'ladi */
            }

            .card-large, .card-full, .card {
                grid-column: span 1; /* Barcha kartalar to'liq kenglikda */
                min-height: auto; /* Balandlik avtomatik */
            }

            .card-full {
                flex-direction: column; /* Rasm va matn ustma-ust */
                text-align: center;
                gap: 20px;
            }

            /* Footer */
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-brand {
                align-items: center;
                display: flex;
                flex-direction: column;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
        }
  