:root {
            --dwp-primary: #1B3A5C;
            --dwp-primary-dark: #0F2440;
            --dwp-primary-light: #2A5580;
            --dwp-accent: #E87B35;
            --dwp-accent-hover: #D4692A;
            --dwp-accent-light: rgba(232, 123, 53, 0.1);
            --dwp-steel: #4A5568;
            --dwp-steel-light: #718096;
            --dwp-surface: #F7F8FA;
            --dwp-surface-alt: #EDF0F5;
            --dwp-white: #FFFFFF;
            --dwp-border: #D2D8E2;
            --dwp-text: #1A202C;
            --dwp-text-secondary: #4A5568;
            --dwp-text-light: #718096;
            --dwp-success: #38A169;
            --dwp-warning: #D69E2E;
            --dwp-danger: #E53E3E;
            --dwp-radius-sm: 6px;
            --dwp-radius: 10px;
            --dwp-radius-lg: 16px;
            --dwp-radius-xl: 24px;
            --dwp-shadow-sm: 0 1px 3px rgba(27, 58, 92, 0.08);
            --dwp-shadow: 0 4px 16px rgba(27, 58, 92, 0.1);
            --dwp-shadow-lg: 0 8px 40px rgba(27, 58, 92, 0.15);
            --dwp-shadow-xl: 0 20px 60px rgba(27, 58, 92, 0.2);
            --dwp-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --dwp-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --dwp-font-mono: 'JetBrains Mono', monospace;
        }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; font-size: 16px; }
        body {
            font-family: var(--dwp-font);
            color: var(--dwp-text);
            background: var(--dwp-surface);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        .dwp-page-wrap { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        .dwp-section-label {
            display: inline-flex; align-items: center; gap: 8px;
            font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
            text-transform: uppercase; color: var(--dwp-accent); margin-bottom: 12px;
        }
        .dwp-section-label i { font-size: 0.7rem; }
        .dwp-section-title {
            font-size: 20px; font-weight: 700; color: var(--dwp-primary-dark);
            line-height: 1.8; margin-bottom: 16px; letter-spacing: -0.02em;
        }
        .dwp-section-subtitle {
            font-size: 18px; color: var(--dwp-text-secondary);
            max-width: 640px; line-height: 1.8;
        }

        /* ===== Navigation ===== */
        .dwp-nav {
            position: sticky; top: 0; z-index: 1000;
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--dwp-border);
        }
        .dwp-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
        .dwp-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--dwp-primary-dark); }
        .dwp-logo-icon {
            width: 40px; height: 40px;
            background: linear-gradient(135deg, var(--dwp-primary), var(--dwp-primary-light));
            border-radius: var(--dwp-radius-sm);
            display: flex; align-items: center; justify-content: center;
            color: white; font-weight: 800; font-size: 0.9rem;
        }
        .dwp-logo-text { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; }
        .dwp-logo-text span { color: var(--dwp-accent); }
        .dwp-nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
        .dwp-nav-links a {
            text-decoration: none; color: var(--dwp-text-secondary);
            font-size: 0.875rem; font-weight: 500; transition: var(--dwp-transition); position: relative;
        }
        .dwp-nav-links a:hover { color: var(--dwp-primary); }
        .dwp-nav-links a::after {
            content: ''; position: absolute; bottom: -4px; left: 0;
            width: 0; height: 2px; background: var(--dwp-accent); transition: var(--dwp-transition);
        }
        .dwp-nav-links a:hover::after { width: 100%; }
        .dwp-nav-cta {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 10px 24px; background: var(--dwp-accent); color: white;
            border: none; border-radius: var(--dwp-radius);
            font-size: 0.875rem; font-weight: 600; text-decoration: none;
            cursor: pointer; transition: var(--dwp-transition);
        }
        .dwp-nav-cta:hover {
            background: var(--dwp-accent-hover); transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(232,123,53,0.35);
        }
        .dwp-mobile-toggle { display: none; background: none; border: none; font-size: 1.4rem; color: var(--dwp-primary); cursor: pointer; }

        /* ===== Breadcrumb ===== */
        .dwp-breadcrumb { padding: 16px 0; }
        .dwp-breadcrumb-list { display: flex; align-items: center; gap: 8px; list-style: none; font-size: 0.82rem; }
        .dwp-breadcrumb-list li { display: flex; align-items: center; gap: 8px; color: var(--dwp-text-light); }
        .dwp-breadcrumb-list a { color: var(--dwp-text-light); text-decoration: none; transition: var(--dwp-transition); }
        .dwp-breadcrumb-list a:hover { color: var(--dwp-accent); }
        .dwp-breadcrumb-list li:last-child { color: var(--dwp-text); font-weight: 500; }
        .dwp-breadcrumb-list i { font-size: 0.55rem; color: var(--dwp-border); }

        /* ===== Related Products ===== */
        .dwp-related-products {
            padding: 40px 0 48px;
            background: var(--dwp-white);
            border-bottom: 1px solid var(--dwp-border);
        }
        .dwp-related-products-header {
            display: flex; align-items: center; justify-content: space-between;
            margin-bottom: 28px;
        }
        .dwp-related-products-header h2 {
            font-size: 1.35rem; font-weight: 700; color: var(--dwp-primary-dark);
            display: flex; align-items: center; gap: 10px;
        }
        .dwp-related-products-header h2 i { color: var(--dwp-accent); font-size: 1.1rem; }
        .dwp-related-products-header a {
            font-size: 0.85rem; color: var(--dwp-accent); text-decoration: none;
            font-weight: 600; display: flex; align-items: center; gap: 6px;
            transition: var(--dwp-transition);
        }
        .dwp-related-products-header a:hover { gap: 10px; }
        .dwp-products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
        .dwp-products-grid .product-card {
            background: var(--dwp-white);
            border: 1px solid var(--dwp-border);
            border-radius: var(--dwp-radius);
            overflow: hidden;
            transition: var(--dwp-transition);
            display: flex; flex-direction: column;
        }
        .dwp-products-grid .product-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--dwp-shadow-lg);
            border-color: transparent;
        }
        .dwp-products-grid .card-image {
            aspect-ratio: 1; overflow: hidden; background: var(--dwp-surface);
        }
        .dwp-products-grid .card-image a { display: block; width: 100%; height: 100%; }
        .dwp-products-grid .card-image img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.4s ease;
        }
        .dwp-products-grid .product-card:hover .card-image img { transform: scale(1.06); }
        .dwp-products-grid .card-content {
            padding: 14px 14px 16px; flex: 1; display: flex; flex-direction: column;
        }
        .dwp-products-grid .card-title {
            font-size: 18px; font-weight: 600; line-height: 1.8;
            margin-bottom: auto;
            display: -webkit-box; -webkit-line-clamp: 2;
            -webkit-box-orient: vertical; overflow: hidden;
        }
        .dwp-products-grid .card-title a {
            color: var(--dwp-text) !important; text-decoration: none !important;
        }
        .dwp-products-grid .card-title a:hover { color: var(--dwp-accent) !important; }
        .dwp-products-grid .card-link {
            display: inline-flex; align-items: center; gap: 4px;
            font-size: 14px; font-weight: 600;
            color: var(--dwp-accent); text-decoration: none;
            margin-top: 10px; transition: var(--dwp-transition);line-height: 2;
        }
        .dwp-products-grid .card-link:hover { gap: 8px; }

        /* ===== Hero ===== */
        .dwp-hero {
            position: relative;
            background: linear-gradient(135deg, var(--dwp-primary-dark) 0%, var(--dwp-primary) 50%, var(--dwp-primary-light) 100%);
            overflow: hidden; padding: 80px 0 100px;
        }
        .dwp-hero::before {
            content: ''; position: absolute; top: -50%; right: -20%;
            width: 600px; height: 600px; border-radius: 50%;
            background: radial-gradient(circle, rgba(232,123,53,0.12) 0%, transparent 70%);
            pointer-events: none;
        }
        .dwp-hero::after {
            content: ''; position: absolute; bottom: -40%; left: -10%;
            width: 500px; height: 500px; border-radius: 50%;
            background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
            pointer-events: none;
        }
        .dwp-hero-grid {
            position: absolute; inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 60px 60px; pointer-events: none;
        }
        .dwp-hero-inner { position: relative; }
        .dwp-hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
        .dwp-hero-badge {
            display: inline-flex; align-items: center; gap: 6px;
            padding: 6px 14px; background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.15); border-radius: 20px;
            color: rgba(255,255,255,0.9); font-size: 14px; font-weight: 500;
            backdrop-filter: blur(8px);
        }
        .dwp-hero-badge i { color: var(--dwp-accent); font-size: 0.7rem; }
        .dwp-hero h1 {
            font-size: 3rem; font-weight: 800; line-height: 1.15;
            letter-spacing: -0.03em; margin-bottom: 20px; color: white;
        }
        .dwp-hero h1 span { color: var(--dwp-accent); }
        .dwp-hero-desc {
            font-size: 16px; color: rgba(255,255,255,0.75);
            line-height: 30px; margin-bottom: 32px; 
        }
        .dwp-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
        .dwp-btn-primary {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 14px 32px; background: var(--dwp-accent); color: white;
            border: none; border-radius: var(--dwp-radius);
            font-size: 0.95rem; font-weight: 600; text-decoration: none;
            cursor: pointer; transition: var(--dwp-transition);
        }
        .dwp-btn-primary:hover {
            background: var(--dwp-accent-hover); transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(232,123,53,0.4);
        }
        .dwp-btn-outline {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 14px 32px; background: transparent; color: white;
            border: 1.5px solid rgba(255,255,255,0.3); border-radius: var(--dwp-radius);
            font-size: 0.95rem; font-weight: 600; text-decoration: none;
            cursor: pointer; transition: var(--dwp-transition);
        }
        .dwp-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

        /* ===== Stats Bar ===== */
        .dwp-stats-bar { position: relative; z-index: 10; margin-top: -40px; }
        .dwp-stats-grid {
            display: grid; grid-template-columns: repeat(4, 1fr);
            background: var(--dwp-white); border-radius: var(--dwp-radius-lg);
            box-shadow: var(--dwp-shadow-lg); overflow: hidden; border: 1px solid var(--dwp-border);
        }
        .dwp-stat-item {
            padding: 28px 24px; text-align: center;
            border-right: 1px solid var(--dwp-border); transition: var(--dwp-transition);
        }
        .dwp-stat-item:last-child { border-right: none; }
        .dwp-stat-item:hover { background: var(--dwp-accent-light); }
        .dwp-stat-value { font-size: 1.75rem; font-weight: 800; color: var(--dwp-primary-dark); letter-spacing: -0.02em; margin-bottom: 4px; }
        .dwp-stat-value span { color: var(--dwp-accent); }
        .dwp-stat-label { font-size: 0.8rem; color: var(--dwp-text-light); font-weight: 500; }

        /* ===== Sections ===== */
        .dwp-section { padding: 80px 0; }
        .dwp-section-alt { background: var(--dwp-white); }
        .dwp-section-gray { background: var(--dwp-surface-alt); }
        .dwp-section-blue {
            background: linear-gradient(135deg, var(--dwp-primary-dark), var(--dwp-primary));
            color: white;
        }
        .dwp-section-blue .dwp-section-title { color: white; }
        .dwp-section-blue .dwp-section-subtitle { color: rgba(255,255,255,0.7); }
        .dwp-section-header { text-align: center; margin-bottom: 56px; }
        .dwp-section-header .dwp-section-subtitle { margin: 0 auto; }

        /* ===== Product Overview ===== */
        .dwp-overview-content .dwp-p {
            font-size: 16px; color: var(--dwp-text-secondary);
            line-height: 30px; margin-bottom: 20px;
        }
        .dwp-overview-content .dwp-p strong { color: var(--dwp-text); }
        .dwp-overview-content {margin: 0 auto; }
        .dwp-overview-features {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
            margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--dwp-border);
        }
        .dwp-overview-feat {
            display: flex; align-items: flex-start; gap: 12px;
            padding: 20px; background: var(--dwp-surface); border-radius: var(--dwp-radius);
        }
        .dwp-overview-feat i { color: var(--dwp-accent); font-size: 0.85rem; margin-top: 3px; min-width: 16px; }
        .dwp-overview-feat span { font-size: 18px; font-weight: 600; color: var(--dwp-primary-dark); line-height: 1.8; }

        /* ===== Specs Table ===== */
        .dwp-specs-wrapper { margin: 0 auto; }
        .dwp-table {
            width: 100%; border-collapse: separate; border-spacing: 0;
            border-radius: var(--dwp-radius-lg); overflow: hidden;
            box-shadow: var(--dwp-shadow); border: 1px solid var(--dwp-border);
        }
        .dwp-table tr:first-child { background: var(--dwp-primary); }
        .dwp-table tr:first-child th {
            padding: 16px 24px; text-align: left; color: white;
            font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
        }
        .dwp-table tbody tr { transition: var(--dwp-transition); }
        .dwp-table tbody tr:nth-child(even) { background: var(--dwp-surface); }
        .dwp-table tbody tr:hover { background: var(--dwp-accent-light); }
        .dwp-table td { padding: 14px 24px; font-size: 16px; border-bottom: 1px solid var(--dwp-border); }
        .dwp-table tbody tr:last-child td { border-bottom: none; }
        .dwp-table .dwp-param-label {
            font-weight: 600; color: var(--dwp-primary-dark);
            display: flex; align-items: center; gap: 10px;
        }
        .dwp-table .dwp-param-label i {
            width: 28px; height: 28px; border-radius: 6px;
            background: var(--dwp-accent-light); color: var(--dwp-accent);
            display: flex; align-items: center; justify-content: center; font-size: 0.72rem;
        }
        .dwp-table .dwp-param-value {
            color: var(--dwp-text); font-family: var(--dwp-font-mono);
            font-size: 0.88rem; font-weight: 500;
        }

        /* ===== Feature Cards ===== */
        .dwp-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .dwp-feature-card {
            background: var(--dwp-white); border-radius: var(--dwp-radius-lg);
            padding: 32px 28px; border: 1px solid var(--dwp-border);
            transition: var(--dwp-transition); position: relative; overflow: hidden;
        }
        .dwp-feature-card::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
            background: linear-gradient(90deg, var(--dwp-accent), var(--dwp-primary-light));
            opacity: 0; transition: var(--dwp-transition);
        }
        .dwp-feature-card:hover { transform: translateY(-4px); box-shadow: var(--dwp-shadow-lg); border-color: transparent; }
        .dwp-feature-card:hover::before { opacity: 1; }
        .dwp-feature-icon {
            width: 52px; height: 52px; border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.2rem; margin-bottom: 20px;
        }
        .dwp-feature-icon.blue { background: rgba(27,58,92,0.08); color: var(--dwp-primary); }
        .dwp-feature-icon.orange { background: var(--dwp-accent-light); color: var(--dwp-accent); }
        .dwp-feature-icon.green { background: rgba(56,161,105,0.08); color: var(--dwp-success); }
        .dwp-feature-icon.purple { background: rgba(99,102,241,0.08); color: #6366F1; }
        .dwp-feature-icon.red { background: rgba(229,62,62,0.08); color: var(--dwp-danger); }
        .dwp-feature-icon.teal { background: rgba(20,184,166,0.08); color: #14B8A6; }
        .dwp-feature-card h4 { font-size: 20px; font-weight: 700; color: var(--dwp-primary-dark); margin-bottom: 10px; line-height: 1.8;}
        .dwp-feature-card p { font-size: 16px; color: var(--dwp-text-secondary); line-height: 30px; }

        /* ===== Applications ===== */
        .dwp-apps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
        .dwp-app-card {
            display: flex; gap: 16px; padding: 24px;
            background: rgba(255,255,255,0.6);
            border: 1px solid rgba(255,255,255,0.1); border-radius: var(--dwp-radius);
            transition: var(--dwp-transition); backdrop-filter: blur(8px);
        }
        .dwp-app-card:hover { background: rgba(255,255,255,0.1); transform: translateX(4px); }
        .dwp-app-icon {
            width: 44px; height: 44px; min-width: 44px; border-radius: 10px;
            background: rgba(232,123,53,0.15); color: var(--dwp-accent);
            display: flex; align-items: center; justify-content: center; font-size: 1rem;
        }
        .dwp-app-title { font-size: 18px; font-weight: 700; color: white; margin-bottom: 4px; line-height: 1.8; }
        .dwp-app-desc { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 30px; }

        /* ===== Comparison ===== */
        .dwp-compare-table {
            max-width: 900px; margin: 0 auto; border-radius: var(--dwp-radius-lg);
            overflow: hidden; box-shadow: var(--dwp-shadow-lg); border: 1px solid var(--dwp-border);
        }
        .dwp-compare-table table { width: 100%; border-collapse: collapse; }
        .dwp-compare-table th:first-child { background: var(--dwp-primary); }
        .dwp-compare-table th:first-child {
            padding: 18px 24px; color: white; font-size: 0.85rem; font-weight: 600; text-align: center;
        }
        .dwp-compare-table th:first-child { text-align: left; background: var(--dwp-primary-dark); }
        .dwp-compare-table th:nth-child(2) { background: var(--dwp-accent); position: relative; }
        
        .dwp-compare-table tbody td {
            padding: 16px 24px; font-size: 14px;
    line-height: 2;
            border-bottom: 1px solid var(--dwp-border); text-align: center;
        }
        .dwp-compare-table tbody td:first-child { text-align: left; font-weight: 600; color: var(--dwp-primary-dark); }
        .dwp-compare-table tbody tr:nth-child(even) { background: var(--dwp-surface); }
        .dwp-compare-table tbody tr:hover { background: var(--dwp-accent-light); }
        .dwp-highlight { background: rgba(56,161,105,0.08); color: var(--dwp-success); font-weight: 600; }
        .dwp-warn { background: rgba(229,62,62,0.06); color: var(--dwp-danger); font-weight: 600; }

        /* ===== Tips ===== */
        .dwp-tips-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
        .dwp-tip-card {
            display: flex; gap: 20px; padding: 28px;
            background: var(--dwp-white); border-radius: var(--dwp-radius-lg);
            border: 1px solid var(--dwp-border); transition: var(--dwp-transition);
        }
        .dwp-tip-card:hover { box-shadow: var(--dwp-shadow); border-color: var(--dwp-accent); }
        .dwp-tip-number {
            width: 44px; height: 44px; min-width: 44px; border-radius: 50%;
            background: linear-gradient(135deg, var(--dwp-primary), var(--dwp-primary-light));
            color: white; display: flex; align-items: center; justify-content: center;
            font-weight: 800; font-size: 1rem;
        }
        .dwp-tip-content h4 { font-size: 18px; font-weight: 700; color: var(--dwp-primary-dark); margin-bottom: 6px; line-height: 1.8; }
        .dwp-tip-content p { font-size: 16px; color: var(--dwp-text-secondary); line-height: 30px; }

        /* ===== FAQ ===== */
        .dwp-faq-list { margin: 0 auto; }
        .dwp-faq-item {
            border: 1px solid var(--dwp-border); border-radius: var(--dwp-radius);
            margin-bottom: 12px; overflow: hidden; transition: var(--dwp-transition);
            background: var(--dwp-white);
        }
        .dwp-faq-item:hover { border-color: var(--dwp-primary-light); }
        .dwp-faq-item.active { border-color: var(--dwp-accent); box-shadow: 0 2px 12px rgba(232,123,53,0.1); }
        .dwp-faq-question {
            display: flex; align-items: center; justify-content: space-between;
            padding: 20px 24px; cursor: pointer; gap: 16px; user-select: none;
        }
        .dwp-faq-question h4 {
            font-size: 18px; font-weight: 600; color: var(--dwp-primary-dark);
            display: flex; align-items: center; gap: 10px; flex: 1;line-height: 1.8;
        }
        .dwp-faq-question h4 .dwp-q-icon {
            width: 26px; height: 26px; min-width: 26px; border-radius: 6px;
            background: var(--dwp-accent-light); color: var(--dwp-accent);
            display: flex; align-items: center; justify-content: center;
            font-size: 0.7rem; font-weight: 800;
        }
        .dwp-faq-toggle {
            width: 28px; height: 28px; border-radius: 50%; background: var(--dwp-surface);
            display: flex; align-items: center; justify-content: center;
            font-size: 0.75rem; color: var(--dwp-text-light); transition: var(--dwp-transition);
        }
        .dwp-faq-item.active .dwp-faq-toggle { background: var(--dwp-accent); color: white; transform: rotate(180deg); }
        .dwp-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1); }
        .dwp-faq-answer-inner {
            padding: 0 24px 20px 60px; font-size: 16px;
            color: var(--dwp-text-secondary); line-height: 30px;
        }
        .dwp-faq-answer-inner strong { color: var(--dwp-text); }

        /* ===== Maintenance & Support ===== */
        .dwp-services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
        .dwp-service-block {
            background: var(--dwp-white); border-radius: var(--dwp-radius-lg);
            padding: 36px; border: 1px solid var(--dwp-border); transition: var(--dwp-transition);
        }
        .dwp-service-block:hover { box-shadow: var(--dwp-shadow); }
        .dwp-service-header {
            display: flex; align-items: center; gap: 14px;
            margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--dwp-border);
        }
        .dwp-service-header-icon {
            width: 48px; height: 48px; border-radius: 12px;
            display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
        }
        .dwp-service-header-icon.orange { background: var(--dwp-accent-light); color: var(--dwp-accent); }
        .dwp-service-header-icon.blue { background: rgba(27,58,92,0.08); color: var(--dwp-primary); }
        .dwp-service-header h3 { font-size: 18px; font-weight: 700; color: var(--dwp-primary-dark); line-height: 1.8;}
        .dwp-service-header p { font-size: 16px; color: var(--dwp-text-light); margin-top: 2px; line-height: 30px;}
        .dwp-service-block .dwp-ul { list-style: none; }
        .dwp-service-block .dwp-li {
            display: flex; align-items: flex-start; gap: 12px;
            padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.04);
            font-size: 16px; color: var(--dwp-text-secondary); line-height: 30px;
        }
        .dwp-service-block .dwp-li:last-child { border-bottom: none; padding-bottom: 0; }
        .dwp-service-block .dwp-li i { margin-top: 4px; color: var(--dwp-accent); font-size: 0.65rem; }
        .dwp-service-block .dwp-li strong { color: var(--dwp-text); }

        /* ===== Manufacturing ===== */
        .dwp-manufacturing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .dwp-mfg-card {
            background: rgba(255,255,255,0.7);
            border: 1px solid rgba(255,255,255,0.12); border-radius: var(--dwp-radius-lg);
            padding: 28px; transition: var(--dwp-transition);
        }
        .dwp-mfg-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
        .dwp-mfg-card i { font-size: 1.6rem; color: var(--dwp-accent); margin-bottom: 16px; display: block; }
        .dwp-mfg-card h4 { font-size: 18px; font-weight: 700; color: white; margin-bottom: 8px;line-height: 1.8; }
        .dwp-mfg-card p { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 30px; }

        /* ============================================
           About / Honor / Bottom Stats (CMS Blocks)
           ============================================ */

        /* --- About Section --- */
        .Auxil-about {
            padding: 80px 0;
            background: var(--dwp-white);
        }
        .Auxil-about .ui.dwp-cms-wrap {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .Auxil-about .title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--dwp-primary-dark);
            text-align: center;
            margin-bottom: 48px;
            letter-spacing: -0.02em;
            position: relative;
        }
        .Auxil-about .title::after {
            content: '';
            display: block;
            width: 48px;
            height: 3px;
            background: var(--dwp-accent);
            margin: 16px auto 0;
            border-radius: 2px;
        }
        .Auxil-about .box.grid-box.two {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .Auxil-about .left.column img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            border-radius: var(--dwp-radius-lg);
            box-shadow: var(--dwp-shadow-lg);
        }
        .Auxil-about .right .h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--dwp-primary-dark);
            margin-bottom: 20px;
            letter-spacing: -0.01em;
            line-height: 1.8;
        }
        .Auxil-about .right .text {
            font-size: 16px;
            color: var(--dwp-text-secondary);
            line-height: 30px;
        }
        .Auxil-about .right .text a {
            color: var(--dwp-accent);
            text-decoration: none;
            font-weight: 600;
            transition: var(--dwp-transition);
        }
        .Auxil-about .right .text a:hover {
            color: var(--dwp-accent-hover);
            text-decoration: underline;
        }
       
        /* --- Bottom Stats --- */
        .dwp-bottom-stats {
            padding: 72px 0;
            background: linear-gradient(135deg, var(--dwp-primary-dark), var(--dwp-primary));
        }
        .dwp-bottom-stats .dwp-page-wrap {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .dwp-bottom-stats ul.data.grid-box {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            list-style: none;
        }
        .dwp-bottom-stats ul.data.grid-box li.column {
            text-align: center;
            padding: 32px 20px;
            position: relative;
        }
        .dwp-bottom-stats ul.data.grid-box li.column:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 20%;
            height: 60%;
            width: 1px;
            background: rgba(255,255,255,0.12);
        }
        .dwp-bottom-stats li.column .top {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin-bottom: 14px;
        }
        .dwp-bottom-stats li.column .top span {
            font-size: 2.6rem;
            font-weight: 800;
            color: white;
            letter-spacing: -0.02em;
            line-height: 1;
            font-family: var(--dwp-font-mono);
        }
        .dwp-bottom-stats li.column .top span em {
            font-style: normal;
            font-weight: 800;
        }
        .dwp-bottom-stats li.column .top i {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(232,123,53,0.15);
        }
        .dwp-bottom-stats li.column .top i img {
            width: 28px;
            height: 28px;
            object-fit: contain;
            filter: brightness(0) invert(1);
            opacity: 0.9;
        }
        .dwp-bottom-stats li.column p {
            font-size: 14px;
            line-height: 2;
            color: rgba(255,255,255,0.6);
            font-weight: 500;
        }

        /* ===== Related Info ===== */
        .dwp-related-info {
            padding: 64px 0;
            background: var(--dwp-white);
            border-top: 1px solid var(--dwp-border);
        }
        .dwp-related-info-header {
            display: flex; align-items: center; gap: 10px;
            margin-bottom: 32px;
        }
        .dwp-related-info-header h2 {
            font-size: 1.35rem; font-weight: 700; color: var(--dwp-primary-dark);
        }
        .dwp-related-info-header i { color: var(--dwp-accent); font-size: 1.1rem; }
        .dwp-related-info-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
            list-style: none;
        }
        .dwp-related-info-grid .related-info-item {
            padding: 24px; background: var(--dwp-surface);
            border: 1px solid var(--dwp-border); border-radius: var(--dwp-radius);
            transition: var(--dwp-transition);
            list-style: none;
        }
        .dwp-related-info-grid .related-info-item:hover {
            border-color: var(--dwp-accent);
            box-shadow: var(--dwp-shadow-sm);
            transform: translateY(-2px);
        }
        .dwp-related-info-grid .related-info-item h3 {
            font-size: 16px; font-weight: 700; color: var(--dwp-primary-dark);
            margin-bottom: 8px; line-height: 30px;
            display: -webkit-box; -webkit-line-clamp: 2;
            -webkit-box-orient: vertical; overflow: hidden;
        }
        .dwp-related-info-grid .related-info-item h3 a {
            color: var(--dwp-primary-dark); text-decoration: none;
            transition: var(--dwp-transition);
        }
        .dwp-related-info-grid .related-info-item h3 a:hover { color: var(--dwp-accent); }
        .dwp-related-info-grid .related-info-item p {
            font-size: 14px; color: var(--dwp-text-light);
            line-height: 2;
            display: -webkit-box; -webkit-line-clamp: 3;
            -webkit-box-orient: vertical; overflow: hidden;
        }

        /* ===== CTA ===== */
        .dwp-cta-section { padding: 80px 0; }
        .dwp-cta-box {
            position: relative;
            background: linear-gradient(135deg, var(--dwp-primary-dark), var(--dwp-primary));
            border-radius: var(--dwp-radius-xl); padding: 64px;
            overflow: hidden; text-align: center; color: white;
        }
        .dwp-cta-box::before {
            content: ''; position: absolute; top: -50%; right: -20%;
            width: 400px; height: 400px; border-radius: 50%;
            background: radial-gradient(circle, rgba(232,123,53,0.15), transparent 70%);
        }
        .dwp-cta-box > * { position: relative; z-index: 2; }
        .dwp-cta-box h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
        .dwp-cta-box p { font-size: 14px; color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 36px; line-height: 2;}
        .dwp-cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
        .dwp-cta-btn {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 16px 36px; border-radius: var(--dwp-radius);
            font-size: 1rem; font-weight: 600; text-decoration: none;
            cursor: pointer; transition: var(--dwp-transition); border: none;
        }
        .dwp-cta-btn.white { background: white; color: var(--dwp-primary-dark); }
        .dwp-cta-btn.white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
        .dwp-cta-btn.ghost { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.3); }
        .dwp-cta-btn.ghost:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.08); }

        /* ===== Footer ===== */
        .dwp-footer { background: var(--dwp-primary-dark); padding: 48px 0 24px; color: rgba(255,255,255,0.6); }
        .dwp-footer-inner {
            display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
            padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        .dwp-footer-brand h3 { font-size: 1.15rem; font-weight: 700; color: white; margin-bottom: 12px; }
        .dwp-footer-brand p { font-size: 0.82rem; line-height: 1.7; margin-bottom: 20px; }
        .dwp-footer-social { display: flex; gap: 10px; }
        .dwp-footer-social a {
            width: 36px; height: 36px; border-radius: 8px;
            background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6);
            display: flex; align-items: center; justify-content: center;
            text-decoration: none; font-size: 0.85rem; transition: var(--dwp-transition);
        }
        .dwp-footer-social a:hover { background: var(--dwp-accent); color: white; }
        .dwp-footer-col h4 {
            font-size: 0.82rem; font-weight: 700; color: white;
            text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px;
        }
        .dwp-footer-col ul { list-style: none; }
        .dwp-footer-col li { margin-bottom: 10px; }
        .dwp-footer-col a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.84rem; transition: var(--dwp-transition); }
        .dwp-footer-col a:hover { color: var(--dwp-accent); }
        .dwp-footer-bottom {
            display: flex; justify-content: space-between; align-items: center;
            padding-top: 24px; font-size: 0.78rem;
        }
        .dwp-footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
        .dwp-footer-bottom a:hover { color: var(--dwp-accent); }
/* ===== Responsive ===== */
        @media (max-width: 1024px) {
            .dwp-products-grid { grid-template-columns: repeat(4, 1fr); }
            .dwp-overview-features { grid-template-columns: repeat(3, 1fr); }
            .dwp-features-grid { grid-template-columns: repeat(2, 1fr); }
            .dwp-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
            .dwp-related-info-grid { grid-template-columns: repeat(2, 1fr); }
            .Auxil-about .box.grid-box.two { grid-template-columns: 1fr 1fr; gap: 32px; }
            
        }
        @media (max-width: 768px) {
            .dwp-nav-links { display: none; }
            .dwp-mobile-toggle { display: block; }
            .dwp-hero { padding: 48px 0 72px; }
            .dwp-hero h1 { font-size: 2rem; }
            .dwp-stats-grid { grid-template-columns: repeat(2, 1fr); }
            .dwp-stat-item:nth-child(2) { border-right: none; }
            .dwp-section { padding: 56px 0; }
            .dwp-section-title { font-size: 1.6rem; }
            .Auxil-about .title { font-size: 1.6rem; }
            .dwp-products-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
            .dwp-features-grid { grid-template-columns: 1fr; }
            .dwp-apps-grid { grid-template-columns: 1fr; }
            .dwp-tips-grid { grid-template-columns: 1fr; }
            .dwp-services-grid { grid-template-columns: 1fr; }
            .dwp-manufacturing-grid { grid-template-columns: 1fr; }
            .dwp-related-info-grid { grid-template-columns: 1fr; }
            .dwp-overview-features { grid-template-columns: 1fr; }
            .Auxil-about .box.grid-box.two { grid-template-columns: 1fr; gap: 28px; }
            .Auxil-about .left.column img { height: 280px; }
            .Auxil-honor .honor-grid { grid-template-columns: repeat(2, 1fr); }
            .dwp-bottom-stats ul.data.grid-box { grid-template-columns: repeat(2, 1fr); }
            .dwp-bottom-stats ul.data.grid-box li.column:nth-child(2)::after { display: none; }
            .dwp-bottom-stats li.column .top span { font-size: 2rem; }
            .dwp-cta-box { padding: 40px 24px; }
            .dwp-cta-box h2 { font-size: 1.6rem; }
            .dwp-footer-inner { grid-template-columns: 1fr; gap: 28px; }
            .dwp-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
            .dwp-table td, .dwp-table th { padding: 10px 14px; font-size: 0.82rem; }
            .dwp-compare-table td, .dwp-compare-table th { padding: 12px 14px; font-size: 0.8rem; }
            .dwp-related-products-header { flex-direction: column; align-items: flex-start; gap: 8px; }
        }
        @media (max-width: 480px) {
            .dwp-hero h1 { font-size: 1.7rem; }
            .dwp-hero-actions { flex-direction: column; }
            .dwp-stats-grid { grid-template-columns: 1fr; }
            .dwp-stat-item { border-right: none; border-bottom: 1px solid var(--dwp-border); }
            .dwp-stat-item:last-child { border-bottom: none; }
            .dwp-products-grid { grid-template-columns: repeat(2, 1fr); }
            .dwp-bottom-stats ul.data.grid-box { grid-template-columns: 1fr; }
            .dwp-bottom-stats ul.data.grid-box li.column::after { display: none; }
            .dwp-bottom-stats li.column { padding: 24px 16px; }
        }
        .dwp-cms-wrap .grid-box.two>.column{
            width: 100%;
        }

/* 证书荣誉板块样式 */
.Auxil-honor {
    padding: 64px 0;
    background: var(--dwp-surface-alt);
}

.Auxil-honor .ui.dwp-cms-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.Auxil-honor .title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dwp-primary-dark);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
    position: relative;
}

.Auxil-honor .title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--dwp-accent);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* 荣誉证书容器 */
.Auxil-honor .honor-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* 轮播容器 - 使用flex布局实现水平滚动 */
.Auxil-honor .honor-carousel {
    display: flex;
    gap: 20px;
    overflow: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 0;
}

/* 轮播项目 */
.Auxil-honor .honor-item {
    flex: 0 0 calc(25% - 15px); /* 4列布局，减去gap */
    scroll-snap-align: start;
    border-radius: var(--dwp-radius);
    overflow: hidden;
    border: 1px solid var(--dwp-border);
    background: var(--dwp-white);
    transition: var(--dwp-transition);
}

.Auxil-honor .honor-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--dwp-shadow-lg);
    border-color: transparent;
}

/* 证书图片容器 */
.Auxil-honor .honor-item a.img-box {
    display: block;
    height: 100%;
    overflow: hidden;
}

.Auxil-honor .honor-item a.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.Auxil-honor .honor-item:hover a.img-box img {
    transform: scale(1.05);
}

/* 轮播控制按钮 */
.Auxil-honor .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--dwp-border);
    color: var(--dwp-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--dwp-transition);
    z-index: 10;
    font-size: 0.8rem;
}

.Auxil-honor .carousel-btn.prev-btn {
    left: 10px;
}

.Auxil-honor .carousel-btn.next-btn {
    right: 10px;
}

.Auxil-honor .carousel-btn:hover {
    background: var(--dwp-accent);
    color: white;
    border-color: var(--dwp-accent);
}

/* 轮播指示器 */
.Auxil-honor .carousel-indicators {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.Auxil-honor .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--dwp-border);
    cursor: pointer;
    transition: var(--dwp-transition);
}

.Auxil-honor .indicator.active {
    background: var(--dwp-accent);
    transform: scale(1.2);
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .Auxil-honor .honor-item {
        flex: 0 0 calc(33.33% - 13.33px); /* 3列布局 */
    }
}

@media (max-width: 768px) {
    .Auxil-honor .honor-item {
        flex: 0 0 calc(50% - 10px); /* 2列布局 */
    }
}

@media (max-width: 480px) {
    .Auxil-honor .honor-item {
        flex: 0 0 100%; /* 1列布局 */
    }
}
