:root {
    --main-color: #000000;
    --white-color: #ffffff;
    --light-bg: #f8f9fa;
    --text-main: #000000;
    --text-gray: #666666;
    --text-light: #999999;
    --border-gray: #e9ecef;
    --bg-gradient: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    
    /* 间距变量 */
    --gap-1: 4px;
    --gap-2: 8px;
    --gap-3: 12px;
    --gap-4: 16px;
    --gap-5: 20px;
    --gap-6: 24px;
    --gap-8: 32px;
    
    /* 圆角 */
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 50%;
    
    /* 过渡动画 */
    --speed-fast: 0.15s ease;
    --speed-normal: 0.3s ease;
    --speed-slow: 0.5s ease;
    
    /* 阴影 */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.15);
    --shadow-xl: 0 16px 32px rgba(0,0,0,0.2);
    
    /* 渐变 */
    --gradient-primary: linear-gradient(135deg, var(--main-color) 0%, var(--text-gray) 100%);
    --gradient-blue: linear-gradient(135deg, #4285f4 0%, #1877f2 100%);
    
    /* 颜色 */
    --dark-800: #1f2937;
    --text-small: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background: var(--bg-gradient);
    min-height: 100vh;
}

.wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
.top-header {
    background: var(--white-color);
    border-bottom: 1px solid var(--border-gray);
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.brand-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
}

.menu-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.menu-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 400;
    transition: color 0.3s ease;
}

.menu-links a:hover {
    color: var(--text-main);
}

.consult-btn {
    background: var(--main-color);
    color: var(--white-color);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.consult-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 主要内容区域 */
.main-banner {
    padding: 80px 0;
    background: var(--white-color);
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.banner-text {
    max-width: 500px;
}

.banner-tag {
    display: inline-block;
    background: var(--light-bg);
    color: var(--text-gray);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 30px;
    border: 1px solid var(--border-gray);
}

.banner-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-main);
}

.banner-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.action-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-primary {
    background: var(--main-color);
    color: var(--white-color);
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-secondary {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    padding: 16px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.btn-secondary:hover {
    border-bottom-color: var(--text-main);
}

.banner-image {
    position: relative;
    text-align: center;
}

.banner-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.stats-card {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white-color);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: left;
}

.stats-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
    display: block;
}

.stats-text {
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 5px;
}

/* 合作伙伴 */
.partners-section {
    padding: 60px 0;
    background: var(--white-color);
    border-top: 1px solid var(--border-gray);
}

.partners-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.6;
    gap: 40px;
}

.partner-name {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-gray);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .banner-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .banner-title {
        font-size: 36px;
    }

    .menu-links {
        display: none;
    }

    .partners-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

/* 装饰元素 */
.star-bg {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.1;
}

.star-1 {
    top: 20%;
    left: 10%;
    transform: rotate(15deg);
}

.star-2 {
    top: 60%;
    right: 15%;
    transform: rotate(-20deg);
}

/* 横幅图片容器 */
.banner-img-container {
    width: 400px;
    height: 500px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 16px;
    margin: 0 auto;
}

.banner-img-container img {
    max-width: 100%;
    max-height: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    object-fit: contain;
    border-radius: 10px;
}

/* 全球流量服务区域 */
.global-services {
    padding: 100px 0;
    background: var(--light-bg);
}

.section-intro {
    text-align: center;
    margin-bottom: 80px;
}

.intro-tag {
    display: inline-block;
    background: var(--white-color);
    color: var(--text-gray);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid var(--border-gray);
}

.intro-heading {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.service-item {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.feature-tag {
    background: var(--light-bg);
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: var(--main-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.platform-item {
    background: var(--white-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.platform-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.platform-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-main);
}

.platform-desc {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 25px;
}

.platform-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.compliance-section {
    background: var(--main-color);
    color: var(--white-color);
    padding: 60px 40px;
    border-radius: 20px;
    margin-top: 60px;
    text-align: center;
}

.compliance-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.compliance-item {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

/* 专业服务区域 */
.expert-services {
    padding: 100px 0;
    background: var(--white-color);
}

.services-intro {
    text-align: center;
    margin-bottom: 80px;
}

.services-intro .intro-heading {
    font-size: 42px;
    margin-bottom: 20px;
}

.industry-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
}

.industry-tag {
    background: var(--light-bg);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    color: var(--text-main);
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 150px;
}

.industry-tag:hover {
    background: var(--main-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.industry-tag::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.5s;
}

.industry-tag:hover::before {
    left: 100%;
}

.more-industries {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white-color) 100%);
    border-radius: 15px;
    border: 2px dashed var(--border-gray);
}

.more-text {
    font-size: 18px;
    color: var(--text-gray);
    font-style: italic;
}

/* 账户服务区域 */
.account-area {
    padding: 100px 0;
    background: var(--light-bg);
}

.account-header {
    text-align: center;
    margin-bottom: 80px;
}

.account-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.account-card {
    background: var(--white-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.account-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.card-image {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.4;
}

.card-description {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 16px;
    text-align: left;
}

/* 专业团队区域 */
.team-area {
    padding: 100px 0;
    background: var(--white-color);
}

.team-header {
    text-align: center;
    margin-bottom: 80px;
}

.team-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.2;
}

.team-desc {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: var(--white-color);
}

.stat-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 15px;
    display: block;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 15px;
}

.stat-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

.stat-item::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;
}

.stat-item:hover::before {
    left: 100%;
}

/* 客户评价区域 */
.feedback-area {
    padding: 100px 0;
    background: var(--light-bg);
}

.feedback-header {
    text-align: center;
    margin-bottom: 80px;
}

.feedback-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.2;
}

.testimonials-slider {
    padding: 20px 0 60px 0;
}

.feedback-card {
    background: var(--white-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feedback-content {
    flex-grow: 1;
}

.feedback-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.feedback-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info {
    flex-grow: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 5px;
}

.author-location {
    font-size: 14px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.country-flag {
    font-size: 16px;
}

.feedback-rating {
    display: flex;
    gap: 3px;
    margin-top: 10px;
}

.star {
    color: #ffd700;
    font-size: 16px;
}

/* Swiper 自定义样式 */
.swiper-pagination-bullet {
    background: var(--text-gray);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    background: var(--main-color);
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--main-color);
    background: var(--white-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
}

/* 支持服务区域 */
.support-area {
    padding: 100px 0;
    background: var(--white-color);
}

.support-header {
    text-align: center;
    margin-bottom: 80px;
}

.support-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.2;
}

.support-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: start;
}

.support-card {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-gray);
    transition: all 0.6s ease-out;
    position: relative;
    overflow: hidden;
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    background: var(--white-color);
}

.support-icon {
    width: 80px;
    height: 80px;
    background: var(--main-color);
    color: var(--white-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.support-icon svg {
    width: 32px;
    height: 32px;
}

.support-card:hover .support-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--main-color), var(--text-gray));
}

.support-text {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.3;
}

.support-desc {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.highlight-tag {
    display: inline-block;
    background: var(--main-color);
    color: var(--white-color);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 500;
    margin: 2px 4px;
    transition: all 0.3s ease;
}

.support-card:hover .highlight-tag {
    background: linear-gradient(135deg, var(--main-color), var(--text-gray));
    transform: translateY(-1px);
}

.support-card::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;
}

.support-card:hover::before {
    left: 100%;
}

/* 联系我们区域 */
.contact-area {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white-color) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 17px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--gap-8);
    margin-top: var(--gap-8);
    position: relative;
    z-index: 2;
}

.contact-card {
    background: var(--white-color);
    padding: var(--gap-8) var(--gap-6);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--speed-normal);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-var(--gap-2));
    box-shadow: var(--shadow-xl);
    border-color: var(--main-color);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left var(--speed-slow);
}

.contact-card:hover::before {
    left: 100%;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-blue);
    color: var(--white-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto var(--gap-6);
    transition: all var(--speed-fast);
    position: relative;
    z-index: 2;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-primary);
}

.contact-item-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: var(--gap-4);
    position: relative;
    z-index: 2;
}

.contact-item-detail {
    font-size: 18px;
    color: var(--text-gray);
    font-weight: 500;
    margin-bottom: var(--gap-2);
    position: relative;
    z-index: 2;
}

.telegram-id {
    background: var(--light-bg);
    padding: var(--gap-2) var(--gap-4);
    border-radius: var(--radius);
    display: inline-block;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
    border: 1px solid var(--border-gray);
    transition: all var(--speed-fast);
}

.telegram-card:hover .telegram-id {
    background: #0088cc;
    color: var(--white-color);
    transform: scale(1.05);
}

.address-info {
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: var(--gap-2);
    position: relative;
    z-index: 2;
}

.contact-item-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    position: relative;
    z-index: 2;
}

.address-card:hover .contact-item-note {
    color: var(--main-color);
    font-weight: 500;
}

/* Telegram 特殊样式 */
.telegram-card .contact-icon {
    background: linear-gradient(135deg, #0088cc 0%, #229ed9 100%);
}

.telegram-card:hover .contact-icon {
    background: linear-gradient(135deg, #229ed9 0%, #0088cc 100%);
}

/* 地址特殊样式 */
.address-card .contact-icon {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.address-card:hover .contact-icon {
    background: linear-gradient(135deg, #ee5a24 0%, #ff6b6b 100%);
}

/* 页脚区域 */
.site-footer {
    background: var(--main-color);
    color: var(--white-color);
    padding: 60px 0 30px;
    margin-top: 0;
}

.footer-brand {
    text-align: center;
    margin-bottom: 40px;
}

.footer-brand-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.footer-brand-slogan {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    position: relative;
}

.footer-link:hover {
    color: var(--white-color);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 40px 0;
}

.footer-bottom {
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.copyright-year {
    font-weight: 600;
    color: var(--white-color);
}

/* 地图弹窗样式 */
.map-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity var(--speed-normal);
}

.map-popup.show {
    opacity: 1;
}

.map-popup-content {
    background: var(--white-color);
    border-radius: var(--radius-xl);
    max-width: 90vw;
    max-height: 90vh;
    width: 800px;
    box-shadow: var(--shadow-xl);
    transform: scale(0.9);
    transition: transform var(--speed-normal);
    overflow: hidden;
}

.map-popup.show .map-popup-content {
    transform: scale(1);
}

.map-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--gap-6) var(--gap-6) var(--gap-4);
    border-bottom: 1px solid var(--border-gray);
}

.map-popup-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
}

.map-popup-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--gap-2);
    border-radius: var(--radius);
    color: var(--text-gray);
    transition: all var(--speed-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-popup-close:hover {
    background: var(--light-bg);
    color: var(--text-main);
    transform: scale(1.1);
}

.map-popup-body {
    padding: var(--gap-6);
}

.map-address-info {
    margin-bottom: var(--gap-4);
}

.address-text {
    display: flex;
    align-items: center;
    gap: var(--gap-3);
    font-size: 18px;
    color: var(--text-main);
    font-weight: 500;
}

.address-text svg {
    color: #ff6b6b;
    width: 20px;
    height: 20px;
}

.map-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--light-bg);
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--speed-normal);
}

.map-image:hover {
    transform: scale(1.02);
}

/* 浮动面板样式 */
.floating-panel {
    position: fixed;
    bottom: 50%;
    right: var(--gap-4);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--gap-4);
    transform: translateY(50%);
}

.floating-items {
    display: flex;
    flex-direction: column;
    gap: var(--gap-3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(var(--gap-5));
    transition: all var(--speed-normal);
}

.floating-panel.active .floating-items {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-btn-wrapper {
    position: relative;
}

.floating-telegram-btn {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all var(--speed-fast);
    position: relative;
    border: 2px solid var(--white-color);
}

.floating-telegram-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: var(--gradient-blue);
}

.floating-main-wrapper {
    position: relative;
}

.floating-main-btn {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--gradient-blue);
    color: var(--white-color);
    border: 3px solid var(--white-color);
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all var(--speed-fast);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-main-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: var(--gradient-primary);
}

.floating-tooltip,
.floating-main-tooltip {
    position: absolute;
    right: calc(100% + var(--gap-3));
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark-800);
    color: var(--white-color);
    padding: var(--gap-2) var(--gap-3);
    border-radius: var(--radius);
    font-size: var(--text-small);
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--speed-fast);
    box-shadow: var(--shadow-md);
}

.floating-tooltip::after,
.floating-main-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--dark-800);
}

.floating-telegram-btn:hover .floating-tooltip,
.floating-main-btn:hover .floating-main-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-var(--gap-1));
}

/* Telegram 浮动按钮样式 */
.floating-telegram-btn {
    background: linear-gradient(135deg, #0088cc 0%, #229ed9 100%);
}

.floating-telegram-btn:hover {
    background: linear-gradient(135deg, #229ed9 0%, #0088cc 100%);
}

/* 通知样式 */
.notification-popup {
    position: fixed;
    top: var(--gap-6);
    right: var(--gap-6);
    background: var(--white-color);
    color: var(--text-main);
    padding: var(--gap-4) var(--gap-6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 10001;
    font-weight: 500;
    font-size: 16px;
    max-width: 400px;
    transform: translateX(100%);
    opacity: 0;
    transition: all var(--speed-normal);
    border-left: 4px solid var(--main-color);
}

.notification-popup.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-popup.success {
    border-left-color: #10b981;
    background: #f0fdf4;
    color: #166534;
}

.notification-popup.error {
    border-left-color: #ef4444;
    background: #fef2f2;
    color: #991b1b;
}

.notification-popup.info {
    border-left-color: #3b82f6;
    background: #eff6ff;
    color: #1e40af;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-heading {
        font-size: 32px;
    }

    .industry-grid {
        flex-direction: column;
        gap: 15px;
    }
    
    .industry-tag {
        min-width: auto;
    }

    .account-features {
        grid-template-columns: 1fr;
    }

    .support-title {
        font-size: 32px;
    }

    .team-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-value {
        font-size: 36px;
    }

    .support-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .support-card {
        padding: 30px 20px;
    }

    .footer-brand-title {
        font-size: 28px;
    }

    .footer-brand-slogan {
        font-size: 16px;
    }

    .footer-nav {
        gap: 20px;
    }

    .footer-link {
        font-size: 14px;
        padding: 6px 12px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--gap-6);
        margin-top: var(--gap-6);
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-subtitle {
        font-size: 16px;
    }

    .contact-card {
        padding: var(--gap-6) var(--gap-4);
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: var(--gap-4);
    }

    .contact-item-title {
        font-size: 20px;
        margin-bottom: var(--gap-3);
    }

    .contact-item-detail {
        font-size: 16px;
    }

    .map-popup-content {
        width: 95vw;
        max-height: 85vh;
    }

    .map-popup-header {
        padding: var(--gap-4) var(--gap-4) var(--gap-3);
    }

    .map-popup-title {
        font-size: 20px;
    }

    .map-popup-body {
        padding: var(--gap-4);
    }

    .address-text {
        font-size: 16px;
    }

    .floating-panel {
        right: var(--gap-3);
        bottom: 45%;
    }

    .floating-telegram-btn {
        width: 45px;
        height: 45px;
    }

    .floating-main-btn {
        width: 55px;
        height: 55px;
    }

    .floating-tooltip,
    .floating-main-tooltip {
        font-size: 11px;
        padding: var(--gap-1) var(--gap-2);
        right: calc(100% + var(--gap-2));
    }

    .floating-tooltip::after,
    .floating-main-tooltip::after {
        border-width: 4px;
    }
}
