/* ===== 首页专属样式 ===== */

/* Hero 横幅 */
.hero-section {
    background: linear-gradient(135deg, #009966 0%, #007a52 100%);
    color: #fff;
    text-align: center;
    padding: 48px 20px 40px;
}
.hero-section h1 {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #fff;
    line-height: 1.35;
}
.hero-subtitle {
    font-size: 15px;
    opacity: .88;
    margin: 0 0 26px;
}
.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-hero {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    transition: opacity .2s;
}
.btn-hero:hover { opacity: .82; }
.btn-hero-primary {
    background: #fff;
    color: #009966 !important;
}
.btn-hero-secondary {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,.75);
}

/* 数字信任栏 */
.stats-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 16px 10px;
    flex-wrap: wrap;
    gap: 8px;
}
.stat-item {
    flex: 1;
    min-width: 70px;
    text-align: center;
}
.stat-num {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #009966;
    line-height: 1.2;
}
.stat-label {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 3px;
}

/* 功能卡片 */
a.feature-card {
    display: block;
    text-decoration: none !important;
    color: inherit !important;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}
a.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.feature-card .feature-icon .fa {
    font-size: 30px;
    color: #009966;
}

/* 会员 CTA 横幅 */
.cta-banner {
    background: linear-gradient(90deg, #009966, #00a870);
    border-radius: 6px;
    margin: 16px 0 20px;
    padding: 30px 20px;
    text-align: center;
    color: #fff;
}
.cta-banner h3 {
    margin: 0 0 8px;
    font-size: 20px;
    color: #fff;
    font-weight: 700;
}
.cta-banner p {
    margin: 0 0 20px;
    opacity: .88;
    font-size: 14px;
}
.btn-cta {
    display: inline-block;
    background: #fff;
    color: #009966 !important;
    padding: 10px 32px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none !important;
    transition: opacity .2s;
}
.btn-cta:hover { opacity: .85; }

@media (max-width: 768px) {
    .hero-section { padding: 32px 16px 28px; }
    .hero-section h1 { font-size: 20px; }
    .stat-num { font-size: 18px; }
    .cta-banner h3 { font-size: 17px; }
    .cta-banner { padding: 22px 16px; }
}
