/*
Theme Name: 依米智能
Theme URI: https://yimi-doors.com
Author: 依米智能
Author URI: https://yimi-doors.com
Description: 依米智能工业门定制专家 - WordPress主题。20年深耕工业门领域，提供高效、安全、节能的智能工业门解决方案。
Version: 1.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yimi-doors
Tags: one-column, custom-menu, featured-images, threaded-comments, translation-ready
*/

:root {
            --primary-dark: #0a1628;
            --primary-blue: #1a3a6c;
            --accent-orange: #ff6b35;
            --accent-gold: #f7b731;
            --text-light: #ffffff;
            --text-gray: #94a3b8;
            --bg-light: #f8fafc;
            --gradient-primary: linear-gradient(135deg, #0a1628 0%, #1a3a6c 100%);
            --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #f7b731 100%);
            --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --shadow-hover: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-light);
            color: var(--primary-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 2rem;
            transition: all 0.3s ease;
            background: transparent;
        }

        .nav.scrolled {
            background: rgba(10, 22, 40, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            color: var(--text-light);
        }

        .logo-img {
            width: 60px;
            height: 60px;
            object-fit: contain;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 0.05em;
        }

        .logo-sub {
            font-size: 0.7rem;
            color: var(--text-gray);
            letter-spacing: 0.1em;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-orange);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent-orange);
        }

        .nav-cta {
            background: var(--gradient-accent);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
        }

        .mobile-toggle span {
            width: 25px;
            height: 2px;
            background: white;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: var(--gradient-primary);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.5;
        }

        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--accent-orange);
            border-radius: 50%;
            opacity: 0.3;
            animation: float 15s infinite ease-in-out;
        }

        .particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
        .particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
        .particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 22s; }
        .particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 19s; }
        .particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 21s; }
        .particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 17s; }
        .particle:nth-child(7) { left: 70%; animation-delay: 2.5s; animation-duration: 23s; }
        .particle:nth-child(8) { left: 80%; animation-delay: 1.5s; animation-duration: 20s; }
        .particle:nth-child(9) { left: 90%; animation-delay: 4.5s; animation-duration: 18s; }
        .particle:nth-child(10) { left: 15%; animation-delay: 3.5s; animation-duration: 24s; }

        @keyframes float {
            0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 0.3; }
            90% { opacity: 0.3; }
            100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 10;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text {
            color: var(--text-light);
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 107, 53, 0.15);
            border: 1px solid rgba(255, 107, 53, 0.3);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--accent-orange);
            margin-bottom: 1.5rem;
        }

        .hero-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--accent-orange);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .hero h1 span {
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 1.2rem;
            color: var(--text-gray);
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .btn-primary {
            background: var(--gradient-accent);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
        }

        .stat-item {
            text-align: left;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--accent-orange);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-gray);
            margin-top: 0.5rem;
        }

        .hero-visual {
            position: relative;
            height: 500px;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        /* 轮播图样式 */
        .hero-carousel {
            position: relative;
            flex: 1;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        .carousel-track {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
        }

        .carousel-slide.active {
            opacity: 1;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.5rem;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
        }

        .carousel-tag {
            color: white;
            font-size: 1rem;
            font-weight: 500;
            background: rgba(255, 107, 53, 0.9);
            padding: 0.4rem 1rem;
            border-radius: 20px;
        }

        .carousel-dots {
            position: absolute;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;
        }

        .carousel-dots .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .carousel-dots .dot.active {
            background: var(--accent-orange);
            width: 30px;
            border-radius: 5px;
        }

        .carousel-arrows {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 1rem;
            pointer-events: none;
        }

        .carousel-arrow {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.9);
            border: none;
            cursor: pointer;
            font-size: 1.2rem;
            color: var(--primary-blue);
            pointer-events: auto;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-arrow:hover {
            background: var(--accent-orange);
            color: white;
        }

        /* 工厂优势点样式 */
        .factory-advantages {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.8rem;
        }

        .advantage-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            transition: all 0.3s;
        }

        .advantage-item:hover {
            background: rgba(255, 107, 53, 0.2);
            border-color: var(--accent-orange);
            transform: translateY(-3px);
        }

        .advantage-icon {
            font-size: 1.8rem;
            flex-shrink: 0;
        }

        .advantage-content h4 {
            color: white;
            font-size: 0.95rem;
            margin: 0 0 0.2rem 0;
            font-weight: 600;
        }

        .advantage-content p {
            color: rgba(255,255,255,0.8);
            font-size: 0.8rem;
            margin: 0;
            line-height: 1.3;
        }

        @media (max-width: 768px) {
            .hero-visual {
                height: auto;
            }
            .hero-carousel {
                height: 200px;
            }
            .factory-advantages {
                grid-template-columns: 1fr;
            }
            .advantage-item {
                padding: 0.8rem;
            }
        }

        /* Section Styles */
        .section {
            padding: 6rem 2rem;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 107, 53, 0.1);
            color: var(--accent-orange);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .section-description {
            font-size: 1.1rem;
            color: #64748b;
            line-height: 1.7;
        }

        /* Brand Story Section */
        .brand-story {
            background: linear-gradient(180deg, #0a1628 0%, #1a3a6c 50%, #f8fafc 50%, #f8fafc 100%);
            position: relative;
        }

        .brand-story-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* Story Hero */
        .story-hero {
            text-align: center;
            padding: 5rem 2rem 4rem;
            color: white;
        }

        .story-badge {
            display: inline-block;
            background: rgba(255, 107, 53, 0.2);
            border: 1px solid rgba(255, 107, 53, 0.4);
            color: var(--accent-orange);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 2rem;
        }

        .story-main-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 0.5rem;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .story-tagline {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--accent-orange);
            letter-spacing: 0.15em;
            margin-top: 1rem;
        }

        .story-sub-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .story-intro {
            font-size: 1.2rem;
            opacity: 0.7;
            font-style: italic;
        }

        /* Story Section */
        .story-section {
            background: white;
            border-radius: 30px;
            padding: 4rem 4rem 3rem;
            margin: 0 2rem;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
        }

        /* Story Content */
        .story-content-wrap {
            position: relative;
            max-width: 820px;
            margin: 0 auto;
        }

        .story-flower-image {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .story-flower-img {
            width: 200px;
            height: auto;
            max-width: 100%;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        .story-para-first {
            font-size: 1.15rem;
            color: #1e293b;
            font-weight: 500;
        }

        .story-paragraph {
            font-size: 1.1rem;
            color: #334155;
            line-height: 2.1;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 0;
        }

        .story-lead {
            position: relative;
            background: linear-gradient(135deg, #f8fafc, #fff7ed);
            border-radius: 16px;
            padding: 2rem 2rem 1.5rem 3rem;
            margin-bottom: 2rem;
            border-left: 4px solid var(--accent-orange);
        }

        .story-quote-mark {
            position: absolute;
            top: 0.5rem;
            left: 0.8rem;
            font-size: 3rem;
            color: var(--accent-orange);
            opacity: 0.3;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .story-lead p {
            font-size: 1.1rem;
            color: #1e293b;
            line-height: 2;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 0;
        }

        .story-lead p:last-child {
            margin-bottom: 0;
        }

        .story-em {
            color: var(--accent-orange);
            font-weight: 700;
        }

        .story-highlight-box {
            background: linear-gradient(135deg, #0a1628, #1a3a6c);
            border-radius: 14px;
            padding: 1.8rem 2rem;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .story-highlight-box p {
            font-size: 1.2rem;
            color: white;
            line-height: 1.8;
        }

        .story-highlight-box .story-em {
            color: var(--accent-gold);
        }

        .story-closing {
            text-align: center;
            padding-top: 1.8rem;
            border-top: 1px solid #e2e8f0;
            margin-top: 2.5rem;
        }

        .story-closing-text {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--accent-orange);
            margin-bottom: 1.5rem;
            letter-spacing: 0.08em;
        }

        .story-logo {
            width: 200px;
            height: auto;
            object-fit: contain;
            opacity: 0.85;
            transition: opacity 0.3s ease;
        }

        .story-logo:hover {
            opacity: 1;
        }

        /* Flower Story */
        .story-flower {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 3rem;
            align-items: start;
            margin-bottom: 3rem;
        }

        .flower-icon {
            font-size: 5rem;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .flower-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 1.5rem;
        }

        .flower-story p {
            font-size: 1.05rem;
            color: #475569;
            line-height: 2;
            margin-bottom: 1rem;
        }

        .highlight-text {
            color: var(--accent-orange) !important;
            font-weight: 600;
        }

        /* Flower Bloom */
        .flower-bloom {
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 3rem;
            align-items: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: linear-gradient(135deg, #0a1628 0%, #1a3a6c 100%);
            border-radius: 20px;
            color: white;
        }

        .bloom-illustration {
            position: relative;
            width: 150px;
            height: 150px;
            margin: 0 auto;
        }

        .petal {
            position: absolute;
            width: 50px;
            height: 70px;
            border-radius: 50% 50% 50% 50%;
            top: 50%;
            left: 50%;
            transform-origin: center bottom;
        }

        .petal-1 {
            background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
            transform: translate(-50%, -100%) rotate(0deg);
        }

        .petal-2 {
            background: linear-gradient(135deg, #ffd93d, #f7b731);
            transform: translate(-50%, -100%) rotate(90deg);
        }

        .petal-3 {
            background: linear-gradient(135deg, #6bcfff, #4a9eff);
            transform: translate(-50%, -100%) rotate(180deg);
        }

        .petal-4 {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            transform: translate(-50%, -100%) rotate(270deg);
        }

        .bloom-center {
            position: absolute;
            width: 30px;
            height: 30px;
            background: #ffd93d;
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 20px rgba(255, 217, 61, 0.5);
        }

        .bloom-text h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--accent-orange);
        }

        .bloom-text p {
            font-size: 1rem;
            line-height: 1.8;
        }

        .color-red { color: #ff6b6b; font-weight: 700; }
        .color-yellow { color: #ffd93d; font-weight: 700; }
        .color-blue { color: #6bcfff; font-weight: 700; }
        .color-white { color: #f8f9fa; font-weight: 700; }

        /* Flower Wisdom */
        .flower-wisdom {
            text-align: center;
            padding: 2rem;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }

        .wisdom-quote p {
            font-size: 1.1rem;
            color: #475569;
            line-height: 2;
            margin-bottom: 0.5rem;
        }

        .wisdom-quote p:last-child {
            font-weight: 700;
            color: var(--primary-dark);
            font-size: 1.2rem;
        }

        /* Philosophy Section */
        .philosophy-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        .philosophy-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
        }

        .philosophy-card.highlight {
            background: var(--gradient-primary);
            color: white;
            border: none;
        }

        .philosophy-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .philosophy-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .philosophy-card.highlight .philosophy-title {
            color: var(--accent-orange);
        }

        .philosophy-content p {
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 0.75rem;
            color: #475569;
        }

        .philosophy-card.highlight .philosophy-content p {
            color: rgba(255, 255, 255, 0.85);
        }

        .philosophy-highlight {
            color: var(--accent-orange) !important;
            font-weight: 700;
            font-size: 1.05rem !important;
        }

        /* Customers Section */
        .customers-section {
            margin-top: 4rem;
            text-align: center;
        }

        .customers-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 2rem;
        }

        .customers-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            text-align: left;
        }

        .customer-card {
            background: white;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            border-left: 4px solid var(--accent-orange);
            display: flex;
            gap: 1rem;
        }

        .customer-icon {
            font-size: 2rem;
            flex-shrink: 0;
        }

        .customer-card p {
            font-size: 0.95rem;
            color: #475569;
            line-height: 1.7;
        }

        .customer-card strong {
            color: var(--primary-dark);
        }

        .customers-conclusion {
            margin-top: 2rem;
            padding: 2rem;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 183, 49, 0.05));
            border-radius: 16px;
        }

        .customers-conclusion p {
            font-size: 1rem;
            color: #475569;
            line-height: 1.8;
            margin-bottom: 0.5rem;
        }

        .highlight-bold {
            font-weight: 700;
            color: var(--primary-dark) !important;
        }

        .emphasis {
            font-size: 1.1rem !important;
            font-weight: 700;
            color: var(--accent-orange) !important;
        }

        /* Logo Story Section */
        .logo-story-section {
            margin-top: 4rem;
            text-align: center;
            padding: 3rem;
            background: var(--gradient-primary);
            border-radius: 24px;
            color: white;
        }

        .logo-story-badge {
            display: inline-block;
            background: rgba(255, 107, 53, 0.2);
            color: var(--accent-orange);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .logo-story-title {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 2rem;
        }

        .logo-explain {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .logo-icon-large {
            width: 200px;
            height: 200px;
            object-fit: contain;
            flex-shrink: 0;
        }

        .logo-text-content {
            text-align: left;
        }

        .logo-text-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 0.5rem;
        }

        .logo-highlight {
            font-size: 1.3rem !important;
            font-weight: 700;
            color: var(--accent-orange);
        }

        /* Door Section */
        .door-section {
            margin-top: 4rem;
            text-align: center;
        }

        .door-intro {
            margin-bottom: 2rem;
        }

        .door-intro p {
            font-size: 1.1rem;
            color: #475569;
            line-height: 1.8;
            margin-bottom: 0.5rem;
        }

        .door-intro strong {
            color: var(--primary-dark);
        }

        .doors-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .door-item {
            background: white;
            border-radius: 20px;
            padding: 2rem 1.5rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .door-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }

        .door-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .door-item h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 0.75rem;
        }

        .door-item p {
            font-size: 0.9rem;
            color: #64748b;
            line-height: 1.6;
        }

        /* Final Statement */
        .final-statement {
            margin-top: 4rem;
            text-align: center;
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #0a1628 0%, #1a3a6c 100%);
            border-radius: 24px;
            color: white;
        }

        .statement-main {
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 2rem;
        }

        .statement-main strong {
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .statement-division {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .statement-division .line {
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
        }

        .statement-division .icon {
            font-size: 2rem;
        }

        .statement-sub {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 0.5rem;
        }

        .statement-sub:last-child {
            font-size: 1.3rem;
            font-weight: 700;
        }

        .statement-sub strong {
            color: var(--accent-orange);
        }

        /* Brand Values */
        .brand-values {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .value-card {
            text-align: center;
            padding: 2.5rem 1.5rem;
            background: white;
            border-radius: 20px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            border-color: var(--accent-orange);
        }

        .value-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
        }

        .value-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 0.75rem;
        }

        .value-desc {
            font-size: 0.9rem;
            color: #64748b;
            line-height: 1.7;
        }

        /* Products Section */
        .products {
            background: var(--bg-light);
        }

        .products-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .product-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .product-card:hover::before {
            transform: scaleX(1);
        }

        .product-image {
            height: 180px;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .product-image img.product-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            position: relative;
            z-index: 1;
        }

        .product-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: linear-gradient(to top, white, transparent);
        }

        .product-icon {
            font-size: 4rem;
            opacity: 0.3;
        }

        .product-content {
            padding: 1.5rem;
        }

        .product-category {
            font-size: 0.75rem;
            color: var(--accent-orange);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.5rem;
        }

        .product-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 0.75rem;
        }

        .product-description {
            font-size: 0.85rem;
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .product-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .product-feature {
            font-size: 0.75rem;
            background: #f1f5f9;
            color: #475569;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
        }

        .product-arrow {
            position: absolute;
            bottom: 1.5rem;
            right: 1.5rem;
            width: 36px;
            height: 36px;
            background: var(--gradient-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .product-card:hover .product-arrow {
            opacity: 1;
            transform: translateX(0);
        }

        /* Features Section */
        .features {
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
        }

        .features::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
        }

        .features .section-title,
        .features .section-description {
            color: white;
        }

        .features-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 10;
        }

        .feature-card {
            text-align: center;
            padding: 2.5rem 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-accent);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
        }

        .feature-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.75rem;
        }

        .feature-description {
            font-size: 0.9rem;
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* Knowledge Section (SEO Blog) */
        .knowledge {
            background: white;
        }

        .knowledge-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .knowledge-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .knowledge-tab {
            padding: 0.75rem 1.5rem;
            background: var(--bg-light);
            border: 2px solid transparent;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            color: #64748b;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .knowledge-tab:hover,
        .knowledge-tab.active {
            background: white;
            border-color: var(--accent-orange);
            color: var(--accent-orange);
        }

        .knowledge-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .knowledge-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid #e2e8f0;
        }

        .knowledge-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .knowledge-image {
            height: 200px;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .knowledge-image-icon {
            font-size: 4rem;
            opacity: 0.3;
        }

        .knowledge-category {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: var(--accent-orange);
            color: white;
            padding: 0.35rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .knowledge-content {
            padding: 1.5rem;
        }

        .knowledge-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 0.75rem;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .knowledge-excerpt {
            font-size: 0.9rem;
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 1rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .knowledge-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 1rem;
            border-top: 1px solid #e2e8f0;
        }

        .knowledge-date {
            font-size: 0.8rem;
            color: #94a3b8;
        }

        .knowledge-views {
            font-size: 0.8rem;
            color: #94a3b8;
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .knowledge-featured {
            /* Unified card size with others */
        }

        .knowledge-featured .knowledge-image {
            height: 180px;
        }

        .knowledge-featured .knowledge-content {
            padding: 1.5rem;
        }

        .knowledge-featured .knowledge-title {
            font-size: 1.05rem;
            -webkit-line-clamp: 2;
        }

        .knowledge-featured .knowledge-excerpt {
            -webkit-line-clamp: 2;
        }

        .knowledge-more {
            text-align: center;
            margin-top: 3rem;
        }

        .knowledge-more .btn-primary {
            background: var(--gradient-accent);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
        }

        .knowledge-more .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
        }

        /* Applications Section */
        .applications {
            background: var(--bg-light);
        }

        .applications-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .application-card {
            position: relative;
            height: 300px;
            border-radius: 24px;
            overflow: hidden;
            cursor: pointer;
            group: true;
        }

        .application-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-primary);
            transition: transform 0.4s ease;
        }

        .application-card:hover .application-bg {
            transform: scale(1.1);
        }

        .application-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(10, 22, 40, 0.9), rgba(10, 22, 40, 0.3));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
        }

        .application-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            position: absolute;
            top: 2rem;
            right: 2rem;
            opacity: 0.3;
        }

        .application-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.5rem;
        }

        .application-description {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .application-tags {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
            flex-wrap: wrap;
        }

        .application-tag {
            font-size: 0.75rem;
            background: rgba(255, 107, 53, 0.2);
            color: var(--accent-orange);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
        }

        /* Stats Section */
        .stats {
            background: var(--bg-light);
            padding: 4rem 2rem;
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .stats-card {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 20px;
            box-shadow: var(--shadow-card);
        }

        .stats-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .stats-number {
            font-size: 3rem;
            font-weight: 900;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        .stats-label {
            font-size: 1rem;
            color: #64748b;
            margin-top: 0.5rem;
        }

        /* CTA Section */
        .cta {
            background: var(--gradient-primary);
            padding: 6rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(255, 107, 53, 0.1), transparent 20%);
            animation: rotate 10s linear infinite;
        }

        .cta-content {
            position: relative;
            z-index: 10;
        }

        .cta h2 {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
        }

        .cta p {
            font-size: 1.2rem;
            color: var(--text-gray);
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta .btn-primary {
            font-size: 1.1rem;
            padding: 1.25rem 2.5rem;
        }

        .cta .btn-secondary {
            font-size: 1.1rem;
            padding: 1.25rem 2.5rem;
        }

        /* Contact Section */
        .contact {
            background: var(--bg-light);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info h3 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 1.5rem;
        }

        .contact-info p {
            color: #64748b;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .contact-items {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 107, 53, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--accent-orange);
        }

        .contact-text h4 {
            font-size: 0.9rem;
            color: #64748b;
            font-weight: 500;
            margin-bottom: 0.25rem;
        }

        .contact-text p {
            font-size: 1.1rem;
            color: var(--primary-dark);
            font-weight: 600;
            margin: 0;
        }

        .contact-form {
            background: white;
            padding: 3rem;
            border-radius: 24px;
            box-shadow: var(--shadow-card);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 0.5rem;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 1rem 1.25rem;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
            background: #f8fafc;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--accent-orange);
            background: white;
            box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
        }

        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-submit {
            width: 100%;
            background: var(--gradient-accent);
            color: white;
            padding: 1.25rem;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
        }

        /* Footer */
        .footer {
            background: var(--primary-dark);
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
        }

        .footer-brand .logo {
            margin-bottom: 1.5rem;
        }

        .footer-brand p {
            color: var(--text-gray);
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--accent-orange);
            transform: translateY(-3px);
        }

        .footer-column h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: white;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-orange);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            color: var(--text-gray);
            font-size: 0.85rem;
        }

        /* Scroll Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .knowledge-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .knowledge-featured {
                /* Unified with other cards - no special span */
            }

            .applications-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .brand-highlight {
                grid-template-columns: 1fr;
            }

            .brand-values {
                grid-template-columns: repeat(2, 1fr);
            }

            .timeline::before {
                left: 20px;
            }

            .timeline-item,
            .timeline-item:nth-child(odd),
            .timeline-item:nth-child(even) {
                flex-direction: row;
            }

            .timeline-content {
                width: calc(100% - 60px);
                margin-left: 50px;
            }

            .timeline-content::before,
            .timeline-item:nth-child(odd) .timeline-content::before,
            .timeline-item:nth-child(even) .timeline-content::before {
                left: -42px !important;
                right: auto !important;
            }
        }

        @media (max-width: 768px) {
            /* Navigation Mobile */
            .nav {
                padding: 0.75rem 1rem;
            }
            .nav-container {
                padding: 0 0.5rem;
            }
            .logo-img {
                width: 36px;
                height: 36px;
            }
            .logo-text {
                font-size: 1.1rem;
            }
            .logo-sub {
                font-size: 0.6rem;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(10, 22, 40, 0.98);
                flex-direction: column;
                padding: 1rem;
                gap: 0.75rem;
                border-top: 1px solid rgba(255,255,255,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                text-align: center;
            }
            .nav-links a {
                display: block;
                padding: 0.5rem;
                font-size: 1rem;
            }
            .nav-cta {
                display: none;
            }
            .mobile-toggle {
                display: flex;
            }

            /* Hero Mobile */
            .hero {
                padding: 5rem 1rem 3rem;
                min-height: auto;
            }
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero h1 {
                font-size: 2rem;
                line-height: 1.3;
            }
            .hero-description {
                font-size: 0.95rem;
            }
            .hero-buttons {
                justify-content: center;
                flex-wrap: wrap;
                gap: 0.75rem;
            }
            .hero-stats {
                justify-content: center;
                flex-wrap: wrap;
                gap: 1rem;
            }
            .stat-item {
                min-width: 80px;
            }
            .stat-number {
                font-size: 1.5rem;
            }
            .hero-visual {
                display: flex;
                flex-direction: column;
                margin-top: 2rem;
            }
            .hero-carousel {
                height: 180px;
                border-radius: 16px;
            }
            .factory-advantages {
                grid-template-columns: 1fr;
                gap: 0.5rem;
            }
            .advantage-item {
                padding: 0.75rem;
                font-size: 0.85rem;
            }

            /* Section Mobile */
            .section {
                padding: 3rem 1rem;
            }
            .section-badge {
                font-size: 0.75rem;
                padding: 0.4rem 0.8rem;
            }
            .section-title {
                font-size: 1.75rem;
                margin-bottom: 2rem;
            }
            .section-description {
                font-size: 0.95rem;
            }

            /* Products Grid Mobile */
            .products-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .product-card {
                padding: 1rem;
            }
            .product-icon {
                font-size: 2rem;
            }
            .product-card h3 {
                font-size: 1rem;
            }
            .product-card p {
                font-size: 0.8rem;
            }

            /* Features Grid Mobile */
            .features-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .feature-icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
            .feature-card h3 {
                font-size: 1rem;
            }

            /* Knowledge Grid Mobile */
            .knowledge-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .knowledge-featured,
            .knowledge-card {
                padding: 1.25rem;
            }
            .knowledge-featured h3,
            .knowledge-card h3 {
                font-size: 1rem;
            }
            .knowledge-more {
                margin-top: 2rem;
            }

            /* Applications Grid Mobile */
            .applications-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .application-card {
                padding: 1.5rem;
            }
            .application-card .app-icon {
                font-size: 2.5rem;
            }
            .application-card h3 {
                font-size: 1.1rem;
            }

            /* Stats Container Mobile */
            .stats-container {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .stat-card {
                padding: 1.25rem;
            }
            .stat-card .number {
                font-size: 2rem;
            }

            /* Brand Section Mobile */
            .brand-highlight {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 2rem 1.5rem;
            }
            .brand-hero {
                padding: 2rem 1rem;
            }
            .brand-hero h2 {
                font-size: 1.75rem;
            }
            .brand-values {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .value-item {
                padding: 1rem;
            }

            /* Timeline Mobile */
            .timeline-section {
                padding: 2rem 1rem;
            }
            .timeline::before {
                left: 20px;
            }
            .timeline-item,
            .timeline-item:nth-child(odd),
            .timeline-item:nth-child(even) {
                flex-direction: row;
                padding-left: 50px;
            }
            .timeline-content {
                width: 100%;
                margin-left: 0;
                padding: 1rem;
            }
            .timeline-content::before,
            .timeline-item:nth-child(odd) .timeline-content::before,
            .timeline-item:nth-child(even) .timeline-content::before {
                left: -42px !important;
                right: auto !important;
            }
            .timeline-dot {
                left: 8px !important;
                width: 24px;
                height: 24px;
                font-size: 0.7rem;
            }

            /* Contact Section Mobile */
            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .contact-info {
                padding: 1.5rem;
            }
            .contact-info h3 {
                font-size: 1.5rem;
            }
            .contact-item {
                padding: 0.75rem;
                gap: 0.75rem;
            }
            .contact-icon {
                width: 40px;
                height: 40px;
                font-size: 1.25rem;
            }
            .contact-text h4 {
                font-size: 0.9rem;
            }
            .contact-text p {
                font-size: 0.85rem;
            }
            .contact-form {
                padding: 1.5rem;
            }
            .form-row {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .form-group {
                margin-bottom: 1rem;
            }
            .form-label {
                font-size: 0.85rem;
            }
            .form-input,
            .form-select,
            .form-textarea {
                padding: 0.75rem;
                font-size: 0.9rem;
            }
            .form-submit {
                width: 100%;
                padding: 0.875rem;
            }

            /* CTA Section Mobile */
            .cta {
                padding: 3rem 1rem;
            }
            .cta h2 {
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }
            .cta p {
                font-size: 0.95rem;
            }
            .cta-buttons {
                flex-direction: column;
                gap: 0.75rem;
            }
            .cta .btn-primary,
            .cta .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            /* Footer Mobile */
            .footer {
                padding: 3rem 1rem 1.5rem;
            }
            .footer-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                text-align: center;
            }
            .footer-section h3 {
                font-size: 1rem;
            }
            .footer-section ul {
                font-size: 0.85rem;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                font-size: 0.8rem;
            }
            .social-links {
                justify-content: center;
            }
            .social-link {
                width: 36px;
                height: 36px;
            }

            /* Wechat Modal Mobile */
            .wechat-modal-content {
                padding: 1.5rem;
                margin: 1rem;
                border-radius: 16px;
            }
            .wechat-icon {
                font-size: 2.5rem;
            }
            .wechat-modal-header h3 {
                font-size: 1.25rem;
            }
            .wechat-qrcode {
                padding: 1rem;
            }
            .wechat-qrcode img {
                max-width: 160px;
            }
        }

        /* Wechat Modal Styles */
        .wechat-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
        }

        .wechat-modal.active {
            display: flex;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from { 
                opacity: 0;
                transform: translateY(20px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        .wechat-modal-content {
            background: white;
            border-radius: 24px;
            padding: 2.5rem;
            max-width: 400px;
            width: 90%;
            text-align: center;
            position: relative;
            animation: slideUp 0.3s ease;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
        }

        .wechat-modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 36px;
            height: 36px;
            border: none;
            background: #f1f5f9;
            border-radius: 50%;
            font-size: 1.5rem;
            line-height: 1;
            cursor: pointer;
            color: #64748b;
            transition: all 0.3s;
        }

        .wechat-modal-close:hover {
            background: #e2e8f0;
            color: #0a1628;
        }

        .wechat-modal-header {
            margin-bottom: 2rem;
        }

        .wechat-icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .wechat-modal-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #0a1628;
            margin-bottom: 0.5rem;
        }

        .wechat-modal-header p {
            color: #64748b;
            font-size: 0.95rem;
        }

        .wechat-qrcode {
            background: #f8fafc;
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .wechat-qrcode img {
            max-width: 200px;
            width: 100%;
            border-radius: 12px;
        }

        .qrcode-placeholder {
            padding: 2rem;
            color: #94a3b8;
        }

        .qrcode-icon {
            font-size: 3rem;
            display: block;
            margin-bottom: 0.5rem;
        }

        .qrcode-placeholder p {
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .qrcode-placeholder small {
            font-size: 0.8rem;
            color: #cbd5e1;
        }

        .wechat-tips {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 183, 49, 0.1));
            border-radius: 12px;
            padding: 1rem;
        }

        .wechat-tips p {
            color: #0a1628;
            font-size: 0.9rem;
            margin: 0;
        }

        /* Contact Item Wechat Hover */
        .contact-item-wechat {
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .contact-item-wechat:hover {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.1));
            border-color: #22c55e;
        }

        .contact-item-wechat:hover .contact-icon {
            background: linear-gradient(135deg, #22c55e, #16a34a);
            transform: scale(1.1);
        }

        .contact-item-wechat .contact-text p {
            color: #22c55e;
            font-weight: 500;
        }

            /* Story Mobile */
            .story-section {
                padding: 2rem 1.5rem 2rem;
                margin: 0 1rem;
            }
            .story-flower-image {
                margin-bottom: 1.5rem;
            }
            .story-flower-img {
                width: 140px;
            }
            .story-para-first {
                font-size: 1rem;
            }
            .story-paragraph {
                font-size: 0.95rem;
                line-height: 1.9;
                margin-bottom: 1rem;
            }
            .story-highlight-box {
                padding: 1.2rem 1.2rem;
                margin-bottom: 1rem;
            }
            .story-highlight-box p {
                font-size: 1.05rem;
            }
            .story-main-title {
                font-size: 2rem;
            }
            .story-tagline {
                font-size: 1.1rem;
            }
            .story-hero {
                padding: 3rem 1rem 2rem;
            }
            .story-closing {
                padding-top: 1.2rem;
                margin-top: 1.5rem;
            }
            .story-closing-text {
                font-size: 1rem;
            }
            .story-logo {
                width: 140px;
                height: auto;
            }
