:root{
  --bg:#ffffff;
  --text:#0b1220;
  --muted:#4b5563;
  --line:#e5e7eb;
  --card:#f8fafc;
  --accent:#2563eb;
  --accent2:#0f172a;
  --shadow: 0 10px 30px rgba(2,6,23,.08);
  --radius: 18px;
  --max: 1120px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}
a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.85);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px; text-decoration:none;
}
.brand img{width:44px; height:44px; border-radius:12px; box-shadow: var(--shadow)}
.brand .title{font-weight:800; letter-spacing:.2px}
.brand .sub{font-size:12px; color:var(--muted); margin-top:2px}
.menu{display:flex; gap:14px; align-items:center; flex-wrap:wrap}
.menu a{
  font-size:14px; color:var(--muted); text-decoration:none;
  padding:8px 10px; border-radius:12px;
}
.menu a:hover{background:var(--card); color:var(--text)}
.cta{
  display:flex; gap:10px; align-items:center;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:14px;
  font-weight:700; font-size:14px;
  text-decoration:none; border:1px solid var(--line);
  background:#fff;
}
.btn.primary{
  background:var(--accent);
  color:white;
  border-color:transparent;
  box-shadow: var(--shadow);
}
.btn:hover{transform:translateY(-1px)}
.hero{
  padding:44px 0 28px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:start;
}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  font-size:12px; letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background: #fff;
}
h1{
  font-size:44px;
  line-height:1.08;
  margin:14px 0 10px;
  letter-spacing:-.02em;
}
.lead{
  font-size:18px;
  color:var(--muted);
  margin:0 0 18px;
}
.pills{display:flex; flex-wrap:wrap; gap:10px; margin:16px 0 22px}
.pill{
  font-size:13px;
  color:var(--muted);
  border:1px solid var(--line);
  background:var(--card);
  padding:8px 10px;
  border-radius:999px;
}
.card{
  border:1px solid var(--line);
  background:var(--card);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card h3{margin:0 0 8px}
.card p{margin:0; color:var(--muted)}
.grid-3{
  display:grid; gap:14px;
  grid-template-columns: repeat(3, 1fr);
}
.section{
  padding:26px 0;
}
.section h2{
  font-size:28px; margin:0 0 12px; letter-spacing:-.02em;
}
.section .muted{color:var(--muted); margin:0 0 16px}
.list{
  margin:0; padding-left:18px; color:var(--muted);
}
.badge{
  display:inline-block;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--muted);
}
.pricing{
  display:grid; gap:14px;
  grid-template-columns: repeat(3, 1fr);
}
.price{
  border:1px solid var(--line);
  background:#fff;
  border-radius:var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.price .name{font-weight:800}
.price .from{margin-top:8px; font-size:28px; font-weight:900; letter-spacing:-.02em}
.price .note{color:var(--muted); font-size:13px; margin:6px 0 12px}
.hr{height:1px; background:var(--line); margin:14px 0}
.kv{
  display:grid; gap:10px;
}
.kv div{
  display:flex; justify-content:space-between; gap:10px;
  border:1px dashed var(--line);
  background:var(--card);
  padding:10px 12px;
  border-radius:14px;
  color:var(--muted);
  font-size:13px;
}
.footer{
  border-top:1px solid var(--line);
  padding:22px 0;
  color:var(--muted);
  font-size:13px;
}
.small{font-size:13px;color:var(--muted)}
.notice{
  border-left:4px solid var(--accent);
  padding:12px 14px;
  border-radius:14px;
  background: #eef2ff;
  color:#111827;
}
.notice strong{color:#111827}
@media (max-width: 940px){
  .hero-grid{grid-template-columns:1fr}
  h1{font-size:36px}
  .grid-3{grid-template-columns:1fr}
  .pricing{grid-template-columns:1fr}
  .menu{display:none}
}