@charset "utf-8";
/* CSS Document */
  * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --bg-dark: #0a0a0a;
            --brand-primary: #f0b100;
            --brand-dark: #c98f00;
            --brand-light: #f8d260;
            --text-white: #ffffff;
            --text-light: #d4d4d4;
            --text-dark: #0f172a;
            --text-gray: #64748b;
            --btn-secondary: #262626;
            --btn-secondary-hover: #404040;
        }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
            line-height: 1.6;
        }

        /* ===== HERO SECTION ===== */
        .hero-section {
            width: 100%;
            min-height: 100vh;
            background: var(--bg-dark);
            display: flex;
            align-items: center;
            padding: 80px 0;
        }
        .hero-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 48px;
            display: flex;
            align-items: center;
            gap: 60px;
        }
        .hero-content {
            flex: 0 0 55%;
            display: flex;
            flex-direction: column;
            gap: 32px;
        }
        .model-tag {
            display: inline-block;
            background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
            color: var(--text-white);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            padding: 8px 20px;
            border-radius: 6px;
            width: fit-content;
            text-transform: uppercase;
        }
        .hero-title { display: flex; flex-direction: column; gap: 8px; }
        .hero-title-line1 { font-size: 48px; font-weight: 500; color: var(--text-white); letter-spacing: 2px; line-height: 1.2; }
        .hero-title-line2 { font-size: 56px; font-weight: 800; color: var(--brand-primary); letter-spacing: 3px; line-height: 1.2; }
        .hero-subtitle { font-size: 16px; color: var(--text-light); line-height: 1.8; max-width: 90%; }
        .features-list { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
        .feature-item { display: flex; align-items: center; gap: 16px; }
        .feature-item-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .feature-item-icon svg { width: 28px; height: 28px; stroke: var(--brand-primary); stroke-width: 2; fill: none; }
        .feature-item-text { font-size: 16px; color: var(--text-white); font-weight: 500; }
        .hero-buttons { display: flex; gap: 20px; margin-top: 16px; }
        .btn {
            display: inline-flex; align-items: center; justify-content: center; gap: 8px;
            padding: 16px 32px; font-size: 16px; font-weight: 600; border-radius: 10px;
            cursor: pointer; transition: all 0.3s ease; text-decoration: none; border: none;
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
            color: var(--text-white);
            box-shadow: 0 4px 20px rgba(240, 177, 0, 0.35);
        }
        .btn-primary:hover {
            background: linear-gradient(135deg, var(--brand-light), var(--brand-primary));
            box-shadow: 0 6px 28px rgba(240, 177, 0, 0.5);
            transform: translateY(-2px);
        }
        .btn-secondary { background: var(--btn-secondary); color: var(--text-white); border: 1px solid #404040; }
        .btn-secondary:hover { background: var(--btn-secondary-hover); border-color: #525252; }
        .btn-arrow { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }
        .hero-image-wrapper { flex: 0 0 45%; position: relative; }
        .hero-image {
            width: 100%; border-radius: 20px; overflow: hidden; position: relative;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
        }
        .hero-image img { width: 100%; height: auto; display: block; object-fit: cover; }
        .image-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(240, 177, 0, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }
        .param-badge {
            position: absolute; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
            padding: 12px 20px; border-radius: 10px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            display: flex; align-items: center; gap: 10px;
        }
        .param-badge-icon { width: 20px; height: 20px; stroke: var(--brand-primary); stroke-width: 2; fill: none; flex-shrink: 0; }
        .param-badge-text { font-size: 14px; font-weight: 600; color: #262626; white-space: nowrap; }
        .param-badge-top { top: 24px; left: -20px; }
        .param-badge-bottom { bottom: 40px; right: -20px; }

        /* ===== FEATURES SECTION ===== */
        .features-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 24px;
        }
        .section-header { text-align: center; margin-bottom: 64px; }
        .section-tag {
            display: inline-block; font-size: 13px; font-weight: 600;
            letter-spacing: 0.15em; text-transform: uppercase;
            color: var(--brand-primary); margin-bottom: 16px;
        }
        .section-title { font-size: 36px; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; line-height: 1.3; }
        .section-subtitle { font-size: 18px; color: var(--text-gray); max-width: 600px; margin: 0 auto; line-height: 1.6; }
        .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .feature-card {
            background: #ffffff; border-radius: 16px; padding: 32px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 4px 12px rgba(0, 0, 0, 0.04);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(226, 232, 240, 0.6);
        }
        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
            border-color: rgba(240, 177, 0, 0.2);
        }
        .card-icon {
            width: 56px; height: 56px;
            background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-dark) 100%);
            border-radius: 14px; display: flex; align-items: center; justify-content: center;
            margin-bottom: 20px; box-shadow: 0 4px 12px rgba(240, 177, 0, 0.25);
        }
        .card-icon svg { width: 28px; height: 28px; fill: none; stroke: #ffffff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
        .card-title { font-size: 18px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
        .card-desc { font-size: 14px; color: var(--text-gray); line-height: 1.7; }

        /* ===== COMPARISON SECTION ===== */
        .compare-section {
            background: #0a0a0a;
            padding: 80px 24px;
            text-align: center;
        }
        .compare-header-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #f0b100;
            margin-bottom: 16px;
        }
        .compare-header-title {
            font-size: 40px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 16px;
            line-height: 1.3;
        }
        .compare-header-subtitle {
            font-size: 16px;
            color: #94a3b8;
            margin-bottom: 60px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .compare-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: left;
        }
        .compare-card {
            border-radius: 20px;
            padding: 36px 32px;
        }
        .compare-card-old {
            background: #1a1a1a;
        }
        .compare-card-new {
            background: #1c2e4a;
            position: relative;
            border: 2px solid #f0b100;
        }
        .compare-card-new .compare-card-tag {
            background: #f0b100;
            color: #ffffff;
            border: 1px solid #f0b100;
        }
        .compare-card-new .compare-card-tag svg {
            stroke: #ffffff;
        }
        .compare-card-new .compare-item-label {
            color: #f0b100;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        .compare-card-new .compare-item-text {
            color: #ffffff;
            font-size: 14px;
            line-height: 1.5;
        }
        .compare-card-new .compare-item-sub {
            color: rgba(255,255,255,0.65);
            font-size: 12px;
        }
        .compare-card-new .compare-item-check svg {
            stroke: #f0b100;
        }
        .compare-card-new .compare-item.highlight {
            background: rgba(240,177,0,0.1);
            border: 1px solid rgba(240,177,0,0.3);
        }
        .compare-card-standard {
            background: #1a1a1a;
        }
        .compare-card-title {
            font-size: 18px;
            font-weight: 700;
            color: #f0b100;
            margin-bottom: 28px;
            line-height: 1.3;
        }
        .compare-card-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(240, 177, 0, 0.15);
            border: 1px solid rgba(240, 177, 0, 0.3);
            color: #f0b100;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 5px 12px;
            border-radius: 100px;
            margin-bottom: 20px;
        }
        .compare-card-tag svg {
            width: 12px;
            height: 12px;
            stroke: currentColor;
            stroke-width: 2.5;
            fill: none;
        }
        .compare-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 14px 0;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .compare-item:last-child {
            border-bottom: none;
        }
        .compare-item.highlight {
            background: rgba(240, 177, 0, 0.08);
            border-radius: 12px;
            padding: 14px 12px;
            margin: 4px -8px;
            border-bottom: none;
        }
        .compare-item.old .compare-item-label {
            color: #f87171;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 4px;
        }
        .compare-item.old .compare-item-text {
            color: #ffffff;
            font-size: 14px;
        }
        .compare-item.old .compare-item-check svg {
            stroke: #ef4444;
        }
        .compare-item.check .compare-item-check svg {
            stroke: #f0b100;
        }
        .compare-item.check .compare-item-label {
            color: rgba(240, 177, 0, 0.8);
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 4px;
        }
        .compare-item.check .compare-item-text {
            color: #ffffff;
            font-size: 14px;
        }
        .compare-item.check .compare-item-sub {
            color: rgba(255,255,255,0.6);
            font-size: 12px;
            margin-top: 2px;
        }
        .compare-item-check {
            flex-shrink: 0;
            width: 22px;
            height: 22px;
            margin-top: 2px;
        }
        .compare-item-check svg {
            width: 22px;
            height: 22px;
            stroke-width: 2.5;
            fill: none;
        }
        .compare-item-text-wrap {
            flex: 1;
        }

        /* ===== STATS SECTION ===== */
        .stats-section {
            background: #f8fafc;
            padding: 80px 24px;
            text-align: center;
        }
        .stats-header-tag {
            display: inline-block; font-size: 13px; font-weight: 600;
            letter-spacing: 0.15em; text-transform: uppercase;
            color: var(--brand-primary); margin-bottom: 16px;
        }
        .stats-header-title { font-size: 36px; font-weight: 700; color: var(--text-dark); margin-bottom: 60px; line-height: 1.3; }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            padding: 40px 20px;
            border-radius: 20px;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            cursor: default;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        .stat-item::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #f0b100, #f8d260);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        .stat-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
            border-color: rgba(240, 177, 0, 0.3);
        }
        .stat-item:hover::before {
            transform: scaleX(1);
        }
        .stat-number {
            font-size: 56px;
            font-weight: 800;
            color: #f0b100;
            line-height: 1;
            letter-spacing: -1px;
            font-variant-numeric: tabular-nums;
            min-height: 70px;
            display: flex;
            align-items: baseline;
            gap: 2px;
        }
        .stat-number .suffix {
            font-size: 32px;
            font-weight: 700;
            color: #f0b100;
            line-height: 1;
        }
        .stat-label {
            font-size: 14px;
            color: #94a3b8;
            font-weight: 500;
            letter-spacing: 0.03em;
        }
        .stat-icon {
            width: 40px;
            height: 40px;
            margin-bottom: 4px;
        }
        .stat-icon svg {
            width: 40px;
            height: 40px;
            stroke: #f0b100;
            stroke-width: 1.5;
            fill: none;
            opacity: 0.35;
        }

        /* ===== SCENES SECTION ===== */
        .scenes-header {
            text-align: center;
            padding: 80px 24px 48px;
            background: #ffffff;
        }
        .scenes-header-tag {
            display: inline-block; font-size: 13px; font-weight: 600;
            letter-spacing: 0.15em; text-transform: uppercase;
            color: #f0b100; margin-bottom: 12px;
        }
        .scenes-header-title {
            font-size: 40px; font-weight: 700; color: #0f172a;
            margin-bottom: 12px; line-height: 1.3;
        }
        .scenes-header-subtitle {
            font-size: 18px; color: #64748b; max-width: 600px; margin: 0 auto; line-height: 1.6;
        }
        .scene-card-wrap {
            background: #ffffff;
            padding: 0 24px 80px;
        }
        .scene-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .scene-card {
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
        }
        .scene-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(0,0,0,0.10);
        }
        .scene-card-img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
            display: block;
        }
        .scene-card-body {
            padding: 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .scene-card-num {
            font-size: 48px;
            font-weight: 800;
            line-height: 1;
            margin-bottom: -8px;
            opacity: 0.15;
        }
        .scene-card-num.orange { color: #f97316; }
        .scene-card-num.cyan { color: #06b6d4; }
        .scene-card-num.yellow { color: #f59e0b; }
        .scene-card-title {
            font-size: 18px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 10px;
        }
        .scene-card-desc {
            font-size: 13px;
            color: #64748b;
            line-height: 1.7;
            flex: 1;
            margin-bottom: 16px;
        }
        .scene-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 20px;
        }
        .scene-tag {
            display: inline-flex; align-items: center; gap: 5px;
            padding: 5px 12px; background: #f8fafc; border: 1px solid #e2e8f0;
            border-radius: 100px; font-size: 12px; font-weight: 500; color: #64748b;
        }
        .scene-card-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            padding-bottom: 2px;
            border-bottom: 2px solid;
            width: fit-content;
            transition: all 0.2s;
        }
        .scene-card-link.orange { color: #f97316; border-color: #f97316; }
        .scene-card-link.cyan { color: #06b6d4; border-color: #06b6d4; }
        .scene-card-link.yellow { color: #f59e0b; border-color: #f59e0b; }
        .scene-card-link:hover { opacity: 0.8; }
        .scene-divider { width: 100%; max-width: 1200px; height: 1px; background: #f1f5f9; margin: 0 auto; }

        @media (max-width: 992px) {
            .scene-cards { grid-template-columns: 1fr; gap: 20px; max-width: 480px; }
            .scenes-header-title { font-size: 30px; }
        }
        @media (max-width: 576px) {
            .scene-cards { grid-template-columns: 1fr; }
            .scenes-header { padding: 48px 20px 32px; }
            .scene-card-wrap { padding: 0 20px 48px; }
        }

        /* ===== CTA SECTION ===== */
        .cta-section { background: var(--bg-dark); text-align: center; padding: 80px 24px; }
        .cta-title { font-size: 32px; font-weight: 700; color: #ffffff; margin-bottom: 16px; }
        .cta-subtitle { font-size: 16px; color: #94a3b8; margin-bottom: 40px; }
        .cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
        .cta-btn {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 16px 36px; font-size: 16px; font-weight: 600;
            border-radius: 10px; text-decoration: none; transition: all 0.3s ease;
        }
        .cta-btn-primary {
            background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
            color: #ffffff;
            box-shadow: 0 4px 20px rgba(240, 177, 0, 0.35);
        }
        .cta-btn-primary:hover { box-shadow: 0 6px 28px rgba(240, 177, 0, 0.5); transform: translateY(-2px); }
        .cta-btn-secondary { background: #1e1e1e; color: #ffffff; border: 1px solid #333; }
        .cta-btn-secondary:hover { background: #2a2a2a; border-color: #444; }
        .cta-btn svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }

        @media (max-width: 768px) {
            .hs-cards { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 480px) {
            .hs-cards { grid-template-columns: 1fr; }
        }

        /* ===== APPS SECTION ===== */
        .apps-section {
            background: #fff;
            padding: 80px 24px;
        }
        .apps-header {
            max-width: 1200px;
            margin: 0 auto 48px;
        }
        .apps-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #f0b100;
            margin-bottom: 12px;
        }
        .apps-title {
            font-size: 36px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 12px;
            line-height: 1.3;
        }
        .apps-desc {
            color: #64748b;
            font-size: 16px;
            max-width: 600px;
            line-height: 1.7;
        }
        .apps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .app-card {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 28px 24px;
            transition: all 0.3s;
        }
        .app-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.08);
            border-color: rgba(240,177,0,0.3);
        }
        .app-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }
        .app-icon svg { width: 26px; height: 26px; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
        .app-icon.blue { background: rgba(59,130,246,0.1); }
        .app-icon.blue svg { stroke: #3b82f6; }
        .app-icon.pink { background: rgba(236,72,153,0.1); }
        .app-icon.pink svg { stroke: #ec4899; }
        .app-icon.orange { background: rgba(249,115,22,0.1); }
        .app-icon.orange svg { stroke: #f97316; }
        .app-icon.amber { background: rgba(245,158,11,0.1); }
        .app-icon.amber svg { stroke: #f59e0b; }
        .app-title { font-size: 16px; font-weight: 600; color: #0f172a; margin-bottom: 8px; }
        .app-desc { font-size: 13px; color: #64748b; line-height: 1.6; }

        /* ===== SPECS SECTION ===== */
        .specs-section {
            background: #0d1423;
            padding: 80px 24px;
        }
        .specs-header {
            max-width: 1200px;
            margin: 0 auto 32px;
        }
        .specs-tag {
            display: inline-block;
            font-size: 12px;
            color: #f0b100;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }
        .specs-title {
            font-size: 36px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            line-height: 1.3;
        }
        .specs-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            max-width: 1200px;
            margin: 0 auto 0;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            padding-bottom: 0;
        }
        .specs-tab {
            padding: 10px 20px;
            font-size: 14px;
            font-weight: 500;
            color: #94a3b8;
            background: transparent;
            border: none;
            border-bottom: 2px solid transparent;
            cursor: pointer;
            transition: all 0.2s;
            margin-bottom: -1px;
            border-radius: 8px 8px 0 0;
        }
        .specs-tab:hover { color: #e2e8f0; }
        .specs-tab.active {
            color: #f0b100;
            border-bottom-color: #f0b100;
            background: rgba(240,177,0,0.08);
        }
        .specs-panel {
            display: none;
            max-width: 1200px;
            margin: 32px auto 0;
        }
        .specs-panel.active { display: block; }
        .specs-table {
            border-collapse: collapse;
            width: 100%;
        }
        .specs-table th {
            text-align: left;
            padding: 14px 20px;
            font-size: 12px;
            font-weight: 600;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        .specs-table td {
            padding: 16px 20px;
            font-size: 14px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            vertical-align: top;
        }
        .specs-table tr:last-child td { border-bottom: none; }
        .specs-table tr:hover td { background: rgba(255,255,255,0.03); }
        .specs-table .spec-name { color: #e2e8f0; font-weight: 500; }
        .specs-table .spec-value { color: #f0b100; font-weight: 700; white-space: nowrap; }
        .specs-table .spec-note { color: #94a3b8; font-size: 13px; }
        @media (max-width: 768px) {
            .specs-title { font-size: 28px; }
            .specs-tabs { gap: 6px; }
            .specs-tab { padding: 8px 14px; font-size: 13px; }
            .specs-table td { padding: 12px 16px; font-size: 13px; }
            .specs-section { padding: 48px 20px; }
        }

        @media (max-width: 1024px) {
            .apps-grid { grid-template-columns: repeat(2, 1fr); }
            .specs-table { font-size: 13px; }
        }
        @media (max-width: 768px) {
            .apps-title, .specs-title { font-size: 28px; }
            .specs-table td { padding: 12px 16px; }
        }
        /* ===== ENERGY SECTION ===== */
        .energy-section {
            background: #0d1423;
            padding: 80px 24px;
        }
        .energy-header {
            max-width: 1200px;
            margin: 0 auto 48px;
        }
        .energy-tag {
            display: inline-block;
            font-size: 12px;
            color: #f0b100;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }
        .energy-title {
            font-size: 36px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
            line-height: 1.3;
        }
        .energy-subtitle {
            font-size: 18px;
            color: #e2e8f0;
            margin-bottom: 12px;
        }
        .energy-desc {
            color: #64748b;
            font-size: 15px;
            max-width: 560px;
            line-height: 1.8;
        }
        .energy-layout {
            display: flex;
            flex-direction: column;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        @media (min-width: 1024px) {
            .energy-layout { flex-direction: row; gap: 48px; align-items: center; }
            .energy-cards { width: 40%; }
            .energy-chart { width: 60%; }
        }
        .energy-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .energy-card {
            background: #1a2535;
            border: 1px solid #2a3a4f;
            border-radius: 16px;
            padding: 24px 20px;
            text-align: center;
            transition: border-color 0.3s;
        }
        .energy-card:hover { border-color: rgba(240,177,0,0.3); }
        .energy-value {
            font-size: 36px;
            font-weight: 800;
            color: #f0b100;
            line-height: 1;
            margin-bottom: 8px;
        }
        .energy-label {
            font-size: 13px;
            color: #e2e8f0;
            font-weight: 500;
        }
        .energy-chart-title {
            font-size: 14px;
            color: #94a3b8;
            margin-bottom: 24px;
        }
        .chart-item { margin-bottom: 36px; }
        .chart-item:last-child { margin-bottom: 0; }
        .chart-item-label {
            font-size: 13px;
            color: #94a3b8;
            margin-bottom: 8px;
        }
        .chart-item-label span { color: #64748b; font-size: 12px; margin-left: 8px; }
        .chart-item { margin-bottom: 36px; }
        .chart-item:last-child { margin-bottom: 0; }
        .chart-bar-old-bg {
            height: 28px;
            border-radius: 6px;
            background: #374151;
            margin-bottom: 6px;
        }
        .chart-bar-wrap {
            position: relative;
            margin-bottom: 6px;
        }
        .chart-bar-new {
            height: 28px;
            border-radius: 6px;
            background: linear-gradient(90deg, #f0b100, #f8d260);
            display: flex;
            align-items: center;
            padding: 0 10px 0 16px;
            margin-bottom: 4px;
        }
        .chart-bar-new-text {
            font-size: 12px;
            font-weight: 700;
            color: #0f172a;
            white-space: nowrap;
        }
        .chart-bar-label-right {
            font-size: 12px;
            font-weight: 600;
            color: #f0b100;
            white-space: nowrap;
        }
        .chart-legend {
            display: flex;
            gap: 20px;
            margin-top: 24px;
        }
        .legend-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #94a3b8; }
        .legend-dot { width: 12px; height: 12px; border-radius: 3px; }
        .legend-dot.old { background: #374151; }
        .legend-dot.new { background: linear-gradient(90deg, #f0b100, #f8d260); }
        @media (max-width: 576px) {
            .energy-title { font-size: 28px; }
            .energy-value { font-size: 28px; }
            .energy-section { padding: 48px 20px; }
        }
        @media (max-width: 1200px) {
            .hero-container { padding: 0 32px; gap: 40px; }
            .hero-title-line1 { font-size: 40px; }
            .hero-title-line2 { font-size: 48px; }
            .param-badge-top { left: 16px; }
            .param-badge-bottom { right: 16px; }
        }
        @media (max-width: 992px) {
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
            .stat-number { font-size: 44px; }
            .stats-section { padding: 60px 24px; }
            .stats-header-title { font-size: 28px; margin-bottom: 40px; }
            .hero-section { padding: 60px 0; }
            .hero-container { flex-direction: column; gap: 48px; }
            .hero-content, .hero-image-wrapper { flex: 1; width: 100%; }
            .hero-content { order: 1; }
            .hero-image-wrapper { order: 2; }
            .hero-title-line1 { font-size: 36px; }
            .hero-title-line2 { font-size: 42px; }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 576px) {
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
            .stat-number { font-size: 36px; min-height: 50px; }
            .stat-number .suffix { font-size: 22px; }
            .stat-item { padding: 24px 16px; }
            .stat-label { font-size: 12px; }
            .stats-section { padding: 48px 20px; }
            .stats-header-title { font-size: 24px; margin-bottom: 32px; }
            .hero-section { padding: 40px 0; }
            .hero-container { padding: 0 20px; }
            .hero-title-line1 { font-size: 28px; }
            .hero-title-line2 { font-size: 34px; }
            .hero-subtitle, .feature-item-text { font-size: 14px; }
            .hero-buttons { flex-direction: column; gap: 12px; }
            .btn { width: 100%; padding: 14px 24px; }
            .param-badge { padding: 8px 14px; }
            .param-badge-text { font-size: 12px; }
            .param-badge-top { left: 12px; top: 12px; }
            .param-badge-bottom { right: 12px; bottom: 16px; }
            .features-section { padding: 48px 20px; }
            .section-header { margin-bottom: 40px; }
            .section-title { font-size: 26px; }
            .features-grid { grid-template-columns: 1fr; }
            .feature-card { padding: 24px; }
            .card-icon { width: 48px; height: 48px; }
            .card-icon svg { width: 24px; height: 24px; }
            .compare-header-title { font-size: 28px; }
            .compare-grid { grid-template-columns: 1fr; gap: 16px; }
            .compare-section { padding: 48px 20px; }
            .compare-card { padding: 24px 20px; }
        }

        /* ===== 100Hz HIGH-SPEED SECTION ===== */
        .hs-chart { 
			position: relative; 
}
         .hs-chart-wrap { 
	         position: relative; 
			 background: #0d1423; 
			 border-radius: 16px; 
			 border: 1px solid #2a3a4f; 
			 overflow: hidden; 
			 min-height: 320px; 
}
         #hs-canvas { 
			 width: 100% !important; 
			 height: 320px !important; 
			 display: block !important; 
			 
}
          .hs-chart-label { 
			  position: absolute; 
			  top: 14px; 
			  left: 16px; 
			  z-index: 10; 
			  font-size: 11px; 
			  color: #64748b; 
}
           .hs-chart-hz { 
			   position: absolute; 
			   top: 14px; 
			   right: 16px; 
			   z-index: 10; 
			   font-size: 12px; 
			   font-weight: 700; 
			   color: #f0b100; 
}
        .hs-section {
            background: #0d1423;
            padding: 80px 24px;
        }
        .hs-header {
            max-width: 1200px;
            margin: 0 auto 48px;
        }
        .hs-tag {
            display: inline-block;
            font-size: 12px;
            color: rgba(255,255,255,0.7);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }
        .hs-title {
            font-size: 36px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
            line-height: 1.3;
        }
        .hs-title .accent { color: #f0b100; }
        .hs-desc {
            color: #64748b;
            font-size: 16px;
            max-width: 600px;
            line-height: 1.7;
        }
        .hs-layout {
            display: flex;
            flex-direction: column;
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
        }
        @media (min-width: 1024px) {
            .hs-layout { flex-direction: row; gap: 48px; }
            .hs-cards { width: 40%; }
            .hs-chart { width: 60%; }
        }
        .hs-cards {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 16px;
        }
        .hs-card {
            background: #1a2535;
            border: 1px solid #2a3a4f;
            border-radius: 16px;
            padding: 20px 20px 18px;
            transition: border-color 0.3s;
        }
        .hs-card:hover { border-color: rgba(240,177,0,0.3); }
        .hs-card-row { display: flex; align-items: flex-start; gap: 12px; }
        .hs-card-icon { width: 36px; height: 36px; flex-shrink: 0; line-height: 1; margin-top: 2px; }
        .hs-card-icon svg { width: 36px; height: 36px; }
        .hs-card-body { flex: 1; min-width: 0; }
        .hs-card-title-value { display: flex; flex-direction: column; gap: 4px; margin-bottom: 8px; }
        .hs-card-title { color: #fff; font-size: 14px; font-weight: 500; white-space: nowrap; }
        .hs-card-value { color: #f0b100; font-size: 18px; font-weight: 700; white-space: nowrap; }
        .hs-card-desc { color: #94a3b8; font-size: 12px; line-height: 1.5; }
        .hs-chart-wrap {
            position: relative;
            background: #0d1423;
            border-radius: 16px;
            border: 1px solid #2a3a4f;
            overflow: hidden;
            min-height: 320px;
        }
        .hs-chart-label { position: absolute; top: 14px; left: 16px; z-index: 10; font-size: 11px; color: #64748b; }
        .hs-chart-hz { position: absolute; top: 14px; right: 16px; z-index: 10; font-size: 12px; font-weight: 700; color: #f0b100; }
        .hs-chart-legend { position: absolute; top: 10px; right: 80px; z-index: 10; display: flex; gap: 14px; }
        .hs-legend-item { display: flex; align-items: center; gap: 5px; font-size: 11px; color: #e2e8f0; }
        .hs-legend-dot { width: 8px; height: 8px; border-radius: 50%; }

        #hs-canvas { width: 100%; height: 320px; display: block; }
        #hs-canvas { width: 100% !important; height: 320px !important; display: block !important; }
        @media (min-width: 768px) { #hs-canvas { height: 400px; } .hs-title { font-size: 40px; } }