/* 页面专用样式 - 美化版本 */

/* 页面头部横幅 - 重新设计 */
.page-hero {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 50%, #42a5f5 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.platform-info {
    text-align: left;
}

.platform-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.platform-visual::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: visualFloat 4s ease-in-out infinite;
}

.platform-visual::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-radius: 50%;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: visualFloat 3s ease-in-out infinite reverse;
}

@keyframes visualFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.platform-logo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    animation: logoFloat 3s ease-in-out infinite;
}

.platform-logo::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #3498db, #1e88e5, #3498db);
    border-radius: 50%;
    z-index: -1;
    animation: rotate 4s linear infinite;
}

.platform-logo i {
    font-size: 60px;
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: iconPulse 2s ease-in-out infinite;
}

.platform-info h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
    line-height: 1.1;
    letter-spacing: -1px;
}

.platform-subtitle {
    font-size: 20px;
    margin-bottom: 50px;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.1); }
}

.platform-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 0;
}

.platform-stats .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.platform-stats .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.platform-stats .stat-item:hover::before {
    left: 100%;
}

.platform-stats .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.platform-stats .stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 6px;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: numberCount 2s ease-out;
    line-height: 1;
}

.platform-stats .stat-label {
    font-size: 13px;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.2;
}

@keyframes numberCount {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* 服务优势 - 重新设计 */
.service-advantages {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    position: relative;
    line-height: 1.2;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
}

.service-advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,0,0,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 0;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.advantage-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: left;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        0 1px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #1e88e5, #3498db);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.advantage-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #3498db, #1e88e5, #3498db);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.advantage-card:hover .advantage-icon::before {
    opacity: 1;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
}

.advantage-icon i {
    font-size: 40px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.advantage-card h3 {
    font-size: 22px;
    margin-bottom: 0;
    color: #2c3e50;
    font-weight: 700;
    position: relative;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    font-weight: 400;
    margin: 0;
}

/* 开店流程 - 重新设计 */
.process-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots2" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(102,126,234,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots2)"/></svg>');
    opacity: 0.5;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 0;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 40px 25px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step:hover::before {
    opacity: 1;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    box-shadow: 
        0 8px 20px rgba(102, 126, 234, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #3498db, #1e88e5, #3498db);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step:hover .step-number::before {
    opacity: 1;
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 0;
    color: #2c3e50;
    font-weight: 700;
    position: relative;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    font-weight: 400;
    margin: 0;
}

/* 表单和咨询区域 - 重新设计 */
.form-consultation {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.form-consultation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(52, 152, 219, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(41, 128, 185, 0.06) 0%, transparent 50%);
    opacity: 1;
    pointer-events: none;
}

.form-consultation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waves" width="100" height="20" patternUnits="userSpaceOnUse"><path d="M0,10 Q25,0 50,10 T100,10 V20 H0 Z" fill="rgba(52,152,219,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.form-consultation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 0;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.form-section {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 20px;
    padding: 45px 40px;
    box-shadow: 
        0 10px 30px rgba(52, 152, 219, 0.12),
        0 8px 25px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
    border: 1px solid rgba(52, 152, 219, 0.15);
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2980b9, #42a5f5);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

@keyframes formFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-header {
    text-align: center;
    margin-bottom: 45px;
    position: relative;
    z-index: 2;
}

.form-header h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
    position: relative;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.form-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(52, 152, 219, 0.4);
}

.form-header p {
    color: #666;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    margin: 15px 0 0 0;
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
    font-size: 14px;
    position: relative;
    line-height: 1.4;
}

.form-group label::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 0;
    color: #3498db;
    font-size: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 13px 17px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    font-family: inherit;
    position: relative;
    line-height: 1.5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 
        0 0 0 4px rgba(52, 152, 219, 0.1),
        0 4px 15px rgba(52, 152, 219, 0.18),
        0 1px 4px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    background: #ffffff;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #64b5f6;
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.12);
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 12px;
    padding: 15px;
    background: rgba(52, 152, 219, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #5a6c7d;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    background: rgba(52, 152, 219, 0.05);
    color: #3498db;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #3498db;
    cursor: pointer;
    border-radius: 4px;
}

.link {
    color: #3498db;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

.btn-submit {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 25px;
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.5px;
    box-shadow: 
        0 6px 20px rgba(52, 152, 219, 0.35),
        0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(52, 152, 219, 0.45),
        0 4px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #42a5f5, #3498db);
}

.btn-submit:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.35);
}

/* 表单字段增强样式 */
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%233498db' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px;
    padding-right: 45px;
    cursor: pointer;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .form-consultation {
        padding: 60px 0;
    }
    
    .form-section {
        padding: 35px 25px;
        border-radius: 20px;
        margin: 0 15px;
    }
    
    .form-header h2 {
        font-size: 26px;
    }
    
    .form-header p {
        font-size: 14px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .checkbox-group {
        gap: 10px;
        padding: 12px;
    }
    
    .checkbox-label {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .btn-submit {
        padding: 16px 35px;
        font-size: 15px;
        width: 100%;
    }
}

/* 咨询区域 */
.consultation-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.consultation-header {
    text-align: center;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.06),
        0 1px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.consultation-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9, #42a5f5);
}

.consultation-header h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.consultation-header p {
    color: #666;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

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

.consultation-method {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.06),
        0 1px 6px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.consultation-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02), rgba(118, 75, 162, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.consultation-method:hover::before {
    opacity: 1;
}

.consultation-method:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.12),
        0 5px 15px rgba(0, 0, 0, 0.08);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.method-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #3498db, #1e88e5, #3498db);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.consultation-method:hover .method-icon::before {
    opacity: 1;
}

.consultation-method:hover .method-icon {
    transform: scale(1.1) rotate(5deg);
}

.method-icon i {
    font-size: 24px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.method-content h3 {
    font-size: 16px;
    margin-bottom: 6px;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.method-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 400;
    line-height: 1.4;
}

.method-time {
    font-size: 12px;
    color: #999;
    font-weight: 400;
    line-height: 1.3;
}

.qr-code {
    margin-top: 10px;
}

.qr-placeholder {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #999;
    font-size: 12px;
}

.btn-chat {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-chat:hover {
    background: #2980b9;
}

/* FAQ区域 */
.faq-section {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.06),
        0 1px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9, #42a5f5);
}

.faq-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
    position: relative;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.faq-section h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 35px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid #e1e5e9;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item:hover {
    border-color: #3498db;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

.faq-question {
    padding: 20px 25px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #3498db, #2980b9);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item:hover .faq-question::before {
    transform: scaleY(1);
}

.faq-question:hover {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
}

.faq-question span {
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
    line-height: 1.4;
}

.faq-question i {
    color: #3498db;
    transition: all 0.3s ease;
    font-size: 16px;
}

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

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}

/* 成功案例 - 重新设计 */
.success-cases {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.success-cases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(102,126,234,0.1)"/><circle cx="10" cy="10" r="0.5" fill="rgba(102,126,234,0.1)"/><circle cx="40" cy="15" r="0.5" fill="rgba(102,126,234,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 0;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.case-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.06),
        0 1px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2980b9, #42a5f5);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.case-card:hover::before {
    transform: scaleX(1);
}

.case-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1);
}

.case-image {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.case-image::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #3498db, #1e88e5, #3498db);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.case-card:hover .case-image::before {
    opacity: 1;
}

.case-card:hover .case-image {
    transform: scale(1.1) rotate(5deg);
}

.case-image i {
    font-size: 32px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.case-content h3 {
    font-size: 20px;
    margin-bottom: 0;
    color: #2c3e50;
    font-weight: 700;
    position: relative;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.case-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 400;
}

.case-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.case-stats .stat {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    color: #3498db;
    font-weight: 500;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    line-height: 1.2;
}

.case-stats .stat:hover {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    transform: translateY(-2px);
}

/* 浮动聊天 */
.floating-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.5);
    background: linear-gradient(135deg, #42a5f5, #3498db);
}

.chat-toggle.active {
    background: linear-gradient(135deg, #2980b9, #1e88e5);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-window.active {
    display: flex;
}

.chat-header {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin: 0;
    font-size: 16px;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    max-width: 80%;
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
}

.message-content {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 15px;
    font-size: 14px;
    line-height: 1.4;
}

.user-message .message-content {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.chat-input {
    padding: 15px 20px;
    border-top: 1px solid #e1e5e9;
    display: flex;
    gap: 10px;
}

.chat-input input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #e1e5e9;
    border-radius: 20px;
    font-size: 14px;
    outline: none;
}

.chat-input input:focus {
    border-color: #3498db;
}

.chat-input button {
    background: #3498db;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 响应式设计 - 重新设计 */
@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 60px;
        min-height: 60vh;
    }
    
    .page-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .platform-info {
        text-align: center;
    }
    
    .platform-info h1 {
        font-size: 36px;
    }
    
    .platform-subtitle {
        font-size: 16px;
        max-width: 100%;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .platform-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .platform-stats .stat-item {
        padding: 20px;
    }
    
    .platform-stats .stat-number {
        font-size: 28px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .advantage-card {
        padding: 30px 25px;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-step {
        padding: 30px 20px;
    }
    
    .form-consultation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-section {
        padding: 30px 25px;
    }
    
    .consultation-method {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .case-card {
        padding: 25px 20px;
    }
    
    .chat-window {
        width: 300px;
        height: 400px;
    }
    
    .floating-chat {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 80px 0 40px;
        min-height: 50vh;
    }
    
    .page-hero-content {
        padding: 0 20px;
        gap: 30px;
    }
    
    .platform-info h1 {
        font-size: 28px;
    }
    
    .platform-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .form-header h2 {
        font-size: 22px;
    }
    
    .platform-stats {
        gap: 15px;
    }
    
    .platform-stats .stat-item {
        padding: 15px;
    }
    
    .platform-stats .stat-number {
        font-size: 24px;
    }
    
    .advantage-card {
        padding: 25px 20px;
    }
    
    .advantage-icon {
        width: 50px;
        height: 50px;
    }
    
    .advantage-icon i {
        font-size: 24px;
    }
    
    .process-step {
        padding: 25px 15px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .form-section {
        padding: 25px 20px;
    }
    
    .consultation-section {
        gap: 20px;
    }
    
    .consultation-method {
        padding: 15px;
    }
    
    .method-icon {
        width: 45px;
        height: 45px;
    }
    
    .method-icon i {
        font-size: 18px;
    }
    
    .case-card {
        padding: 25px 20px;
    }
    
    .case-image {
        width: 50px;
        height: 50px;
    }
    
    .case-image i {
        font-size: 20px;
    }
    
    .chat-window {
        width: 280px;
        height: 350px;
        bottom: 70px;
        right: -10px;
    }
}
