/* 灵猫巡销通 - 快消渠道巡店与销售管理数字化解决方案 专用样式 */

/* ==================== 通用样式覆盖 ==================== */
.sales-patrol-banner {
    max-height: 600px;
    background: linear-gradient(135deg, #1a5f7a 0%, #2d8f6f 50%, #3b9e6e 100%);
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    height: 70vh;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.sales-patrol-banner::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='%23ffffff' fill-opacity='0.05'%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");
    opacity: 0.5;
}

.sales-patrol-banner h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.sales-patrol-banner .subtitle {
    font-size: 24px;
    opacity: 0.95;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.sales-patrol-banner .mylabel {
    position: relative;
    z-index: 1;
}

/* ==================== 核心聚焦区域 ==================== */
.focus-section {
    background: linear-gradient(180deg, #f8fffe 0%, #ffffff 100%);
    padding: 80px 0;
    text-align: center;
}

.focus-section .focus-title {
    font-size: 36px;
    color: #1a5f7a;
    margin-bottom: 15px;
}

.focus-section .focus-desc {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.focus-tags {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.focus-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1a5f7a 0%, #2d8f6f 100%);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(26, 95, 122, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.focus-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(26, 95, 122, 0.4);
}

.focus-tag .icon {
    font-size: 24px;
}

/* ==================== 痛点挑战区域 ==================== */
.challenge-section {
    background: #f5f7fa;
    padding: 80px 0;
}

.challenge-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.challenge-section .section-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.challenge-section .section-header p {
    font-size: 18px;
    color: #666;
}

.challenge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.challenge-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.challenge-card .card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.challenge-card .card-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.challenge-card .card-title {
    font-size: 22px;
    color: #333;
    font-weight: 600;
}

.challenge-card .problem-list {
    margin-bottom: 25px;
}

.challenge-card .problem-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.challenge-card .problem-item .icon-wrong {
    color: #ff6b6b;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.challenge-card .solution-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2d8f6f;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 15px;
}

.challenge-card .solution-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #444;
    font-size: 15px;
    line-height: 1.6;
}

.challenge-card .solution-item .icon-check {
    color: #2d8f6f;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==================== 核心功能体系 ==================== */
.features-section {
    background: #fff;
    padding: 80px 0;
}

.features-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-section .section-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.features-box {
    max-width: 1200px;
    margin: 0 auto;
}

.feature-category {
    margin-bottom: 60px;
}

.feature-category-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    color: #1a5f7a;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #1a5f7a;
}

.feature-category-title .icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a5f7a 0%, #2d8f6f 100%);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-item {
    background: #f8fffe;
    border: 1px solid #e8f5f0;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s;
}

.feature-item:hover {
    border-color: #2d8f6f;
    box-shadow: 0 8px 30px rgba(45, 143, 111, 0.15);
    transform: translateY(-3px);
}

.feature-item .feature-title {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item .feature-title::before {
    content: '';
    width: 4px;
    height: 18px;
    background: linear-gradient(180deg, #1a5f7a 0%, #2d8f6f 100%);
    border-radius: 2px;
}

.feature-item .feature-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* ==================== 技术架构 ==================== */
.tech-section {
    background: linear-gradient(135deg, #1a5f7a 0%, #2d8f6f 100%);
    padding: 80px 0;
    color: #fff;
}

.tech-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tech-section .section-header h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.tech-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.tech-item .tech-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.tech-item .tech-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.tech-item .tech-desc {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.7;
}

/* ==================== AI能力层 ==================== */
.ai-section {
    background: #f8fffe;
    padding: 80px 0;
}

.ai-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.ai-section .section-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.ai-section .section-header h2::before,
.ai-section .section-header h2::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 38px;
    vertical-align: middle;
    background-size: contain;
    background-repeat: no-repeat;
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.ai-item {
    background: #fff;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.ai-item:hover {
    border-color: #2d8f6f;
    transform: translateY(-5px);
}

.ai-item .ai-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a5f7a 0%, #2d8f6f 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 25px;
}

.ai-item .ai-title {
    font-size: 20px;
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

.ai-item .ai-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* ==================== 行业解决方案 ==================== */
.industry-section {
    background: #fff;
    padding: 80px 0;
}

.industry-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.industry-section .section-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.industry-card {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f8f3 100%);
    border: 2px solid #2d8f6f;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(45, 143, 111, 0.2);
}

.industry-card .industry-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.industry-card .industry-title {
    font-size: 24px;
    color: #1a5f7a;
    font-weight: 600;
    margin-bottom: 15px;
}

.industry-card .industry-target {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.industry-card .industry-value {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
}

.industry-card .industry-value strong {
    color: #2d8f6f;
}

/* ==================== 客户案例 ==================== */
.cases-section {
    background: #f5f7fa;
    padding: 80px 0;
}

.cases-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.cases-section .section-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.case-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.case-card .case-title {
    font-size: 20px;
    color: #1a5f7a;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8f5f0;
}

.case-card .case-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.case-card .stat-item {
    text-align: center;
}

.case-card .stat-value {
    font-size: 28px;
    color: #2d8f6f;
    font-weight: 700;
}

.case-card .stat-label {
    font-size: 13px;
    color: #999;
    margin-top: 5px;
}

/* ==================== 交付能力 ==================== */
.delivery-section {
    background: linear-gradient(135deg, #1a5f7a 0%, #2d8f6f 100%);
    padding: 60px 0;
    color: #fff;
}

.delivery-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.delivery-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.delivery-item .delivery-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.delivery-item .delivery-text {
    font-size: 16px;
    font-weight: 500;
}

/* ==================== 为什么选择我们 ==================== */
.why-section {
    background: #fff;
    padding: 80px 0;
}

.why-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-section .section-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    background: #f8fffe;
    border: 1px solid #e8f5f0;
    transition: all 0.3s;
}

.why-item:hover {
    border-color: #2d8f6f;
    box-shadow: 0 10px 40px rgba(45, 143, 111, 0.15);
    transform: translateY(-5px);
}

.why-item .why-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.why-item .why-title {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin-bottom: 12px;
}

.why-item .why-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* ==================== 响应式适配 ==================== */
@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-grid,
    .ai-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sales-patrol-banner h1 {
        font-size: 32px;
    }

    .sales-patrol-banner .subtitle {
        font-size: 18px;
    }

    .focus-tags {
        gap: 20px;
    }

    .focus-tag {
        padding: 12px 20px;
        font-size: 15px;
    }

    .challenge-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .tech-grid,
    .ai-grid,
    .industry-grid,
    .cases-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .delivery-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .case-card .case-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ==================== 通用按钮样式 ==================== */
.sales-patrol-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #1a5f7a 0%, #2d8f6f 100%);
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.sales-patrol-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 95, 122, 0.4);
    color: #fff;
}

.sales-patrol-btn-outline {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.sales-patrol-btn-outline:hover {
    background: #fff;
    color: #1a5f7a;
}
