:root{
  --bg:#f8f9fa; --text:#2f3437; --muted:#6b6f73; --border:#e2e4e8; --card:#fff;
  --accent:#E80028; --r:14px; --shadow:0 8px 30px rgba(0,0,0,.08);
  --wrap:1100px; --font: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
*{box-sizing:border-box} html,body{height:100%} body{margin:0;background:var(--bg);color:var(--text);font:15px/1.6 var(--font)}
.mh-wrap{max-width:var(--wrap);margin:0 auto;padding:0 24px}
.mh-nav{position:sticky;top:0;background:#fff;border-bottom:1px solid var(--border);z-index:5}
.mh-nav>.mh-wrap{display:flex;align-items:center;justify-content:space-between;height:64px}
.mh-logo{width:40px;height:40px;border-radius:10px;display:grid;place-items:center;background:var(--accent);box-shadow:var(--shadow);overflow:hidden}
.mh-logo img{width:70%;height:70%;object-fit:contain}
.mh-btn{display:inline-flex;align-items:center;gap:8px;background:var(--accent);color:#fff;border:1px solid var(--accent);padding:10px 14px;border-radius:10px;text-decoration:none}
.mh-btn:hover{filter:brightness(.97)}
.mh-btn.ghost{background:#fff;color:var(--text);border:1px solid var(--border)}
.mh-btn.ghost:hover{background:#f3f3f3}
.mh-hero{background:linear-gradient(180deg,#fff, #f8f9fa 60%);padding:56px 0}
.mh-hero .mh-wrap{display:grid;grid-template-columns:1.1fr .9fr;gap:32px;align-items:center}
.mh-hero h1{font-size:44px;line-height:1.15;margin:0 0 10px}
.mh-hero p{color:var(--muted);margin:0 0 16px;max-width:540px}
.mh-cta{display:flex;gap:12px;margin-top:8px}
.mh-art{min-height:260px;border:1px dashed var(--border);border-radius:16px;background:#fff;box-shadow:var(--shadow)}
.mh-features{padding:40px 0}
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{background:#fff;border:1px solid var(--border);border-radius:14px;padding:18px;box-shadow:var(--shadow)}
.card h3{margin:4px 0 6px}
.card p{color:var(--muted);margin:0}
.mh-foot{border-top:1px solid var(--border);padding:18px 0;color:var(--muted);text-align:center}
@media (max-width:900px){ .mh-hero .mh-wrap{grid-template-columns:1fr} .grid{grid-template-columns:1fr} .mh-art{min-height:200px} }
