    background: transparent;
    color: var(--primary-500);
    border: 1px solid var(--primary-500);
}

.package-card-btn--outline:hover {
    background: var(--primary-500);
    color: #fff;
}

.enterprise-grid-vertical {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.enterprise-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.enterprise-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-500);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.enterprise-card:hover::before {
    opacity: 1;
}

.enterprise-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(36, 104, 242, 0.1);
}

.enterprise-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(59, 130, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.enterprise-card:hover::after {
    opacity: 1;
}

.enterprise-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.35s ease;
}

.enterprise-card:nth-child(1) .enterprise-card-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
    color: #3b82f6;
}

.enterprise-card:nth-child(2) .enterprise-card-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
    color: #8b5cf6;
}

.enterprise-card:nth-child(3) .enterprise-card-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    color: #10b981;
}

.enterprise-card:nth-child(4) .enterprise-card-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
    color: #f59e0b;
}

.enterprise-card:hover .enterprise-card-icon {
    transform: scale(1.08);
}

.enterprise-card-content {
    flex: 1;
}

.enterprise-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 24px;
}

.enterprise-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 22px;
}

.enterprise-card-arrow {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: rgba(59, 130, 246, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-500);
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.35s ease;
}

.enterprise-card:hover .enterprise-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .enterprise-grid-vertical {
        max-width: 100%;
    }

    .enterprise-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .enterprise-card-arrow {
        display: none;
    }
}

.hot-recommend-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f5f8fc 0%, #f8fafd 40%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hot-recommend-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232468F2' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hot-recommend-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}

.hot-recommend-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    padding: 0 160px;
}

.hot-recommend-header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.hot-recommend-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 48px;
}

.hot-recommend-title-gradient {
    background: linear-gradient(90deg, #0052d9, #606eff);
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hot-recommend-explore {
    position: absolute;
    right: 0;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: var(--text-primary);
    padding: 2px 35px 2px 15px;
    border: 1px solid var(--text-primary);
    border-radius: 0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.hot-recommend-explore:hover {
    background: rgba(0, 0, 0, 0.04);
    color: var(--primary-500);
    border-color: var(--primary-500);
}

.hot-recommend-explore::after {
    content: '→';
    position: absolute;
    right: 12px;
    font-size: 12px;
}

.hot-recommend-tab {
    margin-bottom: 24px;
}

.hot-recommend-tab-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--border-color);
}

.hot-recommend-tab-col {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    justify-content: center;
}

.hot-recommend-tab-col::-webkit-scrollbar {
    display: none;
}

.hot-recommend-tab-item {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 16px 28px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    border-bottom: 3px solid transparent;
    position: relative;
    background: transparent;
}

.hot-recommend-tab-item:hover {
    color: var(--text-primary);
    background: var(--bg-secondary);
}

.hot-recommend-tab-item.active {
    color: var(--primary-500);
    font-weight: 600;
    border-bottom-color: var(--primary-500);
    background: transparent;
}

.hot-recommend-body {
    display: flex;
    gap: 0;
    justify-content: center;
}

.hot-recommend-content {
    flex: 1;
    min-width: 0;
    max-width: 1440px;
}

.hot-recommend-panel {
    display: none;
}

.hot-recommend-panel.active {
    display: block;
}

.hot-recommend-grid {
    display: grid;
    grid-template-columns: repeat(5, 288px);
    gap: 0;
    justify-content: center;
}

.hot-recommend-card {
    display: flex;
    flex-direction: column;
    width: 288px;
    height: 160px;
    padding: 20px;
    border-bottom: 1px solid #f0f2f5;
    border-right: 1px solid #f0f2f5;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
    overflow: hidden;
}

.hot-recommend-card:hover {
    background: rgba(0, 82, 217, 0.02);
    z-index: 1;
}

.hot-recommend-card:hover .hot-recommend-card-title {
    color: var(--primary-500);
}

.hot-recommend-card:hover .hot-recommend-card-arrow {
    opacity: 1;
    transform: translateX(2px);
}

.hot-recommend-card-inner {
    flex: 1;
    min-width: 0;
}

.hot-recommend-card-hd {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.hot-recommend-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 24px;
    transition: color 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hot-recommend-card-arrow {
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.25s ease;
    color: var(--primary-500);
    flex-shrink: 0;
}

.hr-card-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    opacity: 1 !important;
    transform: none !important;
}

.hot-recommend-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 22px;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hot-recommend-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 6px;
}

.hot-recommend-card-tag {
    font-size: 12px;
    padding: 1px 6px;
    color: var(--text-secondary);
    background: #f5f7fa;
    border-radius: var(--radius-xs);
    white-space: nowrap;
}

.hot-recommend-card-tag.tag-advantage {
    color: rgba(0, 82, 217, 0.85);
    background: rgba(0, 82, 217, 0.06);
}

@media (max-width: 1439px) {
    .hot-recommend-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .hot-recommend-card {
        width: auto;
        height: 160px;
    }
}

@media (max-width: 1200px) {
    .hot-recommend-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .model-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hot-recommend-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }

    .logo {
        margin-right: 16px;
    }

    .nav-links {
        display: none;
    }

    .search-container {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 28px;
        line-height: 36px;
    }

    .nav-actions .btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .nav-actions .btn-ghost {
        display: none;
    }

    .tabs {
        overflow-x: auto;
        justify-content: flex-start;
    }

    .tab {
        white-space: nowrap;
        padding: 14px 20px;
    }

    .scene-grid {
        grid-template-columns: 1fr;
    }

    .showcase-inner {
        grid-template-columns: 1fr;
    }

    .showcase-item {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .showcase-item:last-child {
        border-bottom: none;
    }

    .model-grid,
    .advantage-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pp-section {
        padding: 60px 0;
    }

    .pp-header {
        padding: 0 20px;
    }

    .pp-title {
        font-size: 28px;
        line-height: 36px;
    }

    .pp-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pp-card-body {
        padding: 20px;
    }

    .pp-footer {
        flex-direction: column;
        gap: 20px;
        padding: 24px 20px;
    }

    .pp-footer-divider {
        width: 100%;
        height: 1px;
    }

    .model-grid-5 {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hot-recommend-section {
        padding: 60px 0;
    }

    .hot-recommend-inner {
        padding: 0 20px;
    }

    .hot-recommend-header {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .hot-recommend-explore {
        position: static;
    }

    .hot-recommend-title {
        font-size: 32px;
        line-height: 40px;
    }

    .hot-recommend-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hot-recommend-card {
        border-right: none;
        height: auto;
        min-height: 140px;
    }
}

@media (max-width: 576px) {
    .hot-recommend-grid {
        grid-template-columns: 1fr;
    }
}

.scene-dev-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 50%, #f8faff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.scene-dev-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232468F2' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.scene-dev-inner {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.scene-dev-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-500);
    background: rgba(36, 104, 242, 0.08);
    border-radius: 0;
    margin-bottom: 16px;
}

.scene-dev-section .section-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 0 40px;
}

.scene-dev-section .section-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.scene-dev-section .section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 24px;
}

.scene-dev-title-gradient {
    background: linear-gradient(90deg, #0052d9, #606eff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.scene-dev-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
    overflow-x: auto;
    padding-bottom: 0;
    padding-left: 40px;
    padding-right: 40px;
    -webkit-overflow-scrolling: touch;
    justify-content: center;
    border-bottom: 2px solid var(--border-color);
}

.scene-dev-tabs::-webkit-scrollbar {
    height: 3px;
}

.scene-dev-tabs::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 0;
}

.scene-dev-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    outline: none;
}

.scene-dev-tab:hover {
    color: var(--primary-500);
    background: transparent;
}

.scene-dev-tab.active {
    color: var(--primary-500);
    font-weight: 600;
    border-bottom-color: var(--primary-500);
    background: transparent;
}

.scene-dev-tab.active iconify-icon {
    color: var(--primary-500);
}

.scene-dev-panels {
    position: relative;
}

.scene-dev-panel {
    display: none;
    border: 1px solid rgba(36, 104, 242, 0.06);
    border-radius: 0;
    overflow: hidden;
    animation: scenePanelFadeIn 0.4s ease;
    height: 450px;
    box-shadow: 0 2px 12px rgba(36, 104, 242, 0.04);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scene-dev-panel:hover {
    border-color: rgba(36, 104, 242, 0.15);
    box-shadow: 0 8px 28px rgba(36, 104, 242, 0.1);
}

.scene-dev-panel.active {
    display: grid;
    grid-template-columns: 380px 1fr;
}

@keyframes scenePanelFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scene-dev-panel-left {
    padding: 28px 28px;
    background: linear-gradient(180deg, rgba(36, 104, 242, 0.03) 0%, rgba(36, 104, 242, 0.01) 100%);
    border-right: 1px solid rgba(36, 104, 242, 0.06);
    display: flex;
    flex-direction: column;
}

.scene-dev-panel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.scene-dev-panel-icon {
    width: 40px;
    height: 40px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.scene-dev-panel-icon--education {
    background: rgba(36, 104, 242, 0.08);
    color: var(--primary-500);
}

.scene-dev-panel-icon--video {
    background: rgba(239, 68, 68, 0.08);
    color: #ef4444;
}

.scene-dev-panel-icon--enterprise {
    background: rgba(139, 92, 246, 0.08);
    color: #8b5cf6;
}

.scene-dev-panel-icon--ecommerce {
    background: rgba(245, 158, 11, 0.08);
    color: #f59e0b;
}

.scene-dev-panel-icon--solo {
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
}

.scene-dev-panel-icon--government {
    background: rgba(6, 182, 212, 0.08);
    color: #06b6d4;
}

.scene-dev-panel-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 26px;
    margin-bottom: 0;
}

.scene-dev-panel-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 20px;
    margin-bottom: 12px;
}

.scene-dev-panel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.scene-dev-tag {
    display: inline-block;
    padding: 3px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 0;
}

.scene-dev-tag--education {
    color: var(--primary-500);
    background: rgba(36, 104, 242, 0.08);
}

.scene-dev-tag--video {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.08);
}

.scene-dev-tag--enterprise {
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.08);
}

.scene-dev-tag--ecommerce {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.08);
}

.scene-dev-tag--solo {
    color: #10b981;
    background: rgba(16, 185, 129, 0.08);
}

.scene-dev-tag--government {
    color: #06b6d4;
    background: rgba(6, 182, 212, 0.08);
}

.scene-dev-panel-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.scene-dev-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-tertiary);
    line-height: 18px;
}

.scene-dev-meta-item iconify-icon {
    flex-shrink: 0;
    color: var(--gray-400);
}

.scene-dev-panel-highlight {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    padding: 10px 14px;
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 18px;
    border-radius: 0;
    margin-bottom: 16px;
    border-left: 3px solid var(--primary-500);
    background: rgba(36, 104, 242, 0.04);
}

.scene-dev-panel-highlight iconify-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.scene-dev-panel-highlight--education {
    border-left-color: var(--primary-500);
    background: rgba(36, 104, 242, 0.04);
}

.scene-dev-panel-highlight--education iconify-icon {
    color: var(--primary-500);
}

.scene-dev-panel-highlight--video {
    border-left-color: #ef4444;
    background: rgba(239, 68, 68, 0.04);
}

.scene-dev-panel-highlight--video iconify-icon {
    color: #ef4444;
}

.scene-dev-panel-highlight--enterprise {
    border-left-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.04);
}

.scene-dev-panel-highlight--enterprise iconify-icon {
    color: #8b5cf6;
}

.scene-dev-panel-highlight--ecommerce {
    border-left-color: #f59e0b;
    background: rgba(245, 158, 11, 0.04);
}

.scene-dev-panel-highlight--ecommerce iconify-icon {
    color: #f59e0b;
}

.scene-dev-panel-highlight--solo {
    border-left-color: #10b981;
    background: rgba(16, 185, 129, 0.04);
}

.scene-dev-panel-highlight--solo iconify-icon {
    color: #10b981;
}

.scene-dev-panel-highlight--government {
    border-left-color: #06b6d4;
    background: rgba(6, 182, 212, 0.04);
}

.scene-dev-panel-highlight--government iconify-icon {
    color: #06b6d4;
}

.scene-dev-panel-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.scene-dev-panel-cta:hover {
    box-shadow: 0 8px 30px rgba(36, 104, 242, 0.35);
    transform: translateY(-2px);
}

.scene-dev-panel-cta--education {
    background: linear-gradient(135deg, var(--primary-500), #4656ff);
}

.scene-dev-panel-cta--video {
    background: linear-gradient(135deg, #ef4444, #f87171);
}

.scene-dev-panel-cta--video:hover {
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.35);
}

.scene-dev-panel-cta--enterprise {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.scene-dev-panel-cta--enterprise:hover {
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.35);
}

.scene-dev-panel-cta--ecommerce {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.scene-dev-panel-cta--ecommerce:hover {
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.35);
}

.scene-dev-panel-cta--solo {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.scene-dev-panel-cta--solo:hover {
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.35);
}

.scene-dev-panel-cta--government {
    background: linear-gradient(135deg, #06b6d4, #22d3ee);
}

.scene-dev-panel-cta--government:hover {
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.35);
}

.scene-dev-panel-right {
    padding: 28px 28px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.scene-dev-panel-right--education::after {
    content: '';
    position: absolute;
    right: -50px;
    top: 0;
    width: 410px;
    height: 100%;
    background:
        linear-gradient(to right, #ffffff 0%, #ffffff 8%, rgba(255,255,255,0.85) 18%, rgba(255,255,255,0.4) 28%, rgba(255,255,255,0) 38%),
        linear-gradient(to bottom, #ffffff 0%, #ffffff 5%, rgba(255,255,255,0.7) 12%, rgba(255,255,255,0.15) 20%, rgba(255,255,255,0) 30%),
        linear-gradient(to top, #ffffff 0%, #ffffff 5%, rgba(255,255,255,0.7) 12%, rgba(255,255,255,0.15) 20%, rgba(255,255,255,0) 30%),
        url('../images/Bg-img/jiaoyu-Openclaw.png') no-repeat center center / cover;
    pointer-events: none;
    z-index: 0;
}

.scene-dev-panel-right--education::before {
    display: none;
}

.scene-dev-panel-right--video::after {
    content: '';
    position: absolute;
    right: -50px;
    top: 0;
    width: 410px;
    height: 100%;
    background:
        linear-gradient(to right, #ffffff 0%, #ffffff 8%, rgba(255,255,255,0.85) 18%, rgba(255,255,255,0.4) 28%, rgba(255,255,255,0) 38%),
        linear-gradient(to bottom, #ffffff 0%, #ffffff 5%, rgba(255,255,255,0.7) 12%, rgba(255,255,255,0.15) 20%, rgba(255,255,255,0) 30%),
        linear-gradient(to top, #ffffff 0%, #ffffff 5%, rgba(255,255,255,0.7) 12%, rgba(255,255,255,0.15) 20%, rgba(255,255,255,0) 30%),
        url('../images/Bg-img/duanshipin.png') no-repeat center center / cover;
    pointer-events: none;
    z-index: 0;
}

.scene-dev-panel-right--video::before {
    display: none;
}

.scene-dev-panel-right--enterprise::after {
    content: '';
    position: absolute;
    right: -50px;
    top: 0;
    width: 410px;
    height: 100%;
    background:
        linear-gradient(to right, #ffffff 0%, #ffffff 8%, rgba(255,255,255,0.85) 18%, rgba(255,255,255,0.4) 28%, rgba(255,255,255,0) 38%),
        linear-gradient(to bottom, #ffffff 0%, #ffffff 5%, rgba(255,255,255,0.7) 12%, rgba(255,255,255,0.15) 20%, rgba(255,255,255,0) 30%),
        linear-gradient(to top, #ffffff 0%, #ffffff 5%, rgba(255,255,255,0.7) 12%, rgba(255,255,255,0.15) 20%, rgba(255,255,255,0) 30%),
        url('../images/Bg-img/qiye.png') no-repeat center center / cover;
    pointer-events: none;
    z-index: 0;
}

.scene-dev-panel-right--enterprise::before {
    display: none;
}

.scene-dev-panel-right--ecommerce::after {
    content: '';
    position: absolute;
    right: -50px;
    top: 0;
    width: 410px;
    height: 100%;
    background:
        linear-gradient(to right, #ffffff 0%, #ffffff 8%, rgba(255,255,255,0.85) 18%, rgba(255,255,255,0.4) 28%, rgba(255,255,255,0) 38%),
        linear-gradient(to bottom, #ffffff 0%, #ffffff 5%, rgba(255,255,255,0.7) 12%, rgba(255,255,255,0.15) 20%, rgba(255,255,255,0) 30%),
        linear-gradient(to top, #ffffff 0%, #ffffff 5%, rgba(255,255,255,0.7) 12%, rgba(255,255,255,0.15) 20%, rgba(255,255,255,0) 30%),
        url('../images/Bg-img/shop.png') no-repeat center center / cover;
    pointer-events: none;
    z-index: 0;
}

.scene-dev-panel-right--ecommerce::before {
    display: none;
}

.scene-dev-panel-right--solo::after {
    content: '';
    position: absolute;
    right: -50px;
    top: 0;
    width: 410px;
    height: 100%;
    background:
        linear-gradient(to right, #ffffff 0%, #ffffff 8%, rgba(255,255,255,0.85) 18%, rgba(255,255,255,0.4) 28%, rgba(255,255,255,0) 38%),
        linear-gradient(to bottom, #ffffff 0%, #ffffff 5%, rgba(255,255,255,0.7) 12%, rgba(255,255,255,0.15) 20%, rgba(255,255,255,0) 30%),
        linear-gradient(to top, #ffffff 0%, #ffffff 5%, rgba(255,255,255,0.7) 12%, rgba(255,255,255,0.15) 20%, rgba(255,255,255,0) 30%),
        url('../images/Bg-img/one.png') no-repeat center center / cover;
    pointer-events: none;
    z-index: 0;
}

.scene-dev-panel-right--solo::before {
    display: none;
}

.scene-dev-panel-right--government::after {
    content: '';
    position: absolute;
    right: -50px;
    top: 0;
    width: 410px;
    height: 100%;
    background:
        linear-gradient(to right, #ffffff 0%, #ffffff 8%, rgba(255,255,255,0.85) 18%, rgba(255,255,255,0.4) 28%, rgba(255,255,255,0) 38%),
        linear-gradient(to bottom, #ffffff 0%, #ffffff 5%, rgba(255,255,255,0.7) 12%, rgba(255,255,255,0.15) 20%, rgba(255,255,255,0) 30%),
        linear-gradient(to top, #ffffff 0%, #ffffff 5%, rgba(255,255,255,0.7) 12%, rgba(255,255,255,0.15) 20%, rgba(255,255,255,0) 30%),
        url('../images/Bg-img/zhengwu.png') no-repeat center center / cover;
    pointer-events: none;
    z-index: 0;
}

.scene-dev-panel-right--government::before {
    display: none;
}

.scene-dev-feature-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
}

.scene-dev-feature-item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(36, 104, 242, 0.04);
}

.scene-dev-feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.scene-dev-feature-item:first-child {
    padding-top: 0;
}

.scene-dev-feature-num {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-500);
    line-height: 20px;
    flex-shrink: 0;
    width: 24px;
    opacity: 0.6;
}

.scene-dev-feature-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 20px;
    margin-bottom: 2px;
}

.scene-dev-feature-content p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 18px;
}

.scene-dev-more {
    margin-top: 60px;
    padding: 0 40px;
}

.scene-dev-more-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-align: center;
}

.scene-dev-more-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.scene-dev-more-card {
    padding: 24px 20px;
    background: #fff;
    border: 1px solid rgba(36, 104, 242, 0.06);
    border-radius: 0;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scene-dev-more-card:hover {
    border-color: rgba(36, 104, 242, 0.15);
    box-shadow: 0 8px 28px rgba(36, 104, 242, 0.1);
    transform: translateY(-4px);
}

.scene-dev-more-card iconify-icon {
    color: var(--primary-500);
    margin-bottom: 12px;
}

.scene-dev-more-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.scene-dev-more-card p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 18px;
}

.scene-dev-more-card--cta {
    background: linear-gradient(135deg, rgba(36, 104, 242, 0.04), rgba(96, 110, 255, 0.02));
    border-style: dashed;
}

.scene-dev-more-card--cta iconify-icon {
    color: var(--gray-400);
}

.scene-dev-more-card--cta:hover iconify-icon {
    color: var(--primary-500);
}

@media (max-width: 1200px) {
    .scene-dev-panel.active {
        grid-template-columns: 320px 1fr;
    }

    .scene-dev-more-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .scene-dev-section {
        padding: 60px 20px;
    }

    .scene-dev-section .section-header {
        padding: 0;
    }

    .scene-dev-tabs {
        gap: 0;
        justify-content: flex-start;
        padding-left: 0;
        padding-right: 0;
    }

    .scene-dev-tab {
        padding: 12px 16px;
        font-size: 13px;
    }

    .scene-dev-panel.active {
        grid-template-columns: 1fr;
    }

    .scene-dev-panel-left {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 24px 20px;
    }

    .scene-dev-panel-right {
        padding: 24px 20px;
        height: auto;
    }

    .scene-dev-more {
        padding: 0;
    }

    .scene-dev-more-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .scene-dev-more-grid {
        grid-template-columns: 1fr;
    }
}
