

    /* Reuse shared tokens, specific tokens here */

    :root {

        --hz-navy: #0F172A; --hz-teal: #14B8A6; --hz-text: #334155;

    }

    

    .dga-module {

        width: 100%;

        background-color: #FFFFFF; /* 极淡灰背景，区分上一模块 */

        padding: 100px 0;

    }

    

    .module-inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; gap: 80px; box-sizing: border-box;}

    

    /* Left Visual */

    .visual-col { flex: 1.1; position: relative; min-width: 0; }

    .product-image-container { position: relative; z-index: 1; }

    .product-image-container img { width: 100%; height: 80%; display: block; border-radius: 16px; box-shadow: 0 20px 50px -12px rgba(15, 23, 42, 0.15); 

transform: translate(-20px, 100px);

}

    

    .data-card {

        position: absolute; bottom: 30px; right: -30px;

        background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(12px);

        padding: 24px; border-radius: 12px; box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);

        border-left: 5px solid var(--hz-teal); min-width: 240px; z-index: 10;

        border: 1px solid rgba(255,255,255,0.5);

    }

    .card-title { font-size: 0.85rem; color: #64748B; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; margin-bottom: 16px; border-bottom: 1px solid #e2e8f0; padding-bottom: 8px; }

    .data-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 0.95rem; color: var(--hz-text); font-weight: 500; }

    .data-row strong { color: var(--hz-navy); }

    .data-row span.danger { color: #EF4444; font-weight: 700; display:flex; align-items:center; gap:4px; }

    .data-row span.normal { color: #10B981; font-weight: 600; }

    .status-bar { margin-top: 15px; height: 6px; background: #E2E8F0; border-radius: 3px; overflow: hidden; }

    .status-fill { width: 70%; height: 100%; background: var(--hz-teal); border-radius: 3px; }



    /* Right Text */

    .text-col { flex: 1; }

    .eyebrow {

        color: var(--hz-teal); font-weight: 700; text-transform: uppercase; font-size: 0.875rem;

        letter-spacing: 1.5px; margin-bottom: 16px; display: inline-block;

        border-bottom: 2px solid rgba(20, 184, 166, 0.2); padding-bottom: 4px;

    }

    .headline { font-size: 3rem; font-weight: 800; color: var(--hz-navy); line-height: 1.1; margin: 0 0 24px 0; letter-spacing: -1px; }

    .body-text { color: var(--hz-text); font-size: 1.125rem; line-height: 1.8; margin-bottom: 40px; max-width: 95%; }



    /* Specs & Button reused style */

    .spec-list { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 45px; }

    .spec-item { display: flex; align-items: flex-start; }

    .spec-icon { width: 40px; height: 40px; background: rgba(20, 184, 166, 0.1); color: var(--hz-teal); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-right: 16px; flex-shrink: 0; }

    .spec-icon svg { width: 22px; height: 22px; }

    .spec-content strong { display: block; color: var(--hz-navy); font-size: 1rem; margin-bottom: 4px; }

    .spec-content span { font-size: 0.9rem; color: #64748B; line-height: 1.4; }



    .btn-primary {

        display: inline-flex; align-items: center; justify-content: center;

        background-color: var(--hz-navy); color: #ffffff; border: 2px solid var(--hz-navy);

        padding: 16px 40px; border-radius: 100px; font-weight: 600; text-decoration: none;

        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 10px 20px -10px rgba(15, 23, 42, 0.4);

    }

    .btn-primary:hover {

        background-color: #ffffff !important; color: var(--hz-navy) !important;

        transform: translateY(-2px); box-shadow: 0 15px 30px -10px rgba(15, 23, 42, 0.2);

    }



    @media (max-width: 1024px) {

        .module-inner { flex-direction: column-reverse; padding: 0 24px; }

        .visual-col, .text-col { width: 100%; }

        .data-card { right: 0; bottom: -30px; position: relative; margin-top: -50px; margin-left: auto; max-width: 300px; }

        .headline { font-size: 2.5rem; }

    }

