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

    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
        line-height: 1.6;
        color: #333;
        overflow-x: hidden;
    }

    .l8uo-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .l8uo-nav {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        height: 70px;
    }

    .l8uo-logo img {
        height: 40px;
        width: auto;
    }

    .l8uo-menu-toggle {
        display: none;
        flex-direction: column;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
    }

    .l8uo-menu-toggle span {
        width: 25px;
        height: 3px;
        background: #333;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

    .l8uo-nav-menu {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .l8uo-nav-menu a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: color 0.3s ease;
        position: relative;
    }

    .l8uo-nav-menu a:hover {
        color: #4285f4;
    }

    .l8uo-nav-menu a.active::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        right: 0;
        height: 2px;
        background: #4285f4;
        border-radius: 1px;
    }

    .l8uo-nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .l8uo-hero-section {
        min-height: 100vh;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    .l8uo-hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('images/hero.jpg');
        background-size: cover;
        background-position: center;
        opacity: 0.3;
    }

    .l8uo-hero-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .l8uo-hero-text h1 {
        font-size: 3.5rem;
        font-weight: 700;
        color: white;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .l8uo-hero-text p {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .l8uo-hero-buttons {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .l8uo-btn-primary {
        background: #4285f4;
        color: white;
        padding: 15px 30px;
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    .l8uo-btn-primary:hover {
        background: #3367d6;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(66, 133, 244, 0.3);
    }

    .l8uo-btn-secondary {
        background: transparent;
        color: white;
        padding: 15px 30px;
        border: 2px solid white;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    .l8uo-btn-secondary:hover {
        background: white;
        color: #333;
        transform: translateY(-2px);
    }

    .l8uo-hero-visual {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .l8uo-hero-image {
        width: 100%;
        max-width: 500px;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        transform: perspective(1000px) rotateY(-10deg);
        transition: transform 0.3s ease;
    }

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

    .l8uo-stats-section {
        padding: 80px 0;
        background: #f8f9fa;
    }

    .l8uo-stats-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .l8uo-stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        text-align: center;
    }

    .l8uo-stat-item {
        background: white;
        padding: 40px 20px;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .l8uo-stat-item:hover {
        transform: translateY(-5px);
    }

    .l8uo-stat-number {
        font-size: 3rem;
        font-weight: 700;
        color: #4285f4;
        margin-bottom: 10px;
    }

    .l8uo-stat-label {
        font-size: 1rem;
        color: #666;
        line-height: 1.4;
    }

    .l8uo-features-section {
        padding: 100px 0;
        background: white;
    }

    .l8uo-features-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

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

    .l8uo-section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
    }

    .l8uo-section-subtitle {
        font-size: 1.2rem;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
    }

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

    .l8uo-feature-card {
        background: #f8f9fa;
        padding: 40px;
        border-radius: 20px;
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }

    .l8uo-feature-card:hover {
        background: white;
        border-color: #4285f4;
        box-shadow: 0 10px 30px rgba(66, 133, 244, 0.1);
        transform: translateY(-5px);
    }

    .l8uo-feature-icon {
        font-size: 3rem;
        margin-bottom: 20px;
        display: block;
    }

    .l8uo-feature-title {
        font-size: 1.5rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 15px;
    }

    .l8uo-feature-desc {
        color: #666;
        line-height: 1.6;
    }

    .l8uo-products-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    }

    .l8uo-products-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .l8uo-products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
        margin-top: 60px;
    }

    .l8uo-product-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .l8uo-product-card:hover {
        transform: translateY(-10px);
    }

    .l8uo-product-header {
        background: linear-gradient(135deg, #4285f4, #34a853);
        color: white;
        padding: 30px;
        text-align: center;
    }

    .l8uo-product-name {
        font-size: 1.8rem;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .l8uo-product-highlight {
        background: rgba(255, 255, 255, 0.2);
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.9rem;
        display: inline-block;
    }

    .l8uo-product-body {
        padding: 30px;
    }

    .l8uo-product-desc {
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .l8uo-product-btn {
        background: #4285f4;
        color: white;
        padding: 12px 25px;
        border: none;
        border-radius: 25px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s ease;
        width: 100%;
    }

    .l8uo-product-btn:hover {
        background: #3367d6;
    }

    .l8uo-testimonials-section {
        padding: 100px 0;
        background: white;
    }

    .l8uo-testimonials-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .l8uo-testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        margin-top: 60px;
    }

    .l8uo-testimonial-card {
        background: #f8f9fa;
        padding: 30px;
        border-radius: 15px;
        border-left: 4px solid #4285f4;
        transition: transform 0.3s ease;
    }

    .l8uo-testimonial-card:hover {
        transform: translateY(-5px);
    }

    .l8uo-testimonial-content {
        font-style: italic;
        color: #555;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .l8uo-testimonial-author {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .l8uo-author-avatar {
        font-size: 2rem;
    }

    .l8uo-author-info h4 {
        font-weight: 600;
        color: #333;
        margin-bottom: 5px;
    }

    .l8uo-author-title {
        color: #666;
        font-size: 0.9rem;
    }

    .l8uo-rating {
        color: #ffc107;
        margin-top: 5px;
    }

    .l8uo-cta-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        text-align: center;
        color: white;
    }

    .l8uo-cta-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .l8uo-cta-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .l8uo-cta-desc {
        font-size: 1.2rem;
        margin-bottom: 40px;
        opacity: 0.9;
    }

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

    .l8uo-footer {
        background: #1a1a1a;
        color: white;
        padding: 60px 0 30px;
    }

    .l8uo-footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .l8uo-footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .l8uo-footer-brand h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: #4285f4;
    }

    .l8uo-footer-brand p {
        color: #ccc;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .l8uo-footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
        color: white;
    }

    .l8uo-footer-section ul {
        list-style: none;
    }

    .l8uo-footer-section ul li {
        margin-bottom: 8px;
    }

    .l8uo-footer-section ul li a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .l8uo-footer-section ul li a:hover {
        color: #4285f4;
    }

    .l8uo-footer-bottom {
        border-top: 1px solid #333;
        padding-top: 20px;
        text-align: center;
        color: #999;
    }

    @media (max-width: 768px) {
        .l8uo-menu-toggle {
            display: flex;
        }

        .l8uo-nav-menu {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: white;
            flex-direction: column;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .l8uo-nav-menu.active {
            display: flex;
        }

        .l8uo-hero-content {
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: center;
        }

        .l8uo-hero-text h1 {
            font-size: 2.5rem;
        }

        .l8uo-hero-buttons {
            justify-content: center;
        }

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

        .l8uo-features-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .l8uo-products-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .l8uo-testimonials-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .l8uo-footer-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .l8uo-cta-title {
            font-size: 2rem;
        }

        .l8uo-cta-buttons {
            flex-direction: column;
            align-items: center;
        }
    }

    @media (max-width: 480px) {
        .l8uo-hero-text h1 {
            font-size: 2rem;
        }

        .l8uo-section-title {
            font-size: 2rem;
        }

        .l8uo-feature-card,
        .l8uo-product-card {
            margin: 0 10px;
        }
    }
    