*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, sans-serif;
    overflow-x: hidden;
    background: #FAF6F0;
    color: #2C2824;
    line-height: 1.6;
}

/* ===== 滚动条 ===== */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #F5F0E8;
}
::-webkit-scrollbar-thumb {
    background: #D4C4A8;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #B8A08A;
}

/* ===== 容器 ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section:nth-child(even) {
    background: linear-gradient(135deg, #F5F0E8 0%, #FAF6F0 100%);
}

/* ===== 导航 ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 246, 240, 0.92);
    backdrop-filter: blur(16px) saturate(1.1);
    border-bottom: 1px solid rgba(212, 196, 168, 0.25);
    transition: background 0.4s ease;
}

.site-header.scrolled {
    background: rgba(250, 246, 240, 0.98);
}

.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: 10px;
    font-weight: 700;
    font-size: 1.3rem;
    text-decoration: none;
    color: #2C2824;
    letter-spacing: 2px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #D4A76A, #C49A5E);
    color: #fff;
    box-shadow: 0 4px 12px rgba(212, 167, 106, 0.35);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    color: #8B7A65;
    letter-spacing: 1px;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #D4A76A, #C49A5E);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
}

.main-nav a:hover {
    color: #D4A76A;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px !important;
    border-radius: 50px !important;
    background: linear-gradient(135deg, #D4A76A, #C49A5E) !important;
    color: #fff !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 16px rgba(212, 167, 106, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(212, 167, 106, 0.4) !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.menu-toggle span {
    width: 26px;
    height: 2px;
    background: #2C2824;
    border-radius: 2px;
    transition: 0.3s ease;
}

/* ===== Hero ===== */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 72px;
    background: linear-gradient(160deg, #FAF6F0 0%, #F5EDE4 30%, #F0E8DC 60%, #FAF6F0 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 167, 106, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(180, 150, 120, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 720px;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(212, 167, 106, 0.15), rgba(196, 154, 94, 0.10));
    color: #B8986A;
    border: 1px solid rgba(212, 167, 106, 0.2);
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #2C2824;
}

.hero h1 .text-accent {
    background: linear-gradient(135deg, #D4A76A, #B8986A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.1rem;
    opacity: 0.65;
    max-width: 520px;
    margin-bottom: 36px;
    color: #6B5E50;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 40, 36, 0.08);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== 按钮 ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #D4A76A, #C49A5E);
    color: #fff;
    box-shadow: 0 4px 20px rgba(212, 167, 106, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 167, 106, 0.45);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid #D4C4A8;
    color: #8B7A65;
}

.btn-outline:hover {
    border-color: #D4A76A;
    color: #D4A76A;
    background: rgba(212, 167, 106, 0.05);
    transform: translateY(-2px);
}

/* ===== 标签/标题 ===== */
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 14px;
    color: #C4A882;
    text-transform: uppercase;
    position: relative;
    padding-left: 40px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 1.5px;
    background: #D4A76A;
    transform: translateY(-50%);
}

.section-title {
    font-size: 2.6rem;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #2C2824;
    line-height: 1.2;
}

.section-desc {
    max-width: 600px;
    opacity: 0.65;
    margin-bottom: 48px;
    color: #6B5E50;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ===== 卡片网格 ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.category-card {
    border-radius: 16px;
    padding: 36px 32px;
    background: #fff;
    border: 1px solid rgba(212, 196, 168, 0.25);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #D4A76A, #E8D1BC, #D4A76A);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(44, 40, 36, 0.06);
    border-color: rgba(212, 167, 106, 0.3);
}

.category-card:hover::before {
    opacity: 1;
}

.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, #F5EDE4, #FAF6F0);
    color: #D4A76A;
    border: 1px solid rgba(212, 196, 168, 0.2);
}

.category-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2C2824;
}

.category-card p {
    font-size: 0.9rem;
    color: #8B7A65;
    line-height: 1.7;
    margin-bottom: 16px;
}

.card-link {
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    color: #D4A76A;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.card-link:hover {
    gap: 12px;
}

/* ===== 特性块 ===== */
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.feature-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 40, 36, 0.06);
    position: relative;
}

.feature-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2C2824;
    line-height: 1.2;
}

.feature-text>p {
    color: #6B5E50;
    line-height: 1.8;
    margin-bottom: 24px;
    opacity: 0.75;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #5A4E42;
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '✦';
    font-weight: 400;
    color: #D4A76A;
    font-size: 0.8rem;
}

/* ===== 数据条 ===== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item {
    padding: 32px 20px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(212, 196, 168, 0.2);
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(44, 40, 36, 0.05);
    border-color: rgba(212, 167, 106, 0.25);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2C2824;
    line-height: 1;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #D4A76A, #B8986A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-top: 4px;
    color: #8B7A65;
    letter-spacing: 1px;
}

/* ===== 内容墙 ===== */
.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(212, 196, 168, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #fff;
}

.content-wall-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(44, 40, 36, 0.06);
    border-color: rgba(212, 167, 106, 0.25);
}

.content-wall-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.content-wall-item:hover img {
    transform: scale(1.03);
}

.content-wall-body {
    padding: 24px 28px;
}

.content-wall-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2C2824;
}

.content-wall-body p {
    font-size: 0.9rem;
    color: #8B7A65;
    line-height: 1.7;
    margin-bottom: 12px;
}

.content-wall-body .meta {
    font-size: 0.75rem;
    color: #C4A882;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(212, 196, 168, 0.25);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(212, 167, 106, 0.3);
}

.faq-item .faq-question {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2C2824;
    transition: color 0.3s ease;
    user-select: none;
}

.faq-item .faq-question::after {
    content: '↓';
    font-size: 0.9rem;
    color: #C4A882;
    transition: transform 0.4s ease;
}

.faq-item.open .faq-question::after {
    transform: rotate(-180deg);
}

.faq-item .faq-answer {
    padding: 0 24px 20px;
    display: none;
    opacity: 0.7;
    color: #6B5E50;
    line-height: 1.8;
    font-size: 0.95rem;
}

.faq-item.open .faq-answer {
    display: block;
    animation: fadeInUp 0.4s ease;
}

/* ===== CTA横幅 ===== */
.cta-banner {
    padding: 72px 48px;
    text-align: center;
    border-radius: 20px;
    background: linear-gradient(135deg, #D4A76A, #C49A5E, #B8986A);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.10) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner h2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto 28px;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.cta-banner .btn-primary {
    background: #fff;
    color: #B8986A;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    position: relative;
    z-index: 1;
}

.cta-banner .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

/* ===== 页脚 ===== */
.site-footer {
    padding: 72px 0 32px;
    background: linear-gradient(180deg, #F5F0E8, #EDE5DA);
    border-top: 1px solid rgba(212, 196, 168, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand p {
    color: #8B7A65;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: 12px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2C2824;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    color: #8B7A65;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: #D4A76A;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 196, 168, 0.25);
    margin-top: 48px;
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: #A89880;
}

/* ===== 工具类 ===== */
.text-accent {
    color: #D4A76A;
}

.text-center {
    text-align: center;
}

.seo-description {
    max-width: 620px;
    margin: 0 auto 48px;
    opacity: 0.65;
    color: #6B5E50;
    line-height: 1.8;
    font-size: 1.05rem;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

/* ===== 额外装饰 ===== */
.divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #D4A76A, transparent);
    margin: 24px 0;
}

.divider-center {
    margin: 24px auto;
}

/* ===== 动画 ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .footer-grid {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        padding: 60px 0;
    }
    .hero h1 {
        font-size: 2.4rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .feature-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .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(250, 246, 240, 0.98);
        backdrop-filter: blur(16px);
        padding: 24px 32px;
        gap: 20px;
        border-bottom: 1px solid rgba(212, 196, 168, 0.2);
        box-shadow: 0 20px 40px rgba(44, 40, 36, 0.05);
    }
    .main-nav.open a {
        font-size: 1rem;
    }
    .section {
        padding: 64px 0;
    }
    .cta-banner {
        padding: 48px 28px;
    }
    .cta-banner h2 {
        font-size: 1.6rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .card-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .cards-grid,
    .content-wall,
    .stats-bar {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .stat-number {
        font-size: 2rem;
    }
    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
    .container {
        padding: 0 16px;
    }
    .section {
        padding: 48px 0;
    }
    .hero-eyebrow {
        font-size: 0.65rem;
        padding: 4px 14px;
    }
    .content-wall-item img {
        height: 180px;
    }
    .cta-banner {
        padding: 36px 20px;
    }
    .cta-banner h2 {
        font-size: 1.3rem;
    }
}