*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif;
    overflow-x: hidden;
    background: #FFF8F0;
    color: #1A1A1A;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section:nth-child(even) {
    background: #FFFDF7;
}

/* ===== 导航 ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 248, 240, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(220, 38, 38, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.25rem;
    text-decoration: none;
    color: #1A1A1A;
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #DC2626, #991B1B);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4A4A4A;
    transition: color 0.3s;
    position: relative;
    padding: 4px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #DC2626;
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: #DC2626;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px !important;
    border-radius: 10px !important;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: #fff !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.3);
    transition: transform 0.3s, box-shadow 0.3s !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4) !important;
    color: #fff !important;
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(220, 38, 38, 0.15);
    background: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: #DC2626;
    transition: background 0.2s;
}

.menu-toggle:hover {
    background: #FFF0ED;
}

/* ===== Hero ===== */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 72px;
    background: linear-gradient(165deg, #FFF8F0 0%, #FFF0ED 40%, #FFEAE5 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(153, 27, 27, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 6px 18px;
    border-radius: 100px;
    background: #DC2626;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #1A1A1A;
}

.hero h1 .text-accent {
    color: #DC2626;
    position: relative;
    display: inline-block;
}

.hero h1 .text-accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(220, 38, 38, 0.15);
    border-radius: 3px;
}

.hero p {
    font-size: 1.1rem;
    opacity: 0.65;
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.12);
    position: relative;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(220, 38, 38, 0.06);
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== 按钮 ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: #fff;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(220, 38, 38, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid #DC2626;
    color: #DC2626;
}

.btn-outline:hover {
    background: #FFF0ED;
    transform: translateY(-2px);
}

/* ===== 标签/标题 ===== */
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(220, 38, 38, 0.08);
    color: #DC2626;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #1A1A1A;
}

.section-desc {
    max-width: 600px;
    opacity: 0.6;
    margin-bottom: 48px;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ===== 卡片网格 ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 28px;
}

.category-card {
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(220, 38, 38, 0.06);
    background: #FFFDF7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #DC2626, #991B1B);
    transition: height 0.4s ease;
    border-radius: 0 2px 2px 0;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.08);
    border-color: rgba(220, 38, 38, 0.12);
}

.category-card:hover::before {
    height: 100%;
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
    background: linear-gradient(135deg, #FFF0ED, #FFE8E0);
    color: #DC2626;
    transition: transform 0.3s;
}

.category-card:hover .card-icon {
    transform: scale(1.05);
}

.card-link {
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    color: #DC2626;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.card-link:hover {
    gap: 12px;
}

/* ===== 特性块 ===== */
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.feature-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(220, 38, 38, 0.08);
    position: relative;
}

.feature-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 1px solid rgba(220, 38, 38, 0.06);
    pointer-events: none;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-text .section-title {
    margin-bottom: 12px;
}

.feature-text .section-desc {
    margin-bottom: 28px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    border-bottom: 1px solid rgba(220, 38, 38, 0.04);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '✦';
    font-weight: 400;
    color: #DC2626;
    font-size: 0.8rem;
}

/* ===== 数据条 ===== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    text-align: center;
}

.stat-item {
    padding: 32px 20px;
    border-radius: 16px;
    border: 1px solid rgba(220, 38, 38, 0.06);
    background: #FFFDF7;
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.06);
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 900;
    color: #DC2626;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.55;
    margin-top: 8px;
    font-weight: 500;
}

/* ===== 内容墙 ===== */
.content-wall {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.content-wall-item {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(220, 38, 38, 0.06);
    background: #FFFDF7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-wall-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.08);
    border-color: rgba(220, 38, 38, 0.1);
}

.content-wall-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s;
}

.content-wall-item:hover img {
    transform: scale(1.03);
}

.content-wall-body {
    padding: 24px;
}

.content-wall-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1A1A1A;
}

.content-wall-body p {
    opacity: 0.6;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(220, 38, 38, 0.06);
    border-radius: 14px;
    margin-bottom: 10px;
    overflow: hidden;
    cursor: pointer;
    background: #FFFDF7;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    border-color: rgba(220, 38, 38, 0.12);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.04);
}

.faq-item .faq-question {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1A1A1A;
}

.faq-item .faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: #DC2626;
    transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-item .faq-answer {
    padding: 0 24px 20px;
    display: none;
    opacity: 0.65;
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-item.open .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 0.65;
        transform: translateY(0);
    }
}

/* ===== CTA横幅 ===== */
.cta-banner {
    padding: 64px 32px;
    text-align: center;
    border-radius: 20px;
    background: linear-gradient(135deg, #DC2626, #991B1B);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner h2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.cta-banner .btn {
    position: relative;
    z-index: 1;
}

.cta-banner .btn-primary {
    background: #fff;
    color: #DC2626;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-banner .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ===== 页脚 ===== */
.site-footer {
    padding: 64px 0 32px;
    background: #1A1A1A;
    color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 16px;
}

.footer-brand p {
    opacity: 0.5;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-col h4 {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.88rem;
    padding: 5px 0;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #DC2626;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 48px;
    padding-top: 24px;
    text-align: center;
    font-size: 0.82rem;
    opacity: 0.4;
}

/* ===== 工具类 ===== */
.text-accent {
    color: #DC2626;
}

.text-center {
    text-align: center;
}

.seo-description {
    max-width: 600px;
    margin: 0 auto 48px;
    opacity: 0.6;
    font-size: 1.05rem;
    line-height: 1.7;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .feature-block {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .feature-block {
        grid-template-columns: 1fr;
    }

    .feature-block:nth-child(even) .feature-image {
        order: -1;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-item {
        padding: 24px 16px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(255, 248, 240, 0.98);
        backdrop-filter: blur(16px);
        padding: 24px 32px;
        gap: 16px;
        border-bottom: 1px solid rgba(220, 38, 38, 0.08);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    }

    .main-nav.open a {
        font-size: 1rem;
        padding: 8px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cards-grid,
    .content-wall {
        gap: 20px;
    }

    .cta-banner {
        padding: 48px 20px;
    }

    .cta-banner h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .cards-grid,
    .content-wall,
    .stats-bar {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .stat-item {
        padding: 20px 16px;
    }

    .logo {
        font-size: 1.05rem;
    }

    .logo-icon {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }

    .header-inner {
        height: 64px;
    }
}