/* ══ Trial 页 Hero 调整 ══ */
.hero.trial-hero {
    padding: 80px 5% 72px;
}
.hero.trial-hero h1 {
    font-size: clamp(28px, 4.5vw, 46px);
}
.hero.trial-hero p {
    font-size: 16px;
    margin-bottom: 0;
}

/* ══ 数据统计栏 ══ */
.stat-bar {
    display: flex;
    justify-content: center;
    background: #fff;
    border-bottom: 1px solid var(--border);
}
.stat-item {
    text-align: center;
    padding: 32px 52px;
    border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 34px; font-weight: 700; color: var(--brand); letter-spacing: -1px; }
.stat-label { font-size: 13px; color: var(--gray); margin-top: 6px; }

@media (max-width: 640px) {
    .stat-bar { flex-wrap: wrap; }
    .stat-item {
        padding: 20px 24px;
        border-right: none;
        border-bottom: 1px solid var(--border);
        width: 50%;
    }
    .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
    .stat-item:last-child { border-bottom: none; }
}

/* ══ 报告模块卡片（3 列） ══ */
.module-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.module-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow .15s;
}
.module-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.module-card.coming { opacity: .5; pointer-events: none; }
.module-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 4px;
}
.module-tag.free { color: var(--brand); background: var(--brand-bg); }
.module-tag.soon { color: var(--gray); background: #F3F4F6; }
.module-card h3 { font-size: 16px; font-weight: 600; color: var(--dark); line-height: 1.4; }
.module-card p  { font-size: 13px; color: var(--gray); line-height: 1.7; flex: 1; }
.module-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid #F3F4F6;
}
.module-users { font-size: 12px; color: var(--gray); }

@media (max-width: 900px) { .module-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .module-grid { grid-template-columns: 1fr; } }
