* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Microsoft YaHei', Arial, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    line-height: 1.6;
}

/* 头部导航 */
.header {
    padding: 15px 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    color: #3b82f6;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    position: relative;
}

.nav-link:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

.logo {
    font-size: 32px;
    font-weight: bold;
    color: #3b82f6;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

.nav-icon {
    color: #3b82f6;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
}

.nav-icon:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
}

/* 主要内容区 */
.main-content {
    padding: 0;
}

/* 主要横幅区域 - 现代简约风格 */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.05));
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    padding-right: 20px;
}

.hero-badge {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 28px;
    color: #3b82f6;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.hero-desc {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 600px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #3b82f6;
}

.feature-item i {
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.primary-btn {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.6);
}

.secondary-btn {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.secondary-btn:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-3px);
}

/* 右侧视觉区域 */
.hero-right {
    position: relative;
}

.hero-visual {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-logo {
    text-align: center;
    z-index: 2;
    position: relative;
}

.logo-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
    animation: pulse 3s ease-in-out infinite;
}

.logo-circle i {
    font-size: 48px;
    color: #ffffff;
}

.main-logo h3 {
    font-size: 24px;
    color: #3b82f6;
    font-weight: bold;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.floating-stats {
    position: absolute;
    width: 100%;
    height: 100%;
}

.stat-bubble {
    position: absolute;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 12px 20px;
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #3b82f6;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
}

.stat-1 {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.stat-2 {
    top: 60px;
    right: 20px;
    animation-delay: 1.5s;
}

.stat-3 {
    bottom: 20px;
    left: 50px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

/* 服务展示区域 */
.services-section {
    padding: 60px 0;
    background: rgba(15, 23, 42, 0.4);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 25px;
}

.service-card {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.25);
}

.primary-service {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(99, 102, 241, 0.1));
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 22px;
    color: #ffffff;
}

.service-info h3 {
    font-size: 18px;
    color: #3b82f6;
    margin-bottom: 6px;
}

.service-info p {
    font-size: 13px;
    color: #94a3b8;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.service-icon-large {
    width: 55px;
    height: 55px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.service-icon-large i {
    font-size: 26px;
    color: #3b82f6;
}

.service-card h4 {
    font-size: 16px;
    color: #3b82f6;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 13px;
    color: #94a3b8;
}

.brand-service {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-display {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 12px;
}

.service-badge {
    background: #3b82f6;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 16px;
}

.tool-preview {
    margin-top: 16px;
    height: 35px;
    position: relative;
}

.preview-elements {
    display: flex;
    gap: 8px;
    align-items: center;
}

.preview-elements .element {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border-radius: 50%;
    animation: bounce 2.5s ease-in-out infinite;
}

.preview-elements .element:nth-child(2) {
    animation-delay: 0.5s;
}

.preview-elements .element:nth-child(3) {
    animation-delay: 1s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* 底部信息区域 */
.info-section {
    padding: 60px 0;
    background: rgba(15, 23, 42, 0.5);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.info-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 35px;
}

.contact-info, .about-info, .partnership-info {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 30px;
}

.contact-info h3, .about-info h3, .partnership-info h3 {
    font-size: 20px;
    color: #3b82f6;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #94a3b8;
}

.contact-item i {
    color: #3b82f6;
    width: 20px;
}

.contact-btn {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.about-info p {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 25px;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-item i {
    color: #3b82f6;
    font-size: 18px;
}

.stat-item div {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 12px;
    color: #64748b;
}

.stat-value {
    font-size: 16px;
    color: #3b82f6;
    font-weight: bold;
}

.partnership-info {
    text-align: center;
}

.partnership-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.partnership-icon i {
    font-size: 24px;
    color: #3b82f6;
}

.partnership-info p {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 20px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.partner-logo {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-3px);
}

.partner-logo i {
    font-size: 18px;
    color: #3b82f6;
}

/* 底部 */
.footer {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    background: rgba(15, 23, 42, 0.8);
}

.footer p {
    font-size: 12px;
    color: #64748b;
}

/* 微信二维码弹窗样式 - 现代简约风格 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    margin: 5% auto;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 24px;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.3);
    animation: slideIn 0.4s ease;
    overflow: hidden;
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.1));
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.modal-header h3 {
    color: #3b82f6;
    font-size: 22px;
    font-weight: bold;
    margin: 0;
}

.close {
    color: #3b82f6;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    transform: rotate(90deg);
}

.modal-body {
    padding: 35px 30px;
}

.qr-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    justify-content: center;
}

.qr-code {
    text-align: center;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-code i {
    font-size: 36px;
    color: #3b82f6;
    margin-bottom: 12px;
    display: block;
}

.qr-code p {
    color: #3b82f6;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}

.qr-image-container {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#qrImage {
    width: 180px;
    height: 180px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    object-fit: cover;
    display: block;
}

.qr-placeholder {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.1));
    border: 2px dashed rgba(59, 130, 246, 0.5);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qr-placeholder:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(99, 102, 241, 0.2));
    border-color: rgba(59, 130, 246, 0.7);
    transform: scale(1.02);
}

.placeholder-content {
    text-align: center;
    padding: 25px;
}

.placeholder-content i {
    font-size: 36px;
    color: #3b82f6;
    margin-bottom: 12px;
    display: block;
}

.placeholder-content p {
    color: #3b82f6;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}

.placeholder-content small {
    color: #94a3b8;
    font-size: 12px;
}

.qr-instructions {
    margin-top: 20px;
    padding: 18px;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.5;
}

.qr-instructions p {
    margin-bottom: 6px;
    color: #94a3b8;
}

.qr-instructions p:first-child {
    color: #3b82f6;
    font-weight: bold;
    margin-bottom: 10px;
}

.qr-instructions p:last-child {
    margin-bottom: 0;
    color: #3b82f6;
    font-family: 'Courier New', monospace;
    background: rgba(59, 130, 246, 0.1);
    padding: 6px 10px;
    border-radius: 6px;
    display: inline-block;
}

.qr-info {
    flex: 1;
}

.qr-info h4 {
    color: #3b82f6;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
}

.wechat-id {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 18px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: inline-block;
}

.qr-tip {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-time {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3b82f6;
    font-size: 14px;
    background: rgba(59, 130, 246, 0.05);
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.service-time i {
    font-size: 16px;
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    z-index: 1000;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.6);
}

/* 页面加载动画 */
.loading-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-animation.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loading-logo i {
    font-size: 40px;
    color: #ffffff;
}

.loading-text {
    color: #3b82f6;
    font-size: 20px;
    font-weight: bold;
}

.loading-spinner {
    margin-top: 25px;
}

.spinner {
    width: 45px;
    height: 45px;
    border: 4px solid rgba(59, 130, 246, 0.3);
    border-left: 4px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 页面切换动画 */
.page-transition {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.6s ease;
}

.page-transition.active {
    opacity: 1;
    transform: translateY(0);
}

/* 响应式弹窗 */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .qr-container {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .qr-placeholder {
        width: 140px;
        height: 140px;
    }
    
    .modal-body {
        padding: 30px 25px;
    }
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .services-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .info-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }
    
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .info-container {
        padding: 0 20px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .services-section {
        padding: 50px 0;
    }
    
    .info-section {
        padding: 50px 0;
    }
    
    .back-to-top {
        bottom: 25px;
        right: 25px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}