
        :root {
            --trlmO-primary: #D43C33;
            --trlmO-accent: #FF5C38;
            --trlmO-dark: #1A1A1A;
            --trlmO-light: #F8F9FA;
            --trlmO-text: #333333;
            --trlmO-spacing: 8px;
        }

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

        body {
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
            line-height: 1.6;
            color: var(--trlmO-text);
            background-color: #fff;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* Layout Units */
        .trlmO-kava {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 calc(var(--trlmO-spacing) * 3);
        }

        .trlmO-pahatav {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 calc(var(--trlmO-spacing) * 2);
        }

        .trlmO-atoca {
            max-width: 800px;
            margin: 0 auto;
        }

        /* Navigation Style */
        .trlmO-haqi {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .trlmO-loporo {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: calc(var(--trlmO-spacing) * 2) calc(var(--trlmO-spacing) * 3);
            max-width: 1400px;
            margin: 0 auto;
        }

        .trlmO-logo {
            flex: 0 0 auto;
            height: 32px;
        }

        .trlmO-logo img {
            height: 100%;
            width: auto;
        }

        .trlmO-nav-list {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: calc(var(--trlmO-spacing) * 3);
        }

        .trlmO-nav-link {
            font-size: 15px;
            font-weight: 500;
            color: #555;
            padding: 4px 0;
            position: relative;
        }

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

        .trlmO-nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--trlmO-primary);
        }

        /* Hero Area */
        .trlmO-ayonicu {
            padding: 160px 0 100px;
            background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
            position: relative;
            overflow: hidden;
        }

        .trlmO-yizidi {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 48px;
        }

        .trlmO-yate {
            flex: 1;
            min-width: 320px;
            word-break: break-word;
        }

        .trlmO-yate h1 {
            font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
            line-height: 1.2;
            margin-bottom: 24px;
            color: var(--trlmO-dark);
            font-weight: 800;
        }

        .trlmO-yate p {
            font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
            color: #666;
            margin-bottom: 40px;
            max-width: 600px;
        }

        .trlmO-hero-img {
            flex: 1;
            min-width: 320px;
            border-radius: 24px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.5s ease;
        }

        .trlmO-hero-img:hover {
            transform: perspective(1000px) rotateY(0deg);
        }

        /* CTA Buttons */
        .trlmO-akiqa {
            display: inline-block;
            background: linear-gradient(90deg, var(--trlmO-primary), var(--trlmO-accent));
            color: #fff;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 18px;
            box-shadow: 0 10px 20px rgba(212, 60, 51, 0.3);
        }

        .trlmO-akiqa:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(212, 60, 51, 0.4);
        }

        .trlmO-equfoko {
            display: inline-block;
            margin-left: 20px;
            padding: 16px 40px;
            border: 2px solid #ddd;
            border-radius: 50px;
            font-weight: 600;
            color: var(--trlmO-dark);
        }

        .trlmO-equfoko:hover {
            background: #f0f0f0;
            border-color: #ccc;
        }

        /* Feature Blocks */
        .trlmO-block-wrap {
            padding: 100px 0;
        }

        .trlmO-block-title {
            text-align: center;
            margin-bottom: 64px;
        }

        .trlmO-block-title h2 {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            margin-bottom: 16px;
        }

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

        .trlmO-juzuja {
            background: #fff;
            padding: 40px;
            border-radius: 20px;
            border: 1px solid #eee;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .trlmO-juzuja:hover {
            border-color: var(--trlmO-primary);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            transform: translateY(-10px);
        }

        .trlmO-juzuja h3 {
            font-size: 24px;
            color: var(--trlmO-dark);
        }

        .trlmO-juzuja ul {
            list-style: none;
        }

        .trlmO-juzuja li {
            position: relative;
            padding-left: 24px;
            margin-bottom: 12px;
            color: #666;
            font-size: 15px;
        }

        .trlmO-juzuja li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--trlmO-primary);
            font-weight: bold;
        }

        /* AI Section (Dark Style) */
        .trlmO-ai-section {
            background: #0f1115;
            color: #fff;
            padding: 120px 0;
            border-radius: 60px;
            margin: 40px 20px;
        }

        .trlmO-ai-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 60px;
        }

        .trlmO-ai-text {
            flex: 1;
            min-width: 300px;
        }

        .trlmO-ai-text h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            margin-bottom: 24px;
            background: linear-gradient(to right, #fff, #999);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .trlmO-ai-text p {
            color: #aaa;
            font-size: 1.1rem;
            margin-bottom: 32px;
        }

        .trlmO-ai-img-box {
            flex: 1.2;
            min-width: 320px;
        }

        .trlmO-ai-img-box img {
            border-radius: 20px;
            box-shadow: 0 0 50px rgba(212, 60, 51, 0.2);
        }

        /* Collaboration Section */
        .trlmO-collab-wrap {
            padding: 100px 0;
        }

        .trlmO-collab-flex {
            display: flex;
            flex-wrap: wrap;
            flex-direction: row-reverse;
            align-items: center;
            gap: 60px;
        }

        /* FAQ */
        .trlmO-faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 24px;
            margin-top: 48px;
        }

        .trlmO-faq-item {
            padding: 24px;
            background: #f9f9f9;
            border-radius: 12px;
        }

        .trlmO-faq-item strong {
            display: block;
            margin-bottom: 12px;
            font-size: 18px;
            color: var(--trlmO-dark);
        }

        /* Footer */
        .trlmO-bivoku {
            background: #1a1a1a;
            color: #999;
            padding: 80px 0 40px;
            margin-top: 100px;
        }

        .trlmO-rimuvo {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            padding-bottom: 60px;
            border-bottom: 1px solid #333;
        }

        .trlmO-footer-col {
            flex: 1;
            min-width: 150px;
        }

        .trlmO-footer-col h4 {
            color: #fff;
            margin-bottom: 24px;
            font-size: 16px;
        }

        .trlmO-footer-col a {
            display: block;
            margin-bottom: 12px;
            font-size: 14px;
        }

        .trlmO-footer-col a:hover {
            color: var(--trlmO-primary);
        }

        .trlmO-brand-info {
            flex: 1.5;
            min-width: 250px;
        }

        .trlmO-brand-info span {
            font-size: 24px;
            font-weight: 800;
            color: #fff;
            display: block;
            margin-bottom: 20px;
        }

        .trlmO-copyright {
            text-align: center;
            padding-top: 40px;
            font-size: 13px;
        }

        /* Dynamic Section Marker */
        .trlmO-latest-news {
            background: #f4f4f4;
            padding: 60px 0;
            margin: 40px 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .trlmO-loporo {
                flex-direction: column;
                gap: 20px;
            }
            .trlmO-nav-list {
                justify-content: center;
                gap: 12px;
            }
            .trlmO-nav-link {
                font-size: 13px;
            }
            .trlmO-hero-img {
                transform: none;
            }
            .trlmO-equfoko {
                margin-left: 0;
                margin-top: 15px;
                display: block;
                text-align: center;
            }
            .trlmO-akiqa {
                display: block;
                text-align: center;
            }
            .trlmO-ai-section {
                border-radius: 0;
                margin: 40px 0;
            }
            .trlmO-faq-grid {
                grid-template-columns: 1fr;
            }
        }
    