:root {
    --ink: #111111;
    --paper: #f4f1ea;
    --mute: #5c5c5c;
    --line: #d6d2c8;
    --red: #c0392b;
    --yellow: #f1c40f;
    --blue: #2471a3;
}

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

.bau-bar {
    display: grid;
    grid-template-columns: 16px 1fr auto 16px;
    align-items: center;
    gap: 16px;
    padding: 10px 20px;
    background: var(--ink);
    color: #fff;
    letter-spacing: 0.2em;
    font-size: 11px;
}
.bau-bar i:first-child { width: 16px; height: 16px; background: var(--red); }
.bau-bar i:last-child { width: 16px; height: 16px; background: var(--yellow); }
.bau-bar span:nth-child(3) { color: #ddd; }

.site-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #fff;
    border-bottom: 2px solid var(--ink);
}
.nav-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.logo-mark {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    background: var(--blue);
    color: #fff;
}
.nav-toggle { display: none; }
.nav-burger {
    display: none;
    margin-left: auto;
    padding: 6px 10px;
    border: 1px solid var(--ink);
    font-size: 13px;
}
.nav-menu { display: flex; gap: 18px; flex: 1; font-size: 14px; }
.nav-menu a { color: var(--mute); }
.nav-menu a.active, .nav-menu a:hover { color: var(--ink); }
.nav-actions { display: flex; gap: 10px; }

.btn {
    display: inline-block;
    padding: 10px 18px;
    background: var(--ink);
    color: #fff;
}
.btn:hover { background: var(--blue); }
.btn-lg { padding: 14px 26px; }
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
}

.hero { padding: 64px 0 72px; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 36px;
    align-items: center;
}
.geo {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}
.geo span { width: 18px; height: 18px; }
.geo span:nth-child(1) { background: var(--red); }
.geo span:nth-child(2) { background: var(--yellow); }
.geo span:nth-child(3) { background: var(--blue); }
.tag {
    display: inline-block;
    margin-bottom: 10px;
    letter-spacing: 0.16em;
    font-size: 12px;
    font-weight: 700;
}
.hero-kicker { color: var(--mute); margin-bottom: 8px; }
.hero h1 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 700;
}
.hero p { color: var(--mute); max-width: 36em; }
.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 16px;
    color: var(--mute);
    font-size: 13px;
}
.hero-visual img { width: 100%; border: 2px solid var(--ink); }

.data-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.data-band > div {
    padding: 26px 12px;
    text-align: center;
    background: #fff;
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    border-right: 2px solid var(--ink);
}
.data-band > div:first-child { border-left: 2px solid var(--ink); }
.data-band > div:nth-child(1) { background: var(--red); color: #fff; }
.data-band > div:nth-child(2) { background: var(--yellow); }
.data-band > div:nth-child(3) { background: var(--blue); color: #fff; }
.data-num { font-size: 28px; }
.data-label { font-size: 13px; letter-spacing: 0.1em; }

.section { padding: 70px 0; }
.section.alt { background: #fff; }
.section-head { margin-bottom: 28px; }
.section-head h2 { font-size: 30px; margin-bottom: 8px; }
.section-head p { color: var(--mute); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
    padding: 22px;
    background: #fff;
    border: 2px solid var(--ink);
}
.card h3 { margin: 10px 0 8px; font-size: 20px; }
.card p { color: var(--mute); font-size: 15px; }
.card.main { background: var(--yellow); }
.icon {
    width: 28px;
    height: 28px;
    background: var(--ink);
}
.card:nth-child(2) .icon { background: var(--red); }
.card:nth-child(3) .icon { background: var(--blue); }
.card:nth-child(5) .icon { background: var(--yellow); border: 2px solid var(--ink); }
.solution-card { padding: 0; overflow: hidden; }
.solution-card img { height: 176px; width: 100%; object-fit: cover; }
.solution-card div { padding: 16px 18px 20px; }
.price { font-weight: 700; margin-bottom: 8px; }

.cta {
    padding: 72px 0;
    text-align: center;
    background: var(--ink);
    color: #fff;
}
.cta h2 { font-size: 32px; margin-bottom: 12px; }
.cta p { color: #c8c8c8; margin-bottom: 22px; }
.cta .btn { background: var(--yellow); color: var(--ink); }
.cta .btn-ghost { background: transparent; color: #fff; border-color: #fff; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.site-footer {
    padding: 48px 0 24px;
    background: var(--paper);
    border-top: 2px solid var(--ink);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
.footer-grid h4 { margin-bottom: 12px; }
.footer-grid a, .footer-grid p { display: block; color: var(--mute); margin-bottom: 8px; font-size: 14px; }
.footer-bottom {
    margin-top: 28px;
    padding-top: 16px;
    border-top: 2px solid var(--ink);
    color: var(--mute);
    font-size: 13px;
}

.page-hero { padding: 56px 0 20px; }
.page-hero h1 { font-size: 36px; margin: 10px 0 12px; }
.page-hero p { color: var(--mute); max-width: 40em; }
.dl-list, .help-list { display: grid; gap: 14px; }
.dl-item, .help-box {
    padding: 22px 24px;
    background: #fff;
    border: 2px solid var(--ink);
}
.dl-item { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.dl-item.main { background: var(--yellow); }
.specs { display: flex; gap: 14px; font-size: 13px; margin: 8px 0; font-weight: 700; }
.shot { margin-top: 28px; }
.shot img { width: 100%; border: 2px solid var(--ink); }

@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: 16px;
    }
    .nav-wrap { flex-wrap: wrap; }
    .hero-grid, .grid-3, .data-band, .footer-grid, .dl-item {
        grid-template-columns: 1fr;
        display: grid;
    }
}
