* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.65;
    color: #1a1a2e;
    background: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    background: linear-gradient(to right, #16213e, #0f3460);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    font-size: 26px;
    color: #fff;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #f39c12;
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 11px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: #f39c12;
    color: white;
}

.btn-primary:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 26px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

.hero-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(243, 156, 18, 0.15);
    color: #f39c12;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(243, 156, 18, 0.3);
}

.hero-title {
    font-size: 48px;
    color: white;
    margin-bottom: 22px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 38px;
    max-width: 680px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 55px;
}

.btn-large {
    padding: 15px 38px;
    font-size: 16px;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.hero-features {
    display: flex;
    gap: 60px;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
}

.feature-value {
    font-size: 36px;
    color: #f39c12;
    font-weight: 800;
    margin-bottom: 6px;
}

.feature-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.section-header {
    text-align: center;
    margin-bottom: 55px;
}

.section-title {
    font-size: 38px;
    color: #1a1a2e;
    margin-bottom: 12px;
    font-weight: 800;
}

.section-subtitle {
    font-size: 17px;
    color: #7a7a8c;
}

.features-section {
    padding: 90px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(243, 156, 18, 0.2);
}

.feature-icon {
    font-size: 44px;
    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: 21px;
    color: #1a1a2e;
    margin-bottom: 14px;
    font-weight: 700;
}

.feature-card p {
    color: #7a7a8c;
    line-height: 1.7;
    font-size: 15px;
}

.download-section {
    padding: 90px 0;
    background: white;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.download-card {
    background: #f8f9fa;
    padding: 35px 28px;
    border-radius: 16px;
    transition: all 0.3s;
}

.download-card:hover {
    transform: translateY(-8px);
    background: white;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.card-icon {
    font-size: 38px;
}

.download-card h3 {
    font-size: 19px;
    color: #1a1a2e;
    font-weight: 700;
}

.download-card p {
    color: #7a7a8c;
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.6;
}

.btn-download {
    background: #f39c12;
    color: white;
    padding: 11px 26px;
    width: 100%;
    text-align: center;
}

.scenario-section {
    padding: 90px 0;
    background: #f8f9fa;
}

.scenario-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 90px;
}

.scenario-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.scenario-item.reverse .scenario-image {
    order: 1;
}

.scenario-item.reverse .scenario-text {
    order: 2;
}

.scenario-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(243, 156, 18, 0.1);
    color: #f39c12;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.scenario-text h2 {
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 18px;
    font-weight: 700;
}

.scenario-text p {
    color: #7a7a8c;
    margin-bottom: 26px;
    line-height: 1.7;
    font-size: 16px;
}

.scenario-list {
    list-style: none;
    margin-bottom: 26px;
}

.scenario-list li {
    color: #1a1a2e;
    padding: 9px 0;
    font-size: 15px;
}

.btn-text {
    background: transparent;
    color: #f39c12;
    padding: 0;
    font-weight: 600;
}

.btn-text:hover {
    color: #e67e22;
}

.scenario-image {
    height: 360px;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.faq-section {
    padding: 90px 0;
    background: white;
}

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

.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #1a1a2e;
    font-weight: 600;
    text-align: left;
}

.faq-icon {
    font-size: 26px;
    color: #f39c12;
    transition: transform 0.3s;
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 22px;
    color: #7a7a8c;
    line-height: 1.7;
}

.cta-section {
    padding: 90px 0;
    text-align: center;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

.cta-content h2 {
    font-size: 40px;
    color: white;
    margin-bottom: 18px;
    font-weight: 700;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 38px;
}

.btn-cta {
    background: #f39c12;
    color: white;
}

.btn-cta:hover {
    background: #e67e22;
}

.footer {
    background: #16213e;
    padding: 65px 0 38px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 42px;
    margin-bottom: 42px;
}

.footer-column h4 {
    color: white;
    font-size: 17px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    display: block;
    padding: 7px 0;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #f39c12;
}

.footer-bottom {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
}

.disclaimer {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

@media (max-width: 1024px) {
    .download-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu, .nav-buttons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 25px;
    }
    
    .download-grid, .features-grid {
        grid-template-columns: 1fr;
    }
    
    .scenario-item, .scenario-item.reverse {
        grid-template-columns: 1fr;
    }
    
    .scenario-item.reverse .scenario-image,
    .scenario-item.reverse .scenario-text {
        order: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}