/* 联系我们页面样式 - 重新设计 */

/* 英雄区域 - 精致优雅设计 */
.hero {
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #667eea 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="100" r="2" fill="%23ffffff20"/><circle cx="300" cy="200" r="1.5" fill="%23ffffff15"/><circle cx="500" cy="150" r="2.5" fill="%23ffffff25"/><circle cx="700" cy="300" r="1" fill="%23ffffff10"/><circle cx="900" cy="100" r="2" fill="%23ffffff20"/><circle cx="200" cy="400" r="1.5" fill="%23ffffff15"/><circle cx="600" cy="500" r="2.5" fill="%23ffffff25"/><circle cx="800" cy="600" r="1" fill="%23ffffff10"/><circle cx="150" cy="700" r="2" fill="%23ffffff20"/><circle cx="450" cy="800" r="1.5" fill="%23ffffff15"/></svg>') repeat;
    animation: particles-float 20s linear infinite;
}

@keyframes particles-float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.hero-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.badge-icon {
    font-size: 1.2rem;
    animation: badge-sparkle 2s ease-in-out infinite;
}

@keyframes badge-sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(10deg); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #a78bfa 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 400;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.stat-card::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.6s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-content {
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

/* 联系方式区域 */
.contact-methods {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
}

.contact-methods::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1e293b;
    position: relative;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #64748b;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* 联系卡片样式 */
.contact-card {
    background: white;
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    position: relative;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: all 0.3s ease;
}

.contact-card.primary::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.contact-card.secondary::before {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.contact-card.tertiary::before {
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    position: relative;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-card.primary .contact-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.contact-card.secondary .contact-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.contact-card.tertiary .contact-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.contact-icon svg {
    width: 40px;
    height: 40px;
    z-index: 2;
    position: relative;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.contact-card:hover .contact-icon::before {
    left: 100%;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.card-header p {
    color: #64748b;
    font-size: 1rem;
}

.contact-content {
    padding: 0 2rem 2rem;
}

/* 微信联系卡片 */
.wechat-info {
    text-align: center;
}

.wechat-number {
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
}

.wechat-number .label {
    font-size: 0.9rem;
    color: #64748b;
    display: block;
    margin-bottom: 0.5rem;
}

.wechat-number .number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
    display: block;
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
}

.copy-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.service-features {
    display: grid;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #475569;
}

.feature-icon {
    font-size: 1.1rem;
}

/* 二维码卡片 */
.qr-code-container {
    text-align: center;
}

.qr-code-placeholder {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 2px dashed #cbd5e1;
}

.qr-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.qr-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.qr-desc {
    font-size: 0.9rem;
    color: #6b7280;
}

.qr-tips {
    display: grid;
    gap: 0.75rem;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #475569;
}

.tip-number {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

/* 预约演示卡片 */
.demo-features {
    margin-bottom: 2rem;
}

.demo-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.demo-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.demo-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.25rem;
}

.demo-text p {
    font-size: 0.9rem;
    color: #6b7280;
}

.demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.demo-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.demo-btn:hover svg {
    transform: translateX(4px);
}

/* 公司信息区域 */
.company-info {
    padding: 100px 0;
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.info-content {
    padding-right: 2rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: #f1f5f9;
    transform: translateX(8px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.info-icon svg {
    width: 30px;
    height: 30px;
}

.info-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.info-text p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* 位置卡片 */
.location-container {
    padding-left: 2rem;
}

.location-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 2rem;
    color: white;
    box-shadow: 0 20px 25px -5px rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: location-glow 3s ease-in-out infinite;
}

@keyframes location-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.location-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

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

.location-icon svg {
    width: 24px;
    height: 24px;
}

.location-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.location-info {
    position: relative;
    z-index: 2;
}

.location-address {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.location-desc {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.location-features {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.location-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.location-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.location-btn svg {
    width: 18px;
    height: 18px;
}

/* 常见问题区域 */
.faq-section {
    padding: 100px 0;
    background: #f8fafc;
}

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

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.faq-question {
    padding: 1.5rem 2rem;
    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(135deg, #667eea, #764ba2);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

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

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    padding-left: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #667eea;
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f5f9;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: #667eea;
    color: white;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    padding-left: 1rem;
    border-left: 2px solid #e2e8f0;
}

/* 工具函数 */
.copy-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #10b981;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.copy-notification.show {
    transform: translateX(0);
}

/* 在线状态指示器 */
.online-status {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    border-bottom: 1px solid #e2e8f0;
}

.status-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.status-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: relative;
}

.status-dot.online {
    background: #10b981;
    animation: pulse-online 2s infinite;
}

@keyframes pulse-online {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
}

.status-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.status-info p {
    color: #64748b;
    margin: 0;
}

.quick-actions {
    display: flex;
    gap: 1rem;
}

.quick-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.quick-contact-btn.wechat-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.quick-contact-btn.demo-btn-header {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.quick-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-icon {
    font-size: 1.1rem;
}

/* 联系流程 */
.contact-process {
    padding: 100px 0;
    background: white;
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.step-content {
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.step-content:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-icon {
        font-size: 2rem;
    margin-bottom: 1rem;
    }
    
.step-content h3 {
        font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    text-align: center;
}

.process-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-arrow svg {
    width: 100%;
    max-width: 80px;
    height: 20px;
}

/* 专业团队 */
.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.member-avatar {
    position: relative;
    text-align: center;
    margin-bottom: 1.5rem;
}

.avatar-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.avatar-icon {
    font-size: 3rem;
    filter: brightness(1.2);
}

.member-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.member-info {
    text-align: center;
}

.member-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 1rem;
    color: #667eea;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

/* 服务承诺 */
.service-promise {
    padding: 100px 0;
    background: white;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.promise-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.promise-card:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.promise-icon {
    margin-bottom: 1.5rem;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
        font-size: 2rem;
    margin: 0 auto;
    position: relative;
}

.icon-circle::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: icon-pulse 3s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.promise-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.promise-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* 客户评价 */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: #667eea;
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -5px;
    font-family: Georgia, serif;
}

.testimonial-content p {
    font-size: 1rem;
    color: #374151;
    line-height: 1.7;
    font-style: italic;
    margin-left: 2rem;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.rating {
    display: flex;
    gap: 0.2rem;
}

.star {
    font-size: 1rem;
    color: #fbbf24;
}

/* 服务时间表 */
.service-schedule {
    padding: 100px 0;
    background: white;
}

.schedule-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.schedule-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.schedule-card:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.schedule-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.schedule-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.schedule-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
}

.schedule-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.time-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.time-item:last-child {
    border-bottom: none;
}

.time-label {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
}

.time-value {
    font-size: 0.95rem;
    color: #1e293b;
    font-weight: 600;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    /* 英雄区域适配 */
    .hero {
        padding: 120px 0 80px;
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 3.2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 1.2rem;
    }
    
    /* 联系方式区域适配 */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-card {
        margin: 0 1rem;
    }
    
    /* 其他区域适配 */
    .process-flow {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-arrow {
        display: none;
    }
    
    .step-content {
        height: auto;
    }
    
    .status-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .quick-actions {
        justify-content: center;
    }
    
    /* 公司信息区域适配 */
    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-container {
        margin: 0 1rem;
    }
}

@media (max-width: 768px) {
    /* 英雄区域移动端优化 */
    .hero {
        padding: 100px 0 60px;
        min-height: 50vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .stat-card {
        padding: 1rem;
        border-radius: 15px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* 联系方式移动端优化 */
    .contact-methods {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-grid {
        gap: 1.5rem;
    }
    
    .contact-card {
        margin: 0;
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .card-header h3 {
        font-size: 1.2rem;
    }
    
    .card-header p {
        font-size: 0.9rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .wechat-number {
        flex-direction: column;
        gap: 0.8rem;
        align-items: flex-start;
    }
    
    .wechat-number .number {
        font-size: 1.4rem;
    }
    
    .copy-btn {
        align-self: stretch;
        justify-content: center;
        padding: 0.8rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .qr-code-placeholder {
        padding: 1.5rem;
    }
    
    .qr-image {
        width: 120px;
        height: 120px;
    }
    
    .demo-features {
        gap: 1rem;
    }
    
    .demo-btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* 在线状态移动端优化 */
    .online-status {
        padding: 40px 0;
    }
    
    .status-container {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .status-info h3 {
        font-size: 1.1rem;
    }
    
    .status-info p {
        font-size: 0.9rem;
    }
    
    .quick-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .quick-contact-btn {
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 12px;
    }
    
    /* 团队、服务承诺等区域移动端优化 */
    .team-grid,
    .promise-grid,
    .testimonials-grid,
    .schedule-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-member,
    .promise-card,
    .testimonial-card,
    .schedule-card {
        margin: 0;
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .contact-process,
    .team-section,
    .service-promise,
    .testimonials,
    .service-schedule {
        padding: 60px 0;
    }
    
    /* 公司信息区域移动端优化 */
    .company-info {
        padding: 60px 0;
    }
    
    .info-grid {
        gap: 1.5rem;
    }
    
    .info-item {
        padding: 1.2rem;
        border-radius: 15px;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
    }
    
    .info-text h3 {
        font-size: 1.1rem;
    }
    
    .info-text p {
        font-size: 0.9rem;
    }
    
    .location-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .location-header h3 {
        font-size: 1.2rem;
    }
    
    .location-desc {
        font-size: 0.9rem;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .location-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* 超小屏幕优化 */
    .hero {
        padding: 80px 0 50px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .stat-card {
        padding: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-methods {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .contact-card {
        padding: 1.2rem;
    }
    
    .card-header h3 {
        font-size: 1.1rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .wechat-number .number {
        font-size: 1.2rem;
    }
    
    .qr-image {
        width: 100px;
        height: 100px;
    }
    
    .quick-contact-btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .team-member,
    .promise-card,
    .testimonial-card,
    .schedule-card,
    .info-item,
    .location-card {
        padding: 1.2rem;
    }
    
    .contact-process,
    .team-section,
    .service-promise,
    .testimonials,
    .service-schedule,
    .company-info,
    .faq-section {
        padding: 50px 0;
    }
    
    /* FAQ区域移动端优化 */
    .faq-list {
        margin: 0;
    }
    
    .faq-item {
        margin: 0 0 1rem 0;
        border-radius: 12px;
    }
    
    .faq-question {
        padding: 1rem 1.2rem;
        flex-wrap: nowrap;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.4;
        margin-right: 1rem;
    }
    
    .faq-toggle {
        font-size: 1.2rem;
        min-width: 30px;
        height: 30px;
        flex-shrink: 0;
    }
    
    .faq-answer {
        padding: 0 1.2rem 1.2rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
} 