:root {
            --color-primary: #D4AF37; --color-primary-dark: #B8960C; --color-accent: #FFD700;
            --color-dark: #0A0A0A; --color-dark-secondary: #1A1A1A;
            --color-cream: #FAFAFA; --color-cream-dark: #E8E8E8;
            --color-text-dark: #1A1A1A; --color-text-light: #FAFAFA; --color-gray-light: #666666;
            --font-heading: 'Noto Serif SC', serif; --font-body: 'Noto Sans SC', sans-serif;
            --radius-md: 8px; --radius-lg: 16px;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: var(--font-body); color: var(--color-text-dark); line-height: 1.6; background-color: var(--color-cream); }

        .navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #0A0A0A 100%); padding: 1rem 0; box-shadow: 0 2px 20px rgba(212,175,55,0.2); border-bottom: 1px solid rgba(212,175,55,0.3); }
        .navbar-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; }
        .logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
        .logo-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--color-primary), var(--color-accent)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-weight: bold; color: var(--color-dark); font-size: 1.2rem; }
        .logo-text { color: var(--color-text-light); font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; }
        .logo-subtitle { color: var(--color-primary); font-size: 0.75rem; letter-spacing: 2px; }
        .nav-menu { display: flex; list-style: none; gap: 2.5rem; }
        .nav-menu a { color: var(--color-cream); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.3s; position: relative; }
        .nav-menu a:hover { color: var(--color-primary); }
        .nav-menu a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--color-primary), var(--color-accent)); transition: width 0.3s; }
        .nav-menu a:hover::after { width: 100%; }
        .nav-dropdown { position: relative; }
        .nav-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
        .dropdown-menu { display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: rgba(10,10,10,0.97); border: 1px solid rgba(212,175,55,0.3); border-radius: var(--radius-md); min-width: 180px; list-style: none; padding: 0.5rem 0; box-shadow: 0 10px 30px rgba(0,0,0,0.5); z-index: 1001; }
        .nav-dropdown:hover .dropdown-menu { display: block; }
        .dropdown-menu li a { display: block; padding: 0.75rem 1.5rem; color: var(--color-cream-dark); text-decoration: none; font-size: 0.9rem; white-space: nowrap; transition: all 0.3s; }
        .dropdown-menu li a:hover { color: var(--color-primary); background: rgba(212,175,55,0.1); }
        .dropdown-menu li a::after { display: none; }
        .dropdown-menu li.active a { color: var(--color-primary); background: rgba(212,175,55,0.1); }

        .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; z-index: 1002; }
        .hamburger span { width: 25px; height: 2px; background: var(--color-primary); transition: all 0.3s ease; }
        .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
        .mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10,10,10,0.98); z-index: 1002; padding-top: 80px; overflow-y: auto; }
        .mobile-menu.active { display: block; }
        .mobile-nav { list-style: none; padding: 2rem; }
        .mobile-nav > li { border-bottom: 1px solid rgba(212,175,55,0.1); }
        .mobile-nav > li > a { display: block; padding: 1rem 0; color: var(--color-cream); text-decoration: none; font-size: 1.1rem; font-weight: 500; }
        .mobile-nav > li > a:hover { color: var(--color-primary); }
        .mobile-dropdown-toggle { display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
        .mobile-dropdown-toggle::after { content: '+'; color: var(--color-primary); font-size: 1.5rem; transition: transform 0.3s; }
        .mobile-dropdown-toggle.open::after { content: '−'; }
        .mobile-submenu { display: none; padding-left: 1.5rem; padding-bottom: 1rem; }
        .mobile-submenu.active { display: block; }
        .mobile-submenu a { display: block; padding: 0.6rem 0; color: var(--color-cream-dark); text-decoration: none; font-size: 0.95rem; }
        .mobile-submenu a:hover { color: var(--color-primary); }
        .mobile-submenu a.active { color: var(--color-primary); }


        /* Hero资讯 - 右进左出持续滚动 */
        .hero-news-ticker { position: absolute; left: 0; top: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; overflow: hidden; }
        .hero-ticker-track { display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start; gap: 0; padding: 0; margin-top: -80px; overflow: visible; width: max-content; }

        .hero-ticker-item { display: inline-flex; align-items: center; gap: 8px; padding: 5px 14px; background: rgba(26,26,26,0.82); border: 1px solid rgba(212,175,55,0.2); border-radius: 4px; white-space: nowrap; cursor: pointer; opacity: 0; animation: tickerSlide 22s infinite linear; box-shadow: 0 2px 8px rgba(0,0,0,0.3); transition: border-color 0.3s; font-size: 13px; width: max-content; flex-shrink: 0; margin-bottom: 8px; pointer-events: auto; }
        .hero-ticker-item:hover { border-color: rgba(212,175,55,0.5); }
        .hero-ticker-item:nth-child(1) { animation-delay: 0s; }
        .hero-ticker-item:nth-child(2) { animation-delay: -5.5s; }
        .hero-ticker-item:nth-child(3) { animation-delay: -11s; }
        .hero-ticker-item:nth-child(4) { animation-delay: -16.5s; }
        .hero-ticker-item:nth-child(5) { animation-delay: -2.75s; }
        .hero-ticker-item:nth-child(6) { animation-delay: -8.25s; }
        .hero-ticker-item:nth-child(7) { animation-delay: -13.75s; }
        .hero-ticker-item:nth-child(8) { animation-delay: -19.25s; }
        @keyframes tickerSlide {
            0% { transform: translateX(100vw); opacity: 1; }
            92% { transform: translateX(-30%); opacity: 1; }
            100% { transform: translateX(-120%); opacity: 0; }
        }
        .hero-ticker-tag { display: inline-block; padding: 1px 8px; border-radius: 3px; font-size: 0.68rem; font-weight: 600; flex-shrink: 0; }
        .hero-ticker-tag-gold { background: rgba(212,175,55,0.3); color: var(--color-primary); }
        .hero-ticker-tag-blue { background: rgba(100,149,237,0.3); color: #6495ED; }
        .hero-ticker-tag-red { background: rgba(220,53,69,0.3); color: #FF6B6B; }
        .hero-ticker-text { font-size: 0.78rem; color: rgba(250,250,250,0.9); }


        /* Hero */
        .hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 30%, #0F0F0F 70%, #0A0A0A 100%); position: relative; overflow: hidden; padding-top: 112px; }
        .hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 80%; height: 150%; background: radial-gradient(ellipse, rgba(212,175,55,0.1) 0%, transparent 70%); pointer-events: none; }
        .hero::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 60%; height: 100%; background: radial-gradient(ellipse, rgba(255,215,0,0.06) 0%, transparent 60%); pointer-events: none; }
        .hero-content { text-align: center; z-index: 3; padding: 2rem 2rem 3rem; max-width: 900px; position: relative; }
        .hero-subtitle { color: var(--color-primary); font-size: 1rem; letter-spacing: 8px; text-transform: uppercase; margin-bottom: 1rem; font-weight: 500; }
        .hero-title { font-family: var(--font-heading); font-size: 4rem; font-weight: 700; color: var(--color-text-light); margin-bottom: 1rem; text-shadow: 0 0 30px rgba(212,175,55,0.3); }
        .hero-title span { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 50%, var(--color-primary) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .hero-description { color: var(--color-cream-dark); font-size: 1.2rem; margin-bottom: 2.5rem; font-weight: 300; max-width: 600px; margin-left: auto; margin-right: auto; }
        .scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: var(--color-primary); font-size: 0.85rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; opacity: 0.7; }
        .scroll-arrow { width: 30px; height: 30px; border-right: 2px solid var(--color-primary); border-bottom: 2px solid var(--color-primary); transform: rotate(45deg); animation: bounce 2s infinite; }
        @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); } 40% { transform: rotate(45deg) translateY(-10px); } 60% { transform: rotate(45deg) translateY(-5px); } }

        /* 地图区 */
        .map-section { background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%); padding: 3rem 2rem; text-align: center; }
        .map-title { font-family: var(--font-heading); font-size: 1.3rem; color: var(--color-primary); margin-bottom: 2rem; }
        .china-map { max-width: 900px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; position: relative; }
        .map-point { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
        .map-dot { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: var(--color-dark); font-weight: bold; box-shadow: 0 0 15px currentColor; }
        .map-dot-gold { background: var(--color-primary); color: var(--color-dark); }
        .map-dot-blue { background: #6495ED; color: white; }
        .map-dot-teal { background: #20B2AA; color: white; }
        .map-line { flex: 1; max-width: 200px; height: 2px; background: linear-gradient(90deg, var(--color-primary), rgba(212,175,55,0.2)); }
        .map-label { color: #888; font-size: 0.8rem; }
        .map-city { color: var(--color-cream); font-size: 0.9rem; font-weight: 500; }

        /* 卡片区 */
        .section { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; }
        .section-title { font-family: var(--font-heading); font-size: 2.5rem; color: var(--color-dark); text-align: center; margin-bottom: 0.5rem; }
        .section-subtitle { color: var(--color-primary-dark); text-align: center; font-size: 0.95rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 0.5rem; }
        .section-divider { width: 80px; height: 3px; background: linear-gradient(90deg, var(--color-primary), var(--color-accent)); margin: 0 auto 3rem; border-radius: 2px; }

        .factories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2rem; }
        .factory-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.1); transition: all 0.4s; display: flex; flex-direction: column; }
        .factory-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(212,175,55,0.2); }

        /* 崇州卡片 */
        .card-chongzhou { border: 2px solid rgba(212,175,55,0.2); background: white; }
        .card-chongzhou:hover { border-color: var(--color-primary); }
        .card-header-gold { background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%); padding: 2rem; text-align: center; position: relative; overflow: hidden; }
        .card-header-gold::before { content: ''; position: absolute; top: -50%; right: -50%; width: 100%; height: 100%; background: radial-gradient(ellipse, rgba(212,175,55,0.15) 0%, transparent 70%); }
        .card-icon { font-size: 4rem; margin-bottom: 1rem; }
        .card-icon img { max-width: 100%; height: auto; }
        .card-badge { display: inline-block; background: rgba(212,175,55,0.15); border: 1px solid rgba(212,175,55,0.3); color: var(--color-primary); padding: 0.3rem 1rem; border-radius: 20px; font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 0.75rem; }
        .card-header-gold h3 { font-family: var(--font-heading); font-size: 1.8rem; color: var(--color-text-light); margin-bottom: 0.5rem; }
        .card-header-gold h3 span { color: var(--color-primary); }
        .card-header-gold p { color: #888; font-size: 0.9rem; }

        /* 西藏卡片 */
        .card-tibet { border: 2px solid rgba(100,149,237,0.2); background: white; }
        .card-tibet:hover { border-color: #6495ED; box-shadow: 0 20px 60px rgba(100,149,237,0.2); }
        .card-header-blue { background: linear-gradient(135deg, #0A1A3A 0%, #1A2A5A 100%); padding: 2rem; text-align: center; position: relative; overflow: hidden; }
        .card-header-blue::before { content: ''; position: absolute; top: -50%; right: -50%; width: 100%; height: 100%; background: radial-gradient(ellipse, rgba(100,149,237,0.15) 0%, transparent 70%); }
        .card-header-blue h3 { font-family: var(--font-heading); font-size: 1.8rem; color: var(--color-text-light); margin-bottom: 0.5rem; }
        .card-header-blue h3 span { color: #6495ED; }
        .card-header-blue p { color: #888; font-size: 0.9rem; }

        /* 海口卡片 */
        .card-haikou { border: 2px solid rgba(32,178,170,0.2); background: white; }
        .card-haikou:hover { border-color: #20B2AA; box-shadow: 0 20px 60px rgba(32,178,170,0.2); }
        .card-header-teal { background: linear-gradient(135deg, #0A2A2A 0%, #0A3A3A 100%); padding: 2rem; text-align: center; position: relative; overflow: hidden; }
        .card-header-teal::before { content: ''; position: absolute; top: -50%; right: -50%; width: 100%; height: 100%; background: radial-gradient(ellipse, rgba(32,178,170,0.15) 0%, transparent 70%); }
        .card-header-teal h3 { font-family: var(--font-heading); font-size: 1.8rem; color: var(--color-text-light); margin-bottom: 0.5rem; }
        .card-header-teal h3 span { color: #20B2AA; }
        .card-header-teal p { color: #888; font-size: 0.9rem; }

        .card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
        .card-desc { color: var(--color-gray-light); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
        .card-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 1.5rem; }
        .card-stat { text-align: center; padding: 0.75rem; background: #F8F8F8; border-radius: 8px; }
        .card-stat-num { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; }
        .card-stat-label { color: #888; font-size: 0.75rem; margin-top: 0.2rem; }
        .card-chongzhou .card-stat-num { color: var(--color-primary); }
        .card-tibet .card-stat-num { color: #6495ED; }
        .card-haikou .card-stat-num { color: #20B2AA; }
        .card-features { margin-bottom: 1.5rem; flex: 1; }
        .card-features li { color: var(--color-gray-light); font-size: 0.85rem; padding: 0.3rem 0; list-style: none; display: flex; align-items: center; gap: 0.5rem; }
        .card-chongzhou .card-features li::before { content: '✓'; color: var(--color-primary); font-weight: bold; }
        .card-tibet .card-features li::before { content: '✓'; color: #6495ED; font-weight: bold; }
        .card-haikou .card-features li::before { content: '✓'; color: #20B2AA; font-weight: bold; }
        .card-btn { display: block; text-align: center; padding: 0.875rem; border-radius: var(--radius-md); font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: all 0.3s; font-family: var(--font-body); }
        .card-chongzhou .card-btn { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%); color: var(--color-dark); }
        .card-chongzhou .card-btn:hover { box-shadow: 0 5px 20px rgba(212,175,55,0.4); transform: translateY(-2px); }
        .card-tibet .card-btn { background: linear-gradient(135deg, #6495ED 0%, #87CEEB 100%); color: white; }
        .card-tibet .card-btn:hover { box-shadow: 0 5px 20px rgba(100,149,237,0.4); transform: translateY(-2px); }
        .card-haikou .card-btn { background: linear-gradient(135deg, #20B2AA 0%, #40E0D0 100%); color: white; }
        .card-haikou .card-btn:hover { box-shadow: 0 5px 20px rgba(32,178,170,0.4); transform: translateY(-2px); }

        /* 数据总览 */
        .stats-section { background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%); padding: 4rem 2rem; }
        .stats-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: center; }
        .stats-item { padding: 2rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(212,175,55,0.15); border-radius: var(--radius-lg); }
        .stats-num { font-family: var(--font-heading); font-size: 3rem; background: linear-gradient(135deg, var(--color-primary), var(--color-accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 700; }
        .stats-label { color: #888; font-size: 0.9rem; margin-top: 0.5rem; }
        .stats-sub { color: #666; font-size: 0.8rem; margin-top: 0.3rem; }

        /* 底部CTA */
        .cta-section { padding: 4rem 2rem; text-align: center; background: var(--color-cream); }
        .cta-title { font-family: var(--font-heading); font-size: 1.8rem; color: var(--color-dark); margin-bottom: 1rem; }
        .cta-desc { color: var(--color-gray-light); font-size: 1rem; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
        .cta-btn { display: inline-block; padding: 1rem 2.5rem; background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%); color: var(--color-dark); font-weight: 600; font-size: 1rem; text-decoration: none; border-radius: var(--radius-md); transition: all 0.3s; }
        .cta-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(212,175,55,0.4); }

        /* 资质荣誉 */
        .honor-section { padding: 5rem 2rem; background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%); color: var(--color-text-light); text-align: center; }
        .section-header { margin-bottom: 3rem; }
        .section-header h2 { font-family: var(--font-heading); font-size: 2.2rem; color: var(--color-text-light); margin-bottom: 0.5rem; }
        .section-header .subtitle { color: var(--color-primary); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
        .section-divider { width: 60px; height: 2px; background: linear-gradient(90deg, var(--color-primary), var(--color-accent)); margin: 0 auto 2rem; }
        .honor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
        .honor-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(212,175,55,0.2); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s; }
        .honor-card:hover { transform: translateY(-5px); border-color: var(--color-primary); box-shadow: 0 10px 40px rgba(212,175,55,0.2); }
        .honor-img { height: 160px; overflow: hidden; }
        .honor-img img { width: 100%; height: 100%; object-fit: cover; }
        .honor-info { padding: 1rem; text-align: center; }
        .honor-info h3 { font-family: var(--font-heading); font-size: 0.95rem; color: var(--color-cream); margin-bottom: 0.3rem; }
        .honor-info p { color: #888; font-size: 0.8rem; }

        /* 合作伙伴 */
        .partners-section { padding: 5rem 2rem; background: var(--color-cream); text-align: center; overflow: hidden; }
        .partners-section .section-header h2 { color: var(--color-dark); }
        .partners-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
        .partner-card { background: #fff; border: 1px solid #e0e0e0; border-radius: var(--radius-lg); padding: 1.5rem; display: flex; align-items: center; justify-content: center; min-height: 100px; transition: all 0.3s; font-family: var(--font-heading); font-size: 0.9rem; color: #666; overflow: hidden; }
        .partner-card:hover { transform: translateY(-3px); border-color: var(--color-primary); box-shadow: 0 8px 25px rgba(0,0,0,0.1); color: var(--color-primary); }
        .partner-card img { max-width: 100%; height: auto !important; width: auto !important; max-height: 60px; object-fit: contain; }

        /* Footer */
        .footer { background: #0A0A0A; color: var(--color-cream-dark); padding: 3rem 2rem 2rem; text-align: center; border-top: 1px solid rgba(212,175,55,0.2); }
        .footer-logo { font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-primary); margin-bottom: 1rem; }
        .footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
        .footer-links a { color: var(--color-cream-dark); text-decoration: none; transition: color 0.3s; }
        .footer-links a:hover { color: var(--color-primary); }
        .footer-bottom { border-top: 1px solid rgba(212,175,55,0.15); padding-top: 2rem; font-size: 0.9rem; color: #666; }

        @media (max-width: 768px) {
            .nav-menu { display: none; }
            .hamburger { display: flex; }
            .hero-title { font-size: 2.2rem; }
            .hero-ticker-track { margin-top: -40px; padding: 0 4%; }
            .hero-ticker-item { font-size: 11px; padding: 4px 10px; margin-bottom: 6px; }
            .hero-ticker-text { font-size: 0.7rem; }
            .hero-ticker-tag { font-size: 0.6rem; padding: 1px 5px; }
            .factories-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
            .factory-card .card-header-gold,
            .factory-card .card-header-blue,
            .factory-card .card-header-teal { padding: 1rem 0.75rem; }
            .factory-card .card-header-gold h3,
            .factory-card .card-header-blue h3,
            .factory-card .card-header-teal h3 { font-size: 1.1rem; }
            .factory-card .card-header-gold p,
            .factory-card .card-header-blue p,
            .factory-card .card-header-teal p { font-size: 0.75rem; }
            .factory-card .card-icon img { max-width: 75%; height: auto; margin: 0 auto; display: block; }
            .factory-card .card-icon { margin-bottom: 0.5rem; }
            .factory-card .card-badge { font-size: 0.6rem; padding: 0.2rem 0.6rem; margin-bottom: 0.4rem; }
            .factory-card .card-body { padding: 0.75rem; }
            .factory-card .card-desc { font-size: 0.75rem; margin-bottom: 0.75rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
            .factory-card .card-stats { grid-template-columns: repeat(3, 1fr); gap: 0.3rem; margin-bottom: 0.75rem; }
            .factory-card .card-stat { padding: 0.4rem 0.2rem; }
            .factory-card .card-stat-num { font-size: 0.85rem; }
            .factory-card .card-stat-label { font-size: 0.6rem; }
            .factory-card .card-features { margin-bottom: 0.75rem; }
            .factory-card .card-features li { font-size: 0.7rem; padding: 0.15rem 0; }
            .factory-card .card-btn { padding: 0.5rem; font-size: 0.75rem; }
            .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
            .section { padding: 3rem 1.5rem; }
        }

        @media (max-width: 480px) {
            .hero-ticker-track { margin-top: -30px; }
            .hero-ticker-item { font-size: 10px; padding: 3px 8px; margin-bottom: 5px; }
            .hero-ticker-text { font-size: 0.65rem; }
            .hero-ticker-tag { font-size: 0.55rem; padding: 1px 4px; }

            .factories-grid { grid-template-columns: repeat(3, 1fr); gap: 0.4rem; }
            .factory-card .card-icon { margin-bottom: 0.3rem; }
            .factory-card .card-icon img { width: 100% !important; height: auto !important; max-width: 100%; margin: 0 auto; display: block; }
            .factory-card { overflow: hidden; word-wrap: break-word; min-width: 0; }
            .factory-card * { max-width: 100%; box-sizing: border-box; }
            .factory-card .card-header-gold,
            .factory-card .card-header-blue,
            .factory-card .card-header-teal { padding: 0.35rem 0.25rem; overflow: hidden; }
            .factory-card .card-header-gold h3,
            .factory-card .card-header-blue h3,
            .factory-card .card-header-teal h3 { font-size: 0.65rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
            .factory-card .card-header-gold p,
            .factory-card .card-header-blue p,
            .factory-card .card-header-teal p { font-size: 0.5rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
            .factory-card .card-badge { font-size: 0.4rem; padding: 0.08rem 0.25rem; margin-bottom: 0.15rem; letter-spacing: 0.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
            .factory-card .card-body { padding: 0.3rem 0.25rem; overflow: hidden; }
            .factory-card .card-desc { font-size: 0.5rem; margin-bottom: 0.25rem; -webkit-line-clamp: 2; line-height: 1.2; }
            .factory-card .card-stats { grid-template-columns: repeat(3, 1fr); gap: 0.1rem; margin-bottom: 0.25rem; }
            .factory-card .card-stat { padding: 0.15rem 0.05rem; }
            .factory-card .card-stat-num { font-size: 0.5rem; }
            .factory-card .card-stat-label { font-size: 0.4rem; }
            .factory-card .card-features { display: none; }
            .factory-card .card-btn { padding: 0.2rem; font-size: 0.5rem; }

            .partners-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
            .honor-grid { grid-template-columns: repeat(4, 1fr); gap: 0.4rem; }
            .honor-img { height: 90px; }
            .honor-info { padding: 0.35rem; }
            .honor-info h3 { font-size: 0.6rem; }
            .honor-info p { font-size: 0.5rem; }
            .section { padding: 2rem 1rem; }
        }