/* 全局样式 - 科技暗黑风格 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00ff88;
    --secondary-color: #00d4ff;
    --accent-color: #ff0055;
    --text-color: #e0e0e0;
    --text-light: #888888;
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a2e;
    --bg-lighter: #16213e;
    --glow-primary: rgba(0, 255, 136, 0.3);
    --glow-secondary: rgba(0, 212, 255, 0.3);
    --shadow-glow: 0 0 20px var(--glow-primary);
}

body {
    font-family: 'Orbitron', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏 - 科技感设计 */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

.nav-brand {
    font-size: 26px;
    font-weight: 900;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: var(--shadow-glow);
    position: relative;
}

.nav-brand::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.nav-menu li a:hover {
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-color);
    box-shadow: 0 0 15px var(--glow-primary);
}

.btn-nav {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-dark);
    font-weight: 700;
    box-shadow: var(--shadow-glow);
    text-shadow: none;
}

.btn-nav:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--glow-secondary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
    box-shadow: 0 0 10px var(--glow-primary);
}

/* Hero区域 - 赛博朋克风格 */
.hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-lighter) 50%, var(--bg-dark) 100%);
    color: var(--text-color);
    padding: 180px 20px 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 49%, rgba(0, 255, 136, 0.03) 50%, transparent 51%),
        linear-gradient(transparent 49%, rgba(0, 255, 136, 0.03) 50%, transparent 51%);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.2); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 58px;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: var(--shadow-glow);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 1px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-shadow: var(--shadow-glow);
    letter-spacing: 2px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-dark);
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.btn-primary::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;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px var(--glow-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px var(--glow-primary);
}

.btn-secondary:hover {
    background: rgba(0, 255, 136, 0.1);
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 0 25px var(--glow-secondary);
}

.btn-outline {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

/* 通用区块样式 */
section {
    padding: 100px 20px;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: var(--shadow-glow);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

/* 核心功能特性 */
.features {
    background: var(--bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 52px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 212, 255, 0.1));
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px var(--glow-primary);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* 产品对比 */
.compare {
    background: var(--bg-lighter);
}

.compare-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-glow);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
}

.compare-table th,
.compare-table td {
    padding: 18px 24px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.compare-table th {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.compare-table tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.3);
}

.compare-table tr:hover {
    background: rgba(0, 255, 136, 0.1);
}

.highlight {
    color: var(--primary-color);
    font-weight: 700;
    background: rgba(0, 255, 136, 0.1);
    padding: 4px 12px;
    border-radius: 4px;
    display: inline-block;
    box-shadow: 0 0 10px var(--glow-primary);
}

/* 使用流程 */
.how-it-works {
    background: var(--bg-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    text-align: center;
    padding: 32px;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-glow);
}

.step-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* 价格方案 */
.pricing {
    background: var(--bg-lighter);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1050px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 45px 35px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-color), #ff3366);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.4);
}

.pricing-card h3 {
    color: var(--primary-color);
    margin-bottom: 24px;
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    margin-bottom: 32px;
}

.currency {
    font-size: 28px;
    color: var(--text-light);
    vertical-align: top;
    margin-top: 8px;
}

.amount {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: var(--shadow-glow);
}

.period {
    color: var(--text-light);
    font-size: 16px;
    margin-left: 8px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 36px;
}

.pricing-features li {
    padding: 14px 0;
    color: var(--text-light);
    font-size: 15px;
}

.pricing-features li::before {
    content: '►';
    color: var(--primary-color);
    margin-right: 12px;
    font-weight: 700;
}

/* 用户评价 */
.testimonials {
    background: var(--bg-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.testimonial-content {
    margin-bottom: 28px;
}

.testimonial-content p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
}

.author-name {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.author-title {
    color: var(--text-light);
    font-size: 14px;
    margin-top: 4px;
}

/* 全球节点覆盖 */
.global-coverage {
    background: var(--bg-lighter);
}

.coverage-stats {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-bottom: 60px;
}

.coverage-item {
    text-align: center;
}

.coverage-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-shadow: var(--shadow-glow);
    letter-spacing: 2px;
}

.coverage-label {
    color: var(--text-light);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.coverage-regions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.region {
    background: var(--bg-card);
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 15px var(--glow-primary);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.region:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 30px var(--glow-primary);
    background: rgba(0, 255, 136, 0.1);
}

/* 常见问题 */
.faq {
    background: var(--bg-dark);
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s;
    background: var(--bg-card);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    cursor: pointer;
    background: var(--bg-card);
}

.faq-question h3 {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

.faq-toggle {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    background: var(--bg-lighter);
}

.faq-answer p {
    color: var(--text-light);
    padding: 24px 32px;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* 底部 */
.footer {
    background: var(--bg-card);
    color: var(--text-color);
    padding: 80px 20px 40px;
    border-top: 2px solid var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: var(--shadow-glow);
}

.footer-brand p {
    color: var(--text-light);
    font-size: 14px;
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul li {
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--text-light);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-color);
    text-shadow: var(--shadow-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 13px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--bg-card);
        width: 100%;
        padding: 24px;
        box-shadow: var(--shadow-glow);
        transition: left 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 42px;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .section-title {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .coverage-stats {
        flex-direction: column;
        gap: 32px;
    }
}
