    
        /* ====== 独享CSS部分（香港公司注册服务详情页面） ====== */
        /* 页面顶部横幅 */
        .page-hero {
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 100px;
            background: var(--gradient-primary);
            margin-bottom: 80px;
        }
        
        .page-hero:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80");
            background-size: cover;
            background-position: center;
            opacity: 0.1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
            max-width: 900px;
        }
        
        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 40px;
            max-width: 700px;
        }
        
        .hero-stats {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }
        
        .hero-stat {
            display: flex;
            flex-direction: column;
        }
        
        .hero-stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-light);
            line-height: 1;
        }
        
        .hero-stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-top: 8px;
        }
        
        .hero-actions {
            display: flex;
            gap: 20px;
        }
        
        .btn-primary {
            background: var(--gradient-accent);
            color: white;
            padding: 16px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(0, 180, 216, 0.2);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 180, 216, 0.3);
        }
        
        .btn-secondary {
            background: transparent;
            color: white;
            padding: 16px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            border: 2px solid rgba(255, 255, 255, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-secondary:hover {
            border-color: white;
            transform: translateY(-5px);
        }
        
        /* 服务概述 */
        .service-overview {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--accent);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }
        
        .overview-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            align-items: center;
        }
        
        .overview-text h3 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 25px;
            line-height: 1.3;
        }
        
        .overview-text p {
            color: #666;
            margin-bottom: 25px;
            font-size: 1.1rem;
        }
        
        .hk-feature-badge {
            display: inline-block;
            background: rgba(0, 180, 216, 0.1);
            color: var(--accent);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            margin-right: 10px;
            margin-bottom: 10px;
        }
        
        .hk-visual {
            background: white;
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }
        
        .hk-visual:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 5px;
            background: var(--gradient-accent);
            top: 0;
            left: 0;
        }
        
        .hk-icon {
            width: 80px;
            height: 80px;
            background: rgba(0, 180, 216, 0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 2.5rem;
            margin-bottom: 25px;
        }
        
        .hk-visual h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .hk-visual p {
            color: #666;
            margin-bottom: 25px;
        }
        
        /* 税率介绍 */
        .tax-section {
            background: rgba(248, 249, 255, 0.5);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .tax-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .tax-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
        }
        
        .tax-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .tax-icon {
            width: 70px;
            height: 70px;
            background: rgba(0, 180, 216, 0.1);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 2rem;
            margin: 0 auto 25px;
            transition: var(--transition);
        }
        
        .tax-card:hover .tax-icon {
            background: var(--gradient-accent);
            color: white;
            transform: rotate(15deg);
        }
        
        .tax-card h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .tax-rate {
            font-size: 3rem;
            font-weight: 800;
            color: var(--accent);
            margin-bottom: 15px;
        }
        
        .tax-rate span {
            font-size: 1.2rem;
            color: #999;
        }
        
        .tax-description {
            color: #666;
            margin-bottom: 25px;
        }
        
        .tax-note {
            font-size: 0.9rem;
            color: #999;
            font-style: italic;
        }
        
        /* 香港优势对比 */
        .comparison-section {
            padding: 100px 0;
        }
        
        .comparison-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .comparison-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .comparison-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .comparison-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .comparison-icon {
            width: 60px;
            height: 60px;
            background: rgba(0, 180, 216, 0.1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 1.8rem;
            margin-right: 20px;
        }
        
        .comparison-title h3 {
            color: var(--primary);
            font-size: 1.5rem;
        }
        
        .comparison-title span {
            color: #999;
            font-size: 0.9rem;
        }
        
        .comparison-list {
            list-style: none;
        }
        
        .comparison-list li {
            margin-bottom: 15px;
            padding-left: 25px;
            position: relative;
        }
        
        .comparison-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
        }
        
        .comparison-list li.disadvantage:before {
            content: '⚠';
            color: #ff9900;
        }
        
        /* 公司架构介绍 */
        .structure-section {
            background: rgba(248, 249, 255, 0.5);
            padding: 100px 0;
        }
        
        .structure-diagram {
            background: white;
            border-radius: var(--border-radius);
            padding: 50px;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }
        
        .structure-diagram:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 5px;
            background: var(--gradient-accent);
            top: 0;
            left: 0;
        }
        
        .structure-level {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            position: relative;
        }
        
        .structure-level:last-child {
            margin-bottom: 0;
        }
        
        .structure-item {
            background: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(15, 26, 54, 0.08);
            border: 2px solid rgba(0, 180, 216, 0.1);
            transition: var(--transition);
            text-align: center;
            width: 200px;
        }
        
        .structure-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 180, 216, 0.15);
            border-color: var(--accent);
        }
        
        .structure-icon {
            width: 50px;
            height: 50px;
            background: rgba(0, 180, 216, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 1.5rem;
            margin: 0 auto 15px;
        }
        
        .structure-item h4 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .structure-item p {
            color: #666;
            font-size: 0.9rem;
        }
        
        .structure-connector {
            position: absolute;
            width: 2px;
            height: 40px;
            background: rgba(0, 180, 216, 0.3);
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* 办理流程 */
        .process-section {
            padding: 100px 0;
        }
        
        .process-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .process-line {
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--accent) 0%, rgba(0, 180, 216, 0.2) 100%);
            z-index: 1;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            z-index: 2;
        }
        
        .process-step {
            text-align: center;
            width: 180px;
            position: relative;
        }
        
        .step-icon-container {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--accent);
            font-size: 2rem;
            border: 2px solid rgba(0, 180, 216, 0.2);
            transition: var(--transition);
            position: relative;
            z-index: 2;
            box-shadow: 0 10px 30px rgba(0, 180, 216, 0.1);
            animation: pulseStep 3s ease-in-out infinite;
        }
        
        .process-step:nth-child(1) .step-icon-container {
            animation-delay: 0s;
        }
        
        .process-step:nth-child(2) .step-icon-container {
            animation-delay: 0.5s;
        }
        
        .process-step:nth-child(3) .step-icon-container {
            animation-delay: 1s;
        }
        
        .process-step:nth-child(4) .step-icon-container {
            animation-delay: 1.5s;
        }
        
        .process-step:nth-child(5) .step-icon-container {
            animation-delay: 2s;
        }
        
        @keyframes pulseStep {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 10px 30px rgba(0, 180, 216, 0.1);
            }
            50% { 
                transform: scale(1.05);
                box-shadow: 0 15px 40px rgba(0, 180, 216, 0.2);
            }
        }
        
        .step-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 30px;
            height: 30px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
        }
        
        .step-text h4 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .step-text p {
            color: #666;
            font-size: 0.95rem;
        }
        
        /* 服务套餐 */
        .pricing-section {
            background: rgba(248, 249, 255, 0.5);
            padding: 100px 0;
        }
        
        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .pricing-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 50px 40px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .pricing-card.popular:before {
            content: '最受欢迎';
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--gradient-accent);
            color: white;
            padding: 8px 40px;
            font-size: 0.9rem;
            font-weight: 600;
            transform: rotate(45deg);
        }
        
        .pricing-header {
            margin-bottom: 30px;
        }
        
        .pricing-header h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .pricing-header p {
            color: #666;
        }
        
        .price {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 30px;
        }
        
        .price span {
            font-size: 1rem;
            color: #999;
            font-weight: 500;
        }
        
        .pricing-features {
            list-style: none;
            margin-bottom: 40px;
            text-align: left;
        }
        
        .pricing-features li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .pricing-features li i {
            color: var(--accent);
            margin-right: 10px;
            font-size: 1.1rem;
        }
        
        .pricing-features li.disabled {
            color: #ccc;
        }
        
        .pricing-features li.disabled i {
            color: #ccc;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .process-steps {
                flex-wrap: wrap;
                gap: 40px;
            }
            
            .process-step {
                width: calc(50% - 20px);
            }
            
            .process-line {
                display: none;
            }
            
            .section-title h2 {
                font-size: 2.3rem;
            }
            
            .structure-level {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            
            .structure-connector {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.3rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .hero-actions {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .process-step {
                width: 100%;
            }
            
            .pricing-cards {
                grid-template-columns: 1fr;
            }
            
            .comparison-container {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .hero-stat-number {
                font-size: 2rem;
            }
            
            .structure-diagram {
                padding: 30px 20px;
            }
        }