/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0047FF;
    --secondary-blue: #0091FF;
    --light-blue: #00D4FF;
    --dark-bg: #0a0e27;
    --light-bg: #f5f7fa;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: auto;
}

.brand-name {
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 15px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-blue);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* 首页Hero区域 */
.hero-section {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1f3a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 科技感点阵背景 */
.tech-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Hero内容包装器 - 居中布局 */
.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    padding: 0 50px;
    position: relative;
    z-index: 1;
}

/* Logo区域 - 居中上下结构 */
.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.logo-image {
    width: 120px;                            /* ✅ 减小到一半 */
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.4));
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

@keyframes moveDotAlongPath {
    0% {
        opacity: 1;
        offset-distance: 0%;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        offset-distance: 100%;
    }
}

/* Logo文字 */
.logo-text {
    text-align: center;
    margin-top: 30px;
}

.logo-en {
    font-size: 28px;                       /* ✅ 增大 */
    font-weight: bold;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-cn {
    font-size: 18px;                       /* ✅ 增大 */
    color: var(--light-blue);
    opacity: 0.9;
    letter-spacing: 4px;
    display: inline-flex;
    align-items: center;
}

/* 行内打字机效果 */
.typing-inline {
    margin-left: 8px;
    display: inline-block;
}

.cursor {
    display: inline-block;
    animation: blink 1s infinite;
    color: var(--light-blue);
    font-weight: bold;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.logo-subtitle {
    font-size: 16px;                       /* ✅ 增大 */
    color: var(--light-blue);
    opacity: 0.8;
    margin-top: 10px;
    letter-spacing: 2px;
}

/* Hero按钮区域 */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    width: 100%;
}

.btn-medium {
    padding: 12px 30px;
    font-size: 15px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: bold;
}

.btn-primary.btn-medium {
    box-shadow: 0 8px 30px rgba(0, 71, 255, 0.3);
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
}

.btn-secondary.btn-medium {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-medium:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 71, 255, 0.5);
}

.btn-medium i {
    font-size: 18px;
}

/* 导航栏按钮 */
.btn-nav {
    padding: 4px 15px;
    font-size: 15px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
    background: linear-gradient(90deg, #0057FF 0%, #00C6FF 100%);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 87, 255, 0.25);
}

.btn-nav:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 3px 12px rgba(0, 87, 255, 0.4);
}

.btn-nav i {
    font-size: 12px;
}

.btn-large {
    padding: 18px 45px;
    font-size: 18px;
    border-radius: 60px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: bold;
}

.btn-primary.btn-large {
    box-shadow: 0 10px 40px rgba(0, 71, 255, 0.4);
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
}

.btn-secondary.btn-large {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 71, 255, 0.6);
}

.btn-large i {
    font-size: 20px;
}

/* 关于我们 */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* 紧凑布局 */
.about-compact {
    max-width: 1200px;
    margin: 0 auto;
}

.about-intro {
    text-align: center;
    margin-bottom: 40px;                     /* ✅ 减小间距 */
}

.about-text {
    font-size: 16px;                         /* ✅ 字体略小 */
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 15px;                     /* ✅ 减小间距 */
}

/* 简单特性列表 - 用竖线分隔 */
.about-features-simple {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item-simple {
    flex: 1;
    text-align: center;
    padding: 0 10px;
}

.feature-item-simple i {
    font-size: 32px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));  /* ✅ 渐变色 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.feature-item-simple h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.feature-item-simple p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
}

/* 竖直分隔线 */
.feature-divider {
    width: 1px;
    height: 120px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 87, 255, 0.3) 50%, transparent 100%);
    flex-shrink: 0;
}

/* 分隔线 */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 87, 255, 0.3) 50%, transparent 100%);
    margin: 50px 0;                          /* ✅ 上下间距 */
}

/* 前往API平台 */
.api-cta-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    color: #333;
    text-align: center;
    padding: 40px 0;
}

.api-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.api-cta .btn-large {
    padding: 16px 45px;
    font-size: 18px;
    border-radius: 60px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: bold;
    background: linear-gradient(90deg, #0057FF 0%, #00C6FF 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(0, 87, 255, 0.3);
}

.api-cta .btn-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 87, 255, 0.5);
}

.api-subtitle {
    margin-top: 25px;
    font-size: 16px;
    color: #666;
    opacity: 0.9;
}

/* 合作伙伴 */
.partners-section {
    background: white;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-top: -20px;
    margin-bottom: 60px;
}

/* 合作伙伴 */
.partners-section {
    background: white;
    padding: 80px 0;
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-logo {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 71, 255, 0.15);
    border-color: var(--primary-color);
}

.partner-logo img {
    width: 100px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo span {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

/* 联系我们 */
.contact-section {
    background: var(--light-bg);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 71, 255, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* 通用section样式 */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 16px;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    opacity: 0.8;
}

/* 关于我们 */
.about-section {
    background: var(--light-bg);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.about-intro {
    text-align: center;
}

.about-text {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 71, 255, 0.15);
}

.feature-item i {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 14px;
    color: var(--text-light);
}

/* 技术文档 */
.docs-section {
    background: var(--white);
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.doc-card {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 71, 255, 0.15);
    border-color: var(--primary-blue);
}

.doc-card i {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.doc-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.doc-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.doc-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.doc-link:hover {
    color: var(--light-blue);
}

.doc-link i {
    font-size: 14px;
    margin-left: 5px;
}

/* 申请API - 简化版 */
.api-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1f3a 100%);
    color: var(--white);
}

.api-section .section-title {
    -webkit-text-fill-color: var(--white);
}

.api-simple-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.api-description {
    flex: 1;
}

.api-description h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.api-description p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.api-features {
    list-style: none;
}

.api-features li {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.api-features i {
    color: var(--light-blue);
    margin-right: 15px;
    font-size: 20px;
}

.api-action {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* 动态API按钮 */
.btn-api-dynamic {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 25px 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    border-radius: 60px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 71, 255, 0.4);
}

.btn-api-dynamic::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-api-dynamic:hover::before {
    left: 100%;
}

.btn-api-dynamic:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 71, 255, 0.6);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-api-dynamic:hover .btn-icon {
    transform: translateX(5px);
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-api-dynamic:hover .btn-glow {
    width: 300px;
    height: 300px;
}

.api-url {
    font-size: 16px;
    color: var(--light-blue);
    opacity: 0.8;
    word-break: break-all;
}

/* 联系我们 - 简化版 */
.contact-section {
    background: var(--light-bg);
}

.contact-simple-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 71, 255, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--white);
}

.contact-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-card p {
    font-size: 16px;
    color: var(--text-light);
}

.contact-social {
    text-align: center;
    padding-top: 40px;
    border-top: 2px solid rgba(0, 71, 255, 0.1);
}

.contact-social h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background: var(--white);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    min-width: 120px;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 71, 255, 0.2);
    color: var(--primary-blue);
}

.social-link i {
    font-size: 36px;
    color: var(--primary-blue);
}

.social-link span {
    font-size: 14px;
    font-weight: 500;
}

/* 页脚 */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 80px 0 30px;
}

/* 主要内容区域 */
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;                             /* ✅ 减小间距 */
    margin-bottom: 60px;
}

.footer-brand {
    flex: 1;
    max-width: 400px;
}

.footer-brand h3 {
    font-size: 20px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* 页脚联系信息 */
.footer-contact-info {
    display: flex;
    gap: 25px;                             /* ✅ 减小间距 */
    margin-bottom: 20px;                   /* ✅ 减小下边距 */
}

.footer-contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;                             /* ✅ 减小间距 */
    padding: 0;
    transition: all 0.3s ease;
}

.footer-contact-info .contact-item:hover {
    transform: translateY(-2px);
}

.footer-contact-info .contact-item i {
    font-size: 22px;                       /* ✅ 图标略小 */
    color: var(--light-blue);
    flex-shrink: 0;
}

.footer-contact-info .contact-item h4 {
    font-size: 13px;                       /* ✅ 标题更小 */
    margin-bottom: 2px;                    /* ✅ 减小间距 */
    color: var(--white);
    font-weight: 600;
}

.footer-contact-info .contact-item p {
    font-size: 12px;                       /* ✅ 文字更小 */
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;                   /* ✅ 不换行 */
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-start;           /* ✅ 左对齐 */
}

.social-links a {
    width: 38px;                           /* ✅ 图标略小 */
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    gap: 60px;
}

.link-group h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--white);
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 12px;
}

.link-group ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-group ul li a:hover {
    color: var(--light-blue);
}

/* 底部版权 */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 8px 0;
    font-size: 14px;
}

.footer-links-text {
    font-size: 11px;  /* ✅ 比版权文字小一号 */
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);  /* 与版权颜色一致 */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--light-blue);  /* hover时变色 */
}

/* 响应式设计 */
@media (max-width: 992px) {
    .hero-content-wrapper {
        padding: 0 20px;
    }

    .logo-section {
        width: 100%;
    }

    .logo-image {
        width: 110px;                      /* ✅ 减小到一半 */
        height: 110px;
    }

    .logo-en {
        font-size: 24px;                   /* ✅ 增大 */
    }

    .logo-cn {
        font-size: 16px;                   /* ✅ 增大 */
    }

    .logo-subtitle {
        font-size: 14px;                   /* ✅ 增大 */
    }

    .btn-medium {
        padding: 10px 25px;
        font-size: 14px;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-features-simple {
        flex-direction: column;
        gap: 20px;
    }

    .feature-divider {
        width: 80%;
        height: 1px;
        margin: 0 auto;
    }

    .partners-logos {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-contact-info {
        flex-direction: column;
        gap: 20px;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .logo-image {
        width: 220px;
        height: 220px;
    }

    .logo-en {
        font-size: 18px;
    }

    .logo-cn {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .logo-subtitle {
        font-size: 11px;
    }

    .btn-medium {
        padding: 10px 25px;
        font-size: 14px;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-features-simple {
        flex-direction: column;
        gap: 20px;
    }

    .feature-divider {
        width: 80%;
        height: 1px;
        margin: 0 auto;
    }

    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-contact-info {
        flex-direction: column;
        gap: 15px;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .logo-image {
        width: 180px;
        height: 180px;
    }

    .logo-en {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .logo-cn {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .logo-subtitle {
        font-size: 10px;
    }

    .btn-medium {
        padding: 10px 25px;
        font-size: 14px;
    }

    .about-features-simple {
        flex-direction: column;
        gap: 15px;
    }

    .feature-divider {
        width: 80%;
        height: 1px;
        margin: 0 auto;
    }

    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .contact-card h3 {
        font-size: 18px;
    }

    .contact-card p {
        font-size: 14px;
    }

    .docs-grid {
        grid-template-columns: 1fr;
    }

    .footer-contact-info {
        flex-direction: column;
        gap: 15px;
    }

    .footer-main {
        gap: 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .footer-links-text {
        font-size: 10px;                   /* ✅ 进一步缩小 */
    }
}
