
/* 确保样式只控制此 DGA 产品模块 */
.hz-dga-scope {
    --hz-orange: #ec682e;
    --hz-orange-hover: #d3541c;
    --hz-blue-dark: #002B49;
    --text-dark: #333333;
    --text-gray: #666666;
    background-color: #ffffff;
}

.hz-dga-scope .hz-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* 标题部分 */
.hz-dga-scope .hz-header {
    text-align: center;
    margin-bottom: 60px;
}

.hz-dga-scope .hz-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 36px;
    color: var(--text-dark);
    margin: 0 0 10px 0;
}

.hz-dga-scope .hz-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--text-gray);
}

/* 产品网格 */
.hz-dga-scope .hz-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* 卡片基础样式 */
.hz-dga-scope .hz-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-top: 6px solid var(--hz-orange); 
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-direction: column;
    position: relative;
}

.hz-dga-scope .hz-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* 图片区域：强制满铺，不留任何灰色间隙 */
.hz-dga-scope .hz-img-box {
    height: 300px; /* 增加高度让比例更丰满 */
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: block;
    background-color: #fff; /* 背景设为白色以防万一 */
}

.hz-dga-scope .hz-img-box img {
    width: 100%;
    height: 100%;
    /* 核心修改：使用 cover 确保图片撑满容器，不留任何边距 */
    object-fit: cover; 
    display: block; 
    transition: transform 0.6s ease;
}

/* 悬停时图片轻微放大，增加生动感 */
.hz-dga-scope .hz-card:hover .hz-img-box img {
    transform: scale(1.08);
}

/* 文字内容区域 */
.hz-dga-scope .hz-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hz-dga-scope .hz-model-tag {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--hz-orange);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hz-dga-scope .hz-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 22px;
    color: var(--hz-blue-dark);
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.hz-dga-scope .hz-card-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 30px;
    min-height: 45px;
}

/* 按钮样式 */
.hz-dga-scope .hz-btn {
    margin-top: auto;
    display: block;
    width: 100%;
    padding: 14px 0;
    background-color: var(--hz-orange);
    color: #fff !important;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s ease;
}

.hz-dga-scope .hz-btn:hover {
    background-color: var(--hz-orange-hover);
}

/* Coming Soon 遮罩保持不变 */
.hz-dga-scope .hz-card.is-coming::after {
    content: "Coming Soon";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 43, 73, 0.85);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 10;
}

.hz-dga-scope .hz-card.is-coming:hover::after {
    opacity: 1;
}

/* 响应式 */
@media screen and (max-width: 900px) {
    .hz-dga-scope .hz-grid { grid-template-columns: 1fr; }
}
