/* ===== Hero区域样式 ===== */

/**
 * Hero区域 - 招商加盟页面
 * 采用深色渐变背景，与首页和关于我们页面保持一致的设计风格
 * 使用更高优先级覆盖styles.css中的样式
 */
body .hero {
    position: relative !important;
    height: 650px !important;
    min-height: 650px !important;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%) !important;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 !important;
    padding-top: 80px !important;
}

/**
 * Hero背景装饰 - 使用渐变色块和光晕效果
 */
body .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(34, 211, 238, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
    animation: pulseBackground 8s ease-in-out infinite;
    z-index: -2;
}

@keyframes pulseBackground {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

body .hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    z-index: -1;
}

/**
 * Hero内容容器
 */
body .hero .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
}

body .hero .hero-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
    align-items: center !important;
}

/**
 * Hero文本区域
 */
body .hero .hero-text {
    padding-right: 0 !important;
    text-align: left !important;
}

/**
 * Hero主标题
 */
body .hero h1 {
    font-size: 3rem !important;
    font-weight: 800 !important;
    margin-bottom: 20px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2 !important;
    text-shadow: none !important;
}

/**
 * Hero副标题
 */
body .hero .hero-subtitle {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    margin-bottom: 16px !important;
    color: #22d3ee !important;
}

/**
 * Hero描述文本
 */
body .hero .hero-description {
    font-size: 1rem !important;
    color: #cbd5e1 !important;
    line-height: 1.7 !important;
    margin-bottom: 32px !important;
}

/**
 * Hero按钮区域
 */
body .hero .hero-cta {
    display: flex !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
}

/**
 * Hero主按钮样式 - 深色背景优化
 */
body .hero .hero-cta .btn-primary {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 14px 32px !important;
    background: linear-gradient(135deg, #22d3ee 0%, #10b981 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 50px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(34, 211, 238, 0.4) !important;
}

body .hero .hero-cta .btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(34, 211, 238, 0.6) !important;
}

/**
 * Hero次按钮样式 - 深色背景优化
 */
body .hero .hero-cta .btn-outline {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 14px 32px !important;
    background: transparent !important;
    color: #22d3ee !important;
    border: 2px solid #22d3ee !important;
    border-radius: 50px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

body .hero .hero-cta .btn-outline:hover {
    background: rgba(34, 211, 238, 0.1) !important;
    color: #22d3ee !important;
    transform: translateY(-2px) !important;
}

/**
 * Hero图标区域
 */
body .hero .hero-image {
    display: flex !important;
    justify-content: center !important;
    align-items: flex-end !important;
    margin-top: 0 !important;
}

/**
 * Hero图标卡片 - 深色背景优化
 */
body .hero .hero-icon {
    width: 280px !important;
    height: 280px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 2px solid rgba(34, 211, 238, 0.2) !important;
    border-radius: 30px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(34, 211, 238, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 7rem !important;
    position: relative !important;
    overflow: hidden !important;
    backdrop-filter: blur(10px) !important;
    animation: float 6s ease-in-out infinite !important;
}

/**
 * Hero图标渐变背景
 */
body .hero .hero-icon::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%) !important;
}

body .hero .hero-icon i {
    position: relative !important;
    z-index: 1 !important;
    background: linear-gradient(135deg, #22d3ee 0%, #10b981 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/**
 * 粒子效果
 */
body .hero .particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

body .hero .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(34, 211, 238, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s infinite;
}

body .hero .particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

body .hero .particle:nth-child(2) {
    left: 20%;
    top: 60%;
    animation-delay: 2s;
}

body .hero .particle:nth-child(3) {
    left: 30%;
    top: 80%;
    animation-delay: 4s;
}

body .hero .particle:nth-child(4) {
    left: 40%;
    top: 40%;
    animation-delay: 6s;
}

body .hero .particle:nth-child(5) {
    left: 50%;
    top: 30%;
    animation-delay: 8s;
}

body .hero .particle:nth-child(6) {
    left: 60%;
    top: 70%;
    animation-delay: 10s;
}

body .hero .particle:nth-child(7) {
    left: 70%;
    top: 50%;
    animation-delay: 12s;
}

body .hero .particle:nth-child(8) {
    left: 80%;
    top: 20%;
    animation-delay: 14s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/**
 * 波浪效果
 */
body .hero .waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    z-index: 0;
}

body .hero .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: 50% 100%;
    animation: wave 10s linear infinite;
}

body .hero .wave:nth-child(2) {
    bottom: 10px;
    opacity: 0.5;
    animation: wave 15s linear infinite reverse;
}

body .hero .wave:nth-child(3) {
    bottom: 20px;
    opacity: 0.3;
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/**
 * 浮动动画
 */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/**
 * 响应式设计 - 平板设备
 */
@media (max-width: 992px) {
    body .hero {
        height: auto !important;
        min-height: 550px !important;
        padding: 60px 0 !important;
    }

    body .hero .container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center !important;
    }

    body .hero .hero-text {
        padding-right: 0 !important;
        text-align: center !important;
    }

    body .hero h1 {
        font-size: 2.5rem !important;
    }

    body .hero .hero-subtitle {
        font-size: 1.125rem !important;
    }

    body .hero .hero-description {
        font-size: 0.9375rem !important;
    }

    body .hero .hero-cta {
        justify-content: center !important;
    }

    body .hero .hero-icon {
        width: 220px !important;
        height: 220px !important;
        font-size: 5rem !important;
    }
}

/**
 * 响应式设计 - 移动设备
 */
@media (max-width: 768px) {
    /* Hero区域优化 - 参考services.html的处理方式 */
    body .hero {
        height: auto !important;
        min-height: 500px !important;
        padding: 120px 0 50px 0 !important;
    }

    /* Hero内容区域改为单列布局 */
    body .hero .hero-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center !important;
    }

    /* Hero文本区域居中对齐 */
    body .hero .hero-text {
        text-align: center !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    body .hero h1 {
        font-size: 2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 16px !important;
    }

    body .hero .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 12px !important;
    }

    body .hero .hero-description {
        font-size: 0.875rem !important;
        line-height: 1.6 !important;
        margin-bottom: 24px !important;
    }

    /* Hero按钮区域改为纵向排列 */
    body .hero .hero-cta {
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
    }

    body .hero .hero-cta .btn-primary,
    body .hero .hero-cta .btn-outline {
        width: 100% !important;
        max-width: 280px !important;
        padding: 12px 24px !important;
        font-size: 0.9375rem !important;
        justify-content: center !important;
    }

    /* Hero图标区域调整 */
    body .hero .hero-image {
        justify-content: center !important;
        align-items: center !important;
    }

    body .hero .hero-icon {
        width: 180px !important;
        height: 180px !important;
        font-size: 4rem !important;
    }

    /* 隐藏粒子效果以提升性能 */
    body .hero .particles {
        display: none !important;
    }

    /* 简化波浪效果 */
    body .hero .waves {
        opacity: 0.5 !important;
    }
}

/* ==================== Hero内容样式 ==================== */

/* ===== 品牌实力样式 ===== */
.brand-strength {
    padding: 100px 0;
    background: white;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
}

.strength-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.strength-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strength-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.strength-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #00d4aa 0%, #00c4a7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.strength-item h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: #333;
}

.strength-item p {
    color: #666;
    line-height: 1.6;
}

/* ===== 市场机遇样式 ===== */
.market-opportunity {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.opportunity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.opportunity-visual {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.chart-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/**
 * 图表头部样式
 * @description 包含图表标题和单位说明
 */
.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.chart-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.chart-unit {
    font-size: 0.875rem;
    color: #999;
    font-weight: 500;
}

/**
 * 图表主体样式
 * @description 包含Y轴、网格线和柱状图
 */
.chart-body {
    display: flex;
    gap: 20px;
    padding: 10px 0;
}

/**
 * Y轴样式
 * @description 显示刻度标签
 */
.chart-y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 0;
    min-width: 50px;
}

.y-axis-label {
    font-size: 0.75rem;
    color: #999;
    text-align: right;
    padding-right: 10px;
    height: 0;
    line-height: 0;
}

/**
 * 图表内容区域
 * @description 包含网格线和柱状图
 */
.chart-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    position: relative;
    min-height: 300px;
}

/**
 * 网格线样式
 * @description 背景参考线
 */
.chart-grid {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    z-index: 0;
}

.grid-line {
    width: 100%;
    height: 1px;
    background: #e8e8e8;
    border-bottom: 1px dashed #e8e8e8;
}

/**
 * 柱状图容器
 * @description 包含所有柱子
 */
.chart-bars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 30px;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    padding: 0 10px;
    z-index: 1;
}

/**
 * 柱子包装器
 * @description 包含单个柱子和标签
 */
.chart-bar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    width: 60px;
    height: 100%;
    justify-content: flex-end;
    position: relative;
}

/**
 * 单个柱子样式
 * @description 渐变色柱状图，带动画效果
 */
.chart-bar {
    width: 100%;
    height: 0; /* 初始高度为0，由JavaScript动态设置 */
    background: linear-gradient(135deg, #00d4aa 0%, #00c4a7 100%);
    border-radius: 8px 8px 0 0;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
    min-height: 10px; /* 确保最小高度 */
    flex-shrink: 0; /* 防止被压缩 */
}

.chart-bar:hover {
    transform: scaleY(1.05);
    transform-origin: bottom;
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.5);
}

/**
 * 柱子填充动画
 * @description 从底部向上生长的动画效果
 */
.bar-fill {
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: growUp 0.8s ease-out forwards;
}

@keyframes growUp {
    from {
        height: 0;
    }
    to {
        height: 100%;
    }
}

/**
 * 柱子提示框
 * @description 鼠标悬停显示的数值提示
 */
.bar-tooltip {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.bar-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #333;
}

.chart-bar:hover .bar-tooltip {
    opacity: 1;
    visibility: visible;
    top: -40px;
}

/**
 * 柱子标签
 * @description X轴年份标签
 */
.bar-label {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    margin-top: 8px;
}

.opportunity-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.opportunity-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.item-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4aa 0%, #00c4a7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.item-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #333;
}

.item-content p {
    color: #666;
    line-height: 1.6;
}

/* ===== 加盟优势样式 ===== */
.join-advantages {
    padding: 100px 0;
    background: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.advantage-card {
    padding: 40px 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #00d4aa;
}

.advantage-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #00d4aa 0%, #00c4a7 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
}

.advantage-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: #333;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
}

/* ===== 加盟模式样式 ===== */
.join-modes {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

.mode-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.mode-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.mode-card.featured {
    transform: scale(1.05);
    box-shadow: 0 8px 40px rgba(0, 212, 170, 0.3);
    border: 3px solid #00d4aa;
}

.mode-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.mode-featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #00d4aa 0%, #00c4a7 100%);
    color: white;
    padding: 8px 40px;
    font-size: 0.875rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.mode-header {
    padding: 30px;
    background: linear-gradient(135deg, #00d4aa 0%, #00c4a7 100%);
    color: white;
    text-align: center;
}

.mode-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.mode-badge {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.875rem;
}

.mode-body {
    padding: 30px;
}

.mode-price {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
}

.price-label {
    display: block;
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 8px;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4aa;
}

.mode-features {
    list-style: none;
    margin-bottom: 24px;
}

.mode-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mode-features li i {
    color: #00d4aa;
}

.mode-features li:last-child {
    border-bottom: none;
}

/* ===== 加盟支持样式 ===== */
.join-support {
    padding: 100px 0;
    background: white;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.support-item {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.support-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #00d4aa;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.2);
}

.support-item h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: #333;
}

.support-item p {
    color: #666;
    line-height: 1.6;
}

/* ===== 加盟流程样式 ===== */
.join-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.process-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    top: 50px;
    left: 50px;
    right: 50px;
    height: 4px;
    background: linear-gradient(90deg, #00d4aa 0%, #00c4a7 100%);
    z-index: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
    padding: 20px 10px;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #00d4aa 0%, #00c4a7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.step-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #00d4aa;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.process-step h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #333;
}

.process-step p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.4;
}

/* ===== 成功案例样式 ===== */
.success-cases {
    padding: 100px 0;
    background: white;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.case-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.case-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.case-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4aa 0%, #00c4a7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.case-info h3 {
    font-size: 1.125rem;
    margin-bottom: 4px;
    color: #333;
}

.case-info p {
    font-size: 0.875rem;
    color: #666;
}

.case-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.case-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

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

.case-stats .stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #00d4aa;
    margin-bottom: 4px;
}

.case-stats .stat-label {
    font-size: 0.75rem;
    color: #666;
}

/* ===== 加盟申请样式 ===== */
.join-application {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.application-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.application-info h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #333;
}

.application-info > p {
    color: #666;
    margin-bottom: 24px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 40px;
}

.benefits-list li {
    padding: 12px 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefits-list li i {
    color: #00d4aa;
    font-size: 1.25rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-item i {
    font-size: 1.5rem;
    color: #00d4aa;
}

.contact-text h4 {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 4px;
}

.contact-text p {
    font-size: 1.125rem;
    color: #333;
    font-weight: 600;
}

.application-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4aa;
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group label input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.form-group label span {
    font-weight: 400;
    color: #666;
}

/* ===== 常见问题样式 ===== */
.join-faq {
    padding: 100px 0;
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.125rem;
    color: #333;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #00d4aa;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 24px;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
}

/* ===== CTA区域样式 ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #00d4aa 0%, #00c4a7 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 16px;
}

.cta-content > p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ===== 按钮样式 ===== */
/**
 * 基础按钮样式
 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

/**
 * 主要按钮样式 - 渐变绿色背景
 */
.btn-primary {
    background: linear-gradient(135deg, #00d4aa 0%, #00c4a7 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4);
}

/**
 * 白色边框按钮样式
 */
.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #00d4aa;
}

/**
 * 白色背景按钮样式
 */
.btn-white {
    background: white;
    color: #00d4aa;
}

.btn-white:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/**
 * 大号按钮样式
 */
.btn-large {
    padding: 16px 40px;
    font-size: 1.125rem;
}

/**
 * 块级按钮样式
 */
.btn-block {
    width: 100%;
}

/* ===== 响应式设计 ===== */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-stats {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .opportunity-content {
        grid-template-columns: 1fr;
    }

    .application-content {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-line {
        display: none;
    }

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

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-visual {
        grid-template-columns: 1fr;
    }

    .hero-card:nth-child(1) {
        grid-column: span 1;
    }

    .section-title {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .join-hero {
        min-height: 500px;
        padding: 80px 0 var(--spacing-md) 0 !important;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .hero-stats {
        padding: 20px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    /* 品牌实力部分优化 */
    .strengths-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .strength-card {
        padding: 24px;
    }

    .strength-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .strength-card h3 {
        font-size: 1.125rem;
    }

    .strength-card p {
        font-size: 0.875rem;
    }

    /* 市场机遇部分优化 */
    .opportunity-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .opportunity-visual {
        order: -1;
    }

    .opportunity-visual img {
        height: 250px;
    }

    .opportunity-info h2 {
        font-size: 1.5rem;
    }

    .opportunity-info p {
        font-size: 0.9375rem;
    }

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

    .opportunity-stat {
        padding: 15px;
    }

    .opportunity-stat .stat-value {
        font-size: 1.5rem;
    }

    .opportunity-stat .stat-label {
        font-size: 0.875rem;
    }

    /* 加盟优势部分优化 */
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advantage-card {
        padding: 24px;
    }

    .advantage-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .advantage-card h3 {
        font-size: 1.125rem;
    }

    .advantage-card p {
        font-size: 0.875rem;
    }

    /* 加盟支持部分优化 */
    .supports-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .support-card {
        padding: 24px;
    }

    .support-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .support-card h3 {
        font-size: 1.125rem;
    }

    .support-card p {
        font-size: 0.875rem;
    }

    /* 加盟流程部分优化 */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-line {
        display: none;
    }

    .process-step {
        text-align: center;
        padding: 24px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto 16px;
    }

    .process-step h3 {
        font-size: 1.125rem;
    }

    .process-step p {
        font-size: 0.875rem;
    }

    /* 成功案例部分优化 */
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .case-card {
        padding: 24px;
    }

    .case-header {
        margin-bottom: 16px;
    }

    .case-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .case-info h3 {
        font-size: 1rem;
    }

    .case-info p {
        font-size: 0.8125rem;
    }

    .case-content p {
        font-size: 0.875rem;
    }

    .case-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding-top: 16px;
    }

    .case-stats .stat-value {
        font-size: 1.125rem;
    }

    .case-stats .stat-label {
        font-size: 0.6875rem;
    }

    /* 加盟申请部分优化 */
    .join-application {
        padding: 60px 0;
    }

    .application-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .application-info h3 {
        font-size: 1.25rem;
    }

    .application-info > p {
        font-size: 0.9375rem;
    }

    .benefits-list li {
        font-size: 0.9375rem;
    }

    .contact-item {
        padding: 16px;
    }

    .contact-item i {
        font-size: 1.25rem;
    }

    .contact-text h4 {
        font-size: 0.8125rem;
    }

    .contact-text p {
        font-size: 1rem;
    }

    .application-form {
        padding: 30px 20px;
    }

    .form-group label {
        font-size: 0.9375rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.9375rem;
        padding: 10px 14px;
    }

    /* 常见问题部分优化 */
    .join-faq {
        padding: 60px 0;
    }

    .faq-item {
        margin-bottom: 12px;
    }

    .faq-question {
        padding: 20px 24px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-question i {
        font-size: 1.125rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 24px 20px;
    }

    .faq-answer p {
        font-size: 0.9375rem;
    }

    /* CTA区域优化 */
    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-content > p {
        font-size: 1.125rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 1rem;
    }

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

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

    .mode-card.featured {
        transform: none;
    }

    .mode-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 576px) {
    /* Hero区域进一步优化 - 参考services.html的处理方式 */
    body .hero {
        min-height: 450px !important;
        padding: 100px 0 40px 0 !important;
    }

    body .hero h1 {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
        margin-bottom: 12px !important;
    }

    body .hero .hero-subtitle {
        font-size: 0.875rem !important;
        margin-bottom: 10px !important;
    }

    body .hero .hero-description {
        font-size: 0.8125rem !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
    }

    body .hero .hero-cta .btn-primary,
    body .hero .hero-cta .btn-outline {
        padding: 10px 20px !important;
        font-size: 0.875rem !important;
        max-width: 240px !important;
    }

    body .hero .hero-icon {
        width: 150px !important;
        height: 150px !important;
        font-size: 3rem !important;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.875rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero-icon {
        width: 150px !important;
        height: 150px !important;
        font-size: 4rem !important;
    }

    /* Hero区域优化 */
    .hero-stats {
        padding: 15px;
    }

    .stat-item {
        padding: 10px;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.8125rem;
    }

    .hero-actions {
        gap: 12px;
    }

    /* 品牌实力部分优化 */
    .strength-card {
        padding: 20px;
    }

    .strength-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .strength-card h3 {
        font-size: 1rem;
    }

    .strength-card p {
        font-size: 0.8125rem;
    }

    /* 市场机遇部分优化 */
    .opportunity-visual img {
        height: 200px;
    }

    .opportunity-info h2 {
        font-size: 1.25rem;
    }

    .opportunity-info p {
        font-size: 0.875rem;
    }

    .opportunity-stat {
        padding: 12px;
    }

    .opportunity-stat .stat-value {
        font-size: 1.25rem;
    }

    .opportunity-stat .stat-label {
        font-size: 0.8125rem;
    }

    /* 加盟优势部分优化 */
    .advantage-card {
        padding: 20px;
    }

    .advantage-icon {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }

    .advantage-card h3 {
        font-size: 1rem;
    }

    .advantage-card p {
        font-size: 0.8125rem;
    }

    /* 加盟支持部分优化 */
    .support-card {
        padding: 20px;
    }

    .support-icon {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }

    .support-card h3 {
        font-size: 1rem;
    }

    .support-card p {
        font-size: 0.8125rem;
    }

    /* 加盟流程部分优化 */
    .process-step {
        padding: 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin: 0 auto 12px;
    }

    .process-step h3 {
        font-size: 1rem;
    }

    .process-step p {
        font-size: 0.8125rem;
    }

    /* 成功案例部分优化 */
    .case-card {
        padding: 20px;
    }

    .case-icon {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }

    .case-info h3 {
        font-size: 0.9375rem;
    }

    .case-info p {
        font-size: 0.75rem;
    }

    .case-content p {
        font-size: 0.8125rem;
    }

    .case-stats {
        gap: 10px;
        padding-top: 12px;
    }

    .case-stats .stat-value {
        font-size: 1rem;
    }

    .case-stats .stat-label {
        font-size: 0.625rem;
    }

    /* 加盟申请部分优化 */
    .join-application {
        padding: 40px 0;
    }

    .application-info h3 {
        font-size: 1.125rem;
    }

    .application-info > p {
        font-size: 0.875rem;
    }

    .benefits-list li {
        font-size: 0.875rem;
        padding: 10px 0;
    }

    .contact-item {
        padding: 12px;
    }

    .contact-item i {
        font-size: 1.125rem;
    }

    .contact-text h4 {
        font-size: 0.75rem;
    }

    .contact-text p {
        font-size: 0.9375rem;
    }

    .application-form {
        padding: 24px 16px;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-group label {
        font-size: 0.875rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.875rem;
        padding: 10px 12px;
    }

    /* 常见问题部分优化 */
    .join-faq {
        padding: 40px 0;
    }

    .faq-item {
        margin-bottom: 10px;
    }

    .faq-question {
        padding: 16px 20px;
    }

    .faq-question h3 {
        font-size: 0.9375rem;
    }

    .faq-question i {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 16px;
    }

    .faq-answer p {
        font-size: 0.875rem;
    }

    /* CTA区域优化 */
    .cta-section {
        padding: 40px 0;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content > p {
        font-size: 1rem;
    }

    .cta-buttons {
        gap: 12px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.875rem;
    }

    .btn-large {
        padding: 12px 28px;
        font-size: 0.9375rem;
    }
}

/* ===== 底部栏样式 ===== */
/**
 * 底部栏 - 招商加盟页面
 * 包含公司信息、快速链接、联系方式和社交媒体
 */
/* ========== 响应式设计 ========== */