:root {
    --felt: #c45c3e;
    --wool: #f4ebe0;
    --olive: #6b7a4e;
    --ink: #3a2f2a;
    --mute: #7a6a60;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: "Nunito", "Microsoft YaHei", sans-serif;
    color: var(--ink);
    background: var(--wool);
    line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1100px, calc(100% - 36px)); margin: 0 auto; }

.site-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(244, 235, 224, 0.94);
    border-bottom: 1px solid #e4d4c4;
}
.nav-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 70px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
}
.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--felt);
    color: #fff;
    box-shadow: 0 4px 0 #9a3f28;
}
.logo small { display: block; font-size: 10px; color: var(--olive); letter-spacing: 0.12em; }
.nav-toggle { display: none; }
.nav-burger {
    display: none;
    margin-left: auto;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-size: 12px;
}
.nav-menu { display: flex; gap: 14px; flex: 1; font-size: 14px; }
.nav-menu a { color: var(--mute); }
.nav-menu a.active, .nav-menu a:hover { color: var(--felt); }
.nav-actions { display: flex; gap: 8px; }

.btn {
    display: inline-block;
    padding: 9px 16px;
    border-radius: 999px;
    background: var(--felt);
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    box-shadow: 0 4px 0 #9a3f28;
}
.btn:hover { transform: translateY(1px); box-shadow: 0 3px 0 #9a3f28; }
.btn-lg { padding: 12px 22px; }
.btn-ghost {
    background: #fff;
    color: var(--ink);
    box-shadow: 0 4px 0 #d4c4b4;
}

.hero { padding: 48px 0 36px; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: center;
}
.hero-kicker {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 12px;
    border-radius: 999px;
    background: #f0d8cc;
    color: var(--felt);
    font-size: 12px;
    font-weight: 800;
}
.hero h1 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
    margin-bottom: 12px;
}
.hero p { color: var(--mute); max-width: 40em; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.hero-visual {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 16px 0 #e0cfc0;
}
.hero-visual img { width: 100%; }

.data-band { padding: 0 0 36px; }
.data-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.data-grid > div {
    padding: 18px 16px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 0 #e0cfc0;
}
.data-num { font-size: 24px; font-weight: 800; color: var(--felt); }
.data-label { color: var(--mute); font-size: 13px; }

.section { padding: 46px 0; }
.section.alt { background: #eadfd2; }
.section-head { margin-bottom: 18px; }
.section-head h2 { font-size: 26px; margin-bottom: 6px; }
.section-head p { color: var(--mute); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.card {
    padding: 20px;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 8px 0 #e0cfc0;
}
.card.main { outline: 3px solid var(--olive); }
.card h3 { margin: 8px 0; font-size: 18px; }
.card p { color: var(--mute); font-size: 14px; }
.icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--olive);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}
.solution-card { padding: 0; overflow: hidden; }
.solution-card img { height: 158px; width: 100%; object-fit: cover; }
.solution-card div { padding: 16px 18px 20px; }
.price { color: var(--felt); font-weight: 800; margin-bottom: 6px; }

.cta {
    padding: 52px 0;
    text-align: center;
    background: var(--felt);
    color: #fff;
}
.cta h2 { font-size: 26px; margin-bottom: 8px; }
.cta p { opacity: 0.92; margin-bottom: 18px; }
.cta-actions { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.cta .btn { background: #fff; color: var(--felt); box-shadow: 0 4px 0 #9a3f28; }
.cta .btn-ghost { background: transparent; color: #fff; box-shadow: 0 4px 0 #9a3f28; }

.site-footer {
    padding: 34px 0 16px;
    background: #fff8f2;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 20px; }
.footer-grid h4 { margin-bottom: 8px; font-size: 13px; }
.footer-grid a, .footer-grid p { display: block; color: var(--mute); margin-bottom: 5px; font-size: 13px; }
.footer-bottom {
    margin-top: 18px;
    padding-top: 10px;
    border-top: 1px solid #eadfd2;
    color: #9a8a80;
    font-size: 12px;
}

.page-hero { padding: 36px 0 8px; }
.page-hero h1 { font-size: 30px; margin: 8px 0; }
.page-hero p { color: var(--mute); max-width: 44em; }
.dl-list, .help-list { display: grid; gap: 12px; }
.dl-item, .help-box {
    padding: 20px 22px;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 8px 0 #e0cfc0;
}
.dl-item { display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.dl-item.main { outline: 3px solid var(--felt); }
.specs { display: flex; gap: 12px; color: var(--olive); font-size: 12px; margin: 6px 0; font-weight: 800; }
.shot { margin-top: 20px; border-radius: 24px; overflow: hidden; box-shadow: 0 12px 0 #e0cfc0; }
.shot img { width: 100%; }

@media (max-width: 900px) {
    .nav-burger { display: inline-block; }
    .nav-menu, .nav-actions { display: none; }
    .nav-toggle:checked ~ .nav-menu,
    .nav-toggle:checked ~ .nav-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding-bottom: 14px;
    }
    .nav-wrap { flex-wrap: wrap; }
    .hero-grid, .grid-3, .data-grid, .footer-grid, .dl-item { grid-template-columns: 1fr; display: grid; }
}
