    color: var(--primary-500);
}

.pp-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 50%, #f8faff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.pp-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;
}

.pp-inner {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pp-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 0 40px;
}

.pp-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.pp-title-accent {
    background: linear-gradient(90deg, #0052d9, #606eff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.pp-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 24px;
}

.pp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.pp-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(36, 104, 242, 0.06);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(36, 104, 242, 0.04);
}

.pp-card:hover {
    border-color: rgba(36, 104, 242, 0.15);
    box-shadow: 0 8px 28px rgba(36, 104, 242, 0.1);
    transform: translateY(-4px);
}

.pp-card-img {
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: relative;
}

.pp-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pp-card:hover .pp-card-bg {
    transform: scale(1.03);
}

.pp-card-robot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    mix-blend-mode: screen;
    opacity: 0.9;
    transform-origin: center;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.pp-card:hover .pp-card-robot {
    opacity: 1;
    transform: scale(1.03);
}

.pp-card-img-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(255, 255, 255, 0.15) 100%);
    pointer-events: none;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.pp-card:hover .pp-card-img-mask {
    opacity: 0.6;
}

.pp-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pp-card-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 0;
    margin-bottom: 12px;
    width: fit-content;
}

.pp-card-badge--paygo {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.08);
}

.pp-card-badge--sub {
    color: #10b981;
    background: rgba(16, 185, 129, 0.08);
}

.pp-card-badge--bundle {
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.08);
}

.pp-card-badge--pkg {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.08);
}

.pp-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 26px;
    margin-bottom: 8px;
}

.pp-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 22px;
    margin-bottom: 16px;
}

.pp-card-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 auto;
}

.pp-card-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 20px;
}

.pp-card:nth-child(1) .pp-card-highlight iconify-icon { color: #3b82f6; }
.pp-card:nth-child(2) .pp-card-highlight iconify-icon { color: #10b981; }
.pp-card:nth-child(3) .pp-card-highlight iconify-icon { color: #8b5cf6; }
.pp-card:nth-child(4) .pp-card-highlight iconify-icon { color: #f59e0b; }

.pp-card-highlight iconify-icon {
    flex-shrink: 0;
}

.pp-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 20px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-500);
    background: rgba(36, 104, 242, 0.06);
    border-radius: 0;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: fit-content;
}

.pp-card-cta:hover {
    background: var(--primary-500);
    color: #fff;
    gap: 8px;
}

.pp-card-cta iconify-icon {
    transition: transform 0.2s ease;
}

.pp-card-cta:hover iconify-icon {
    transform: translateX(2px);
}

.pp-footer {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 28px 32px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(36, 104, 242, 0.06);
    border-radius: 0;
    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);
}

.pp-footer:hover {
    border-color: rgba(36, 104, 242, 0.15);
    box-shadow: 0 8px 28px rgba(36, 104, 242, 0.1);
}

.pp-footer-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.pp-footer-item iconify-icon {
    color: var(--primary-500);
    flex-shrink: 0;
}

.pp-footer-text {
    flex: 1;
}

.pp-footer-text strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 22px;
}

.pp-footer-text span {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 20px;
}

.pp-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-500);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pp-footer-link:hover {
    gap: 8px;
    color: var(--primary-600);
}

.pp-footer-link iconify-icon {
    transition: transform 0.2s ease;
}

.pp-footer-link:hover iconify-icon {
    transform: translateX(2px);
}

.pp-footer-divider {
    width: 1px;
    height: 48px;
    background: var(--border-color);
    flex-shrink: 0;
}

.partner-section {
    background: var(--bg-tertiary);
    padding: 80px 0;
}

.partner-inner {
    max-width: 1440px;
    margin: 0 auto;
}

.partner-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    padding: 0 40px;
}

.partner-header-line {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.partner-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
}

.partner-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    padding: 0 40px;
}

.logo-wall-track {
    margin-bottom: 20px;
}

.logo-wall-track:last-child {
    margin-bottom: 0;
}

.logo-wall-group {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 18px;
}

.logo-wall-item {
    position: relative;
}

.logo-wall-item-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.logo-wall-item-inner:hover {
    border-color: var(--primary-500);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.12);
    transform: translateY(-2px);
}

.logo-wall-img {
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    object-fit: contain;
    padding: 13px 17px;
    box-sizing: border-box;
}

.logo-wall-img--square {
    padding: 19px;
}

.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    background: white;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
}

.cloud-solution-section {
    background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 100%);
    padding: 80px 0;
}

.cloud-solution-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.cloud-solution-header {
    text-align: center;
    margin-bottom: 40px;
}

.cloud-solution-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 44px;
    margin-bottom: 16px;
}

.cloud-solution-title-accent {
    background: linear-gradient(90deg, #0052d9, #606eff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.cloud-solution-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 24px;
}

.cloud-solution-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--border-color);
}

.cloud-solution-tab-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    border-radius: 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
}

.cloud-solution-tab-item:hover {
    color: var(--text-primary);
    background: var(--bg-secondary);
}

.cloud-solution-tab-item.active {
    color: var(--primary-500);
    border-bottom-color: var(--primary-500);
    background: transparent;
}

.cloud-solution-tab-item.active .cloud-solution-tab-icon iconify-icon {
    color: var(--primary-500);
}

.cloud-solution-tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cloud-solution-panels {
    min-height: 400px;
}

.cloud-solution-panel {
    display: none;
}

.cloud-solution-panel.active {
    display: flex;
    gap: 48px;
    animation: fadeIn 0.4s ease;
}

.cloud-solution-panel-left {
    flex: 1;
    min-width: 0;
}

.cloud-solution-panel-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.cloud-solution-panel-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.cloud-solution-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;