        /* ========== 独立样式 ========== */
        /* 轮播容器 —— 暖色叠加 */
        .carousel {
            position: relative;
            width: 100%;
            height: 90vh;
            min-height: 700px;
            overflow: hidden;
            margin-top: 80px;
            background: #e8dccc; /* 暖色基底 */
        }
        .carousel-slides {
            position: relative;
            width: 100%;
            height: 100%;
        }
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 1;
        }
        .slide.active {
            opacity: 1;
            z-index: 10;
        }
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.75) saturate(1.1) blur(1px);
            transform: scale(1.05);
            transition: transform 8s ease;
        }
        .slide.active img {
            transform: scale(1);
        }
        .slide-content {
            position: absolute;
            top: 50%;
            left: 12%;
            transform: translateY(-50%);
            color: white;
            max-width: 700px;
            z-index: 20;
            text-shadow: 0 5px 20px rgba(0,0,0,0.5);
        }
        .slide-content h2 {
            font-size: 4.2rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateX(-50px);
            animation: slideGlide 1s 0.2s forwards;
        }
        .slide-content p {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateX(-40px);
            animation: slideGlide 1s 0.4s forwards;
        }
        .btn-gold {
            background: linear-gradient(145deg, var(--gold), #9f7a42);
            border: none;
            padding: 14px 42px;
            font-size: 1.2rem;
            font-weight: 600;
            color: #fff;
            border-radius: 60px;
            cursor: default;
            box-shadow: 0 15px 25px -8px rgba(179,139,74,0.5);
            display: inline-block;
            opacity: 0;
            transform: translateY(30px);
            animation: slideGlideUp 1s 0.6s forwards;
        }
        @keyframes slideGlide {
            0% { opacity: 0; transform: translateX(-50px); }
            100% { opacity: 1; transform: translateX(0); }
        }
        @keyframes slideGlideUp {
            0% { opacity: 0; transform: translateY(40px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        .carousel-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 18px;
            z-index: 30;
        }
        .dot {
            width: 12px;
            height: 12px;
            background: rgba(255,255,255,0.4);
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.5s ease;
            border: 1px solid transparent;
        }
        .dot.active-dot {
            width: 40px;
            background: var(--gold);
            box-shadow: 0 0 20px #f0c48b;
        }
        /* 服务卡片 —— 暖白卡片，柔和阴影 */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .service-card {
            background: var(--warm-surface);
            border-radius: 36px;
            padding: 40px 24px 30px;
            box-shadow: var(--shadow-warm);
            transition: var(--transition-smooth);
            border: 1px solid rgba(179,139,74,0.2);
            text-align: center;
            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(-12px) scale(1.02);
            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: 3.2rem;
            background: linear-gradient(145deg, var(--gold), #b38b4a);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
            transition: transform 0.6s;
        }
        .service-card:hover i {
            transform: rotateY(360deg) scale(1.1);
        }
        .service-card h3 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 16px;
            color: #6b4f2e;
        }
        .service-card .service-desc {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin: 16px 0 0;
            list-style: none;
            text-align: left;
            padding-left: 12px;
        }
        .service-card .service-desc li {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .service-card .service-desc li i {
            font-size: 0.8rem;
            color: var(--gold);
            margin: 0;
        }
        /* 关于我们板块——暖色玻璃 */
        .about-glass {
            background: rgba(255, 248, 240, 0.7);
            backdrop-filter: blur(12px);
            border-radius: 60px;
            padding: 40px;
            border: 1px solid rgba(179,139,74,0.3);
            box-shadow: 0 30px 50px -20px rgba(120,80,40,0.2);
        }
        /* 优势卡片 */
        .advantages {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            margin-top: 50px;
        }
        .advantage-item {
            flex: 1 1 200px;
            background: var(--warm-surface);
            border-radius: 40px;
            padding: 32px 16px;
            text-align: center;
            border: 1px solid #e5d8c4;
            transition: 0.4s;
            box-shadow: var(--shadow-warm);
        }
        .advantage-item:hover {
            border-color: var(--gold);
            transform: scale(1.05);
            box-shadow: 0 30px 40px -12px rgba(179,139,74,0.3);
        }
        .advantage-item i {
            font-size: 2.8rem;
            color: var(--gold);
        }
        .advantage-item h4 {
            color: var(--text-dark);
        }
        /* 全生命周期循环动画 —— 暖色流动 */
        .lifecycle-loop {
            background: linear-gradient(120deg, #f3e9db, #fcf3e5);
            border-radius: 120px 20px 120px 20px;
            padding: 60px 40px;
            margin: 60px 0;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(179,139,74,0.3);
            box-shadow: inset 0 0 50px rgba(179,139,74,0.15);
            color: var(--text-dark);
        }
        .lifecycle-title {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 50px;
            font-weight: 300;
            color: #6b4f2e;
        }
        .lifecycle-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px 50px;
        }
        .step-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            animation: flowPulse 2.4s infinite alternate ease-in-out;
            transform-origin: center;
            min-width: 100px;
        }
        .step-item:nth-child(2) { animation-delay: 0.2s; }
        .step-item:nth-child(3) { animation-delay: 0.4s; }
        .step-item:nth-child(4) { animation-delay: 0.6s; }
        .step-item:nth-child(5) { animation-delay: 0.8s; }
        .step-item:nth-child(6) { animation-delay: 1.0s; }
        .step-item i {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 15px;
            filter: drop-shadow(0 0 8px rgba(179,139,74,0.6));
        }
        .step-item span {
            font-weight: 500;
            background: rgba(179,139,74,0.1);
            padding: 6px 20px;
            border-radius: 40px;
            border: 1px solid var(--gold);
            color: var(--text-dark);
        }
        @keyframes flowPulse {
            0% { transform: translateY(0) scale(1); opacity: 0.8; }
            100% { transform: translateY(-15px) scale(1.08); opacity: 1; }
        }
        /* 服务流程 —— 暖光时间轴 */
        .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;
        }
        /* 知识宝库卡片 */
        .article-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
            margin: 50px 0;
        }
        .article-card {
            background: var(--warm-surface);
            border-radius: 32px;
            overflow: hidden;
            box-shadow: var(--shadow-warm);
            transition: var(--transition-smooth);
            border: 1px solid #e5d8c4;
        }
        .article-card:hover {
            transform: translateY(-12px);
            border-color: var(--gold);
            box-shadow: 0 40px 60px -12px rgba(179,139,74,0.4);
        }
        .article-card img {
            height: 200px;
            width: 100%;
            transition: transform 0.8s;
        }
        .article-card:hover img {
            transform: scale(1.07);
        }
        .article-info {
            padding: 25px 20px;
        }
        .article-info h4 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #6b4f2e;
            margin-bottom: 8px;
        }
        .article-desc {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin: 10px 0 15px;
            line-height: 1.5;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            color: #8f7e6b;
            font-size: 0.85rem;
            border-top: 1px dashed #e0d2bf;
            padding-top: 15px;
        }
        .article-meta i {
            color: var(--gold);
            margin-right: 5px;
        }
        /* 滚动淡入动画 */
        .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);
        }