    /* 滚动淡入动画 */
        .fade-on-scroll {
            opacity: 0;
            transform: translateY(35px);
            transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
        }
        .fade-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }
        /* 页面主视觉 */
        .accounting-hero {
            margin-top: 80px;
            height: 40vh;
            min-height: 300px;
            background: linear-gradient(115deg, #e5d8c4, #f3e7d5);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid var(--gold-light);
        }
        .accounting-hero::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(179,139,74,0.15) 0%, transparent 70%);
            top: -100px;
            right: -100px;
            border-radius: 50%;
        }
        .accounting-hero::after {
            content: '';
            position: absolute;
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(179,139,74,0.1) 0%, transparent 70%);
            bottom: -80px;
            left: -80px;
            border-radius: 50%;
        }
        .hero-content h1 {
            font-size: 4rem;
            font-weight: 700;
            color: var(--text-dark);
            text-shadow: 0 2px 10px rgba(255,255,255,0.5);
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }
        .hero-content p {
            font-size: 1.3rem;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        /* 服务卡片网格（八项服务） */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .service-card {
            background: var(--warm-surface);
            border-radius: 36px;
            padding: 35px 25px 30px;
            box-shadow: var(--shadow-warm);
            transition: var(--transition-smooth);
            border: 1px solid rgba(179,139,74,0.15);
            text-align: left;
            position: relative;
            overflow: hidden;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 0%, rgba(179,139,74,0.1), transparent 70%);
            opacity: 0;
            transition: opacity 0.5s;
        }
        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--gold);
            box-shadow: 0 40px 60px -16px rgba(179,139,74,0.3);
        }
        .service-card:hover::before {
            opacity: 1;
        }
        .service-card i {
            font-size: 2.6rem;
            color: var(--gold);
            margin-bottom: 20px;
            transition: transform 0.5s;
        }
        .service-card:hover i {
            transform: scale(1.1);
        }
        .service-card h3 {
            font-size: 1.8rem;
            font-weight: 600;
            color: #6b4f2e;
            margin-bottom: 16px;
            border-left: 5px solid var(--gold);
            padding-left: 15px;
        }
        .service-detail-list {
            list-style: none;
            margin-top: 15px;
        }
        .service-detail-list li {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: var(--text-muted);
            font-size: 0.98rem;
        }
        .service-detail-list li i {
            font-size: 0.9rem;
            color: var(--gold);
            margin-top: 4px;
            min-width: 18px;
        }
        .badge {
            display: inline-block;
            background: rgba(179,139,74,0.1);
            color: var(--gold);
            font-size: 0.8rem;
            padding: 3px 12px;
            border-radius: 30px;
            margin-left: 10px;
            border: 1px solid var(--gold-light);
        }
        /* 基础财税与高端财税分组标题 */
        .group-title {
            font-size: 2rem;
            color: #6b4f2e;
            margin: 40px 0 20px;
            border-bottom: 2px solid var(--gold-light);
            padding-bottom: 10px;
        }
        /* 优势卡片 */
        .advantages-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            margin: 50px 0;
        }
        .advantage-card {
            flex: 1 1 220px;
            background: var(--warm-surface);
            border-radius: 40px;
            padding: 32px 16px;
            text-align: center;
            box-shadow: var(--shadow-warm);
            border: 1px solid rgba(179,139,74,0.15);
            transition: var(--transition-smooth);
        }
        .advantage-card:hover {
            transform: translateY(-10px);
            border-color: var(--gold);
            box-shadow: 0 30px 50px -12px rgba(179,139,74,0.4);
        }
        .advantage-card i {
            font-size: 2.8rem;
            color: var(--gold);
            margin-bottom: 18px;
        }
        .advantage-card h4 {
            font-size: 1.4rem;
            color: #6b4f2e;
            margin-bottom: 10px;
        }
        .advantage-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        /* 服务流程（适配代理记账） */
        .process-wrapper {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            margin: 60px 0;
        }
        .process-step {
            flex: 1 1 150px;
            text-align: center;
            background: var(--warm-surface);
            padding: 35px 12px 25px;
            border-radius: 50px 50px 30px 30px;
            border-bottom: 3px solid var(--gold);
            transition: all 0.3s;
            animation: softGlow 3s infinite;
            box-shadow: var(--shadow-warm);
        }
        .process-step:nth-child(2) { animation-delay: 0.2s; }
        .process-step:nth-child(3) { animation-delay: 0.4s; }
        .process-step:nth-child(4) { animation-delay: 0.6s; }
        .process-step:nth-child(5) { animation-delay: 0.8s; }
        .process-step:nth-child(6) { animation-delay: 1.0s; }
        @keyframes softGlow {
            0% { border-bottom-color: var(--gold); box-shadow: 0 5px 20px rgba(179,139,74,0.2); }
            50% { border-bottom-color: #dbb87c; box-shadow: 0 5px 40px rgba(179,139,74,0.5); transform: scale(1.02); }
            100% { border-bottom-color: var(--gold); box-shadow: 0 5px 20px rgba(179,139,74,0.2); }
        }
        .process-step i {
            font-size: 2.6rem;
            color: var(--gold);
            margin-bottom: 18px;
        }
        .process-step h4 {
            font-size: 1.2rem;
            color: #6b4f2e;
        }
        /* “3+1”模式特殊展示 */
        .mode-showcase {
            background: linear-gradient(145deg, #fcf3e5, #f5e5d5);
            border-radius: 60px;
            padding: 40px;
            margin: 40px 0;
            border: 1px solid rgba(179,139,74,0.3);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 30px;
        }
        .mode-showcase i {
            font-size: 4rem;
            color: var(--gold);
        }
        .mode-showcase p {
            font-size: 1.2rem;
            color: var(--text-muted);
            flex: 1;
        }