/* 融合架构页面专用样式 */

/* 表单状态提示样式 */
.form-status {
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.form-status.is-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-status.is-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* 轮播Banner样式 */
.carousel-banner {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #f8fafc;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.6), rgba(59, 130, 246, 0.6));
    display: flex;
    align-items: center;
    color: white;
}

.slide-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 600px;
}

.banner-actions {
    display: flex;
    gap: 16px;
}

/* 预约演示按钮样式 - 完全匹配首页按钮 */
.btn-demo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 980px;
    border: 1px solid #0071e3;
    background: transparent;
    color: #0071e3;
    font-weight: 400;
    font-size: 17px;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
}

.btn-demo:hover {
    background: #0071e3;
    color: #ffffff;
    transform: scale(1.02);
}

.btn-demo:active {
    background: #0066cc;
    border-color: #0066cc;
    transform: scale(0.98);
}

.btn-demo:focus-visible {
    outline: 2px solid #0071e3;
    outline-offset: 2px;
}

.banner-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.prev-btn, .next-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.banner-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* 核心优势部分样式 */
.core-advantages {
    background: white;
    padding: 50px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.advantage-item {
    text-align: center;
    padding: 10px 10px;
    border-radius: 0;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
}

.advantage-item:hover {
    transform: none;
    box-shadow: none;
    border: none;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
    color: #dc2626;
}

.advantage-icon svg {
    width: 35px;
    height: 35px;
    stroke-width: 2;
}

.advantage-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 3px;
    line-height: 1.1;
}

.advantage-item p {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.3;
    text-align: left;
}

/* 方案价值部分样式 */
.solution-value {
    background: #f8fafc;
    padding: 50px 0;
}

.value-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.value-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: none;
    box-shadow: none;
    border: none;
}

.value-card h3 {
    background: #C82F2F;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    padding: 15px 10px;
    line-height: 1.1;
    text-align: center;
}

.value-card p {
    background: white;
    color: #374151;
    font-size: 0.8rem;
    line-height: 1.3;
    text-align: left;
    margin: 0;
    padding: 15px 10px;
}

/* 应用场景部分样式 */
.application-scenarios {
    background: white;
    padding: 50px 0;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.scenario-item {
    display: flex;
    flex-direction: column;
    padding: 10px 10px;
    border-radius: 0;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
}

.scenario-item:hover {
    transform: none;
    box-shadow: none;
    border: none;
}

.scenario-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.scenario-icon {
    width: 40px;
    height: 40px;
    background: #3b82f6;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.scenario-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2.4;
}

.scenario-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #374151;
    margin: 0;
    line-height: 1.1;
    flex: 1;
}

.scenario-item p {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.4;
    text-align: left;
    margin: 8px 0 0;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .value-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .scenarios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .carousel-banner {
        height: 300px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .banner-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .core-advantages,
    .solution-value,
    .application-scenarios {
        padding: 40px 0;
    }
    
    .value-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .scenarios-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
