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

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #f9fafc;
    color: #1e293b;
    line-height: 1.5;
    scroll-behavior: smooth;
}

/* ���޿�����ɫ��ɫ��: ������ (#2D6AFF) + ���� (#10B981) + ���� (#F97316) */
:root {
    --primary-blue: #2D6AFF;
    --primary-blue-dark: #1e4bd2;
    --accent-green: #10B981;
    --accent-orange: #F97316;
    --bg-light: #F8FAFE;
    --card-white: #FFFFFF;
    --text-dark: #0F172A;
    --text-muted: #475569;
    --border-light: #E9EEF3;
    --shadow-sm: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.01);
}

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

/* ��������� (����citexs ��ˬ���) */
.navbar {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 16px 0;
}

.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.3px;
}

    .logo span {
        background: none;
        color: var(--primary-blue);
        font-weight: 700;
    }

.nav-links {
    display: flex;
    gap: 32px;
    font-weight: 500;
}

    .nav-links a {
        text-decoration: none;
        color: var(--text-dark);
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: var(--primary-blue);
        }

.btn-primary {
    background: var(--primary-blue);
    color: white;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 6px rgba(45,106,255,0.2);
}

    .btn-primary:hover {
        background: var(--primary-blue-dark);
        transform: translateY(-1px);
    }

.btn-outline {
    border: 1.5px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    padding: 8px 22px;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.2s;
}

    .btn-outline:hover {
        background: var(--primary-blue);
        color: white;
    }

/* Hero ���� */
.hero {
    padding: 64px 0 48px;
    background: linear-gradient(145deg, #F0F5FF 0%, #FFFFFF 100%);
}

.hero-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    background: #E6F0FF;
    color: var(--primary-blue);
    display: inline-block;
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(to right, #0F2B5E, var(--primary-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 540px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 20px;
}

.stat-item h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.stat-item p {
    font-size: 0.9rem;
    margin: 0;
}

.hero-image {
    flex: 1;
    background: #fff;
    border-radius: 32px;
    box-shadow: var(--shadow-md);
    padding: 20px;
    text-align: center;
}

    .hero-image img {
        max-width: 100%;
        border-radius: 20px;
    }

/* Section ͨ�� */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-sub {
    text-align: center;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 56px auto;
    font-size: 1.1rem;
}

/* ��Ƭ���� */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--card-white);
    border-radius: 28px;
    padding: 32px 24px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
    }

.feature-icon {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-muted);
}

/* ���̲��� */
.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.step-item {
    background: white;
    border-radius: 40px;
    flex: 1;
    min-width: 200px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-top: 5px solid var(--accent-orange);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--accent-green);
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

/* �Աȱ��� */
.compare-table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
    margin-top: 20px;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

    .compare-table th, .compare-table td {
        padding: 16px 20px;
        text-align: left;
        border-bottom: 1px solid var(--border-light);
    }

    .compare-table th {
        background: #F1F5F9;
        font-weight: 700;
        color: var(--text-dark);
    }

    .compare-table tr:last-child td {
        border-bottom: none;
    }

.badge-success {
    background: #DCFCE7;
    color: #15803D;
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* �������� �ַ��� */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 16px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.faq-question {
    padding: 20px 28px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: 0.1s;
}

    .faq-question i {
        color: var(--primary-blue);
        transition: transform 0.2s;
    }

.faq-answer {
    padding: 0 28px 20px 28px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-light);
    display: none;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* CTA ���� */
.cta {
    background: linear-gradient(120deg, #0F2B5E, #1E4BD2);
    border-radius: 48px;
    margin: 40px auto;
    padding: 60px 40px;
    text-align: center;
    color: white;
}

    .cta h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .cta .btn-primary {
        background: white;
        color: var(--primary-blue);
        margin-top: 16px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

.footer {
    background: #0F172A;
    color: #94A3B8;
    padding: 48px 0 24px;
    text-align: center;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .nav-links {
        display: none;
    }
    /* �ƶ��˼򻯣��������������������ݱ��� */
    .hero-grid {
        flex-direction: column;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

