:root{
  --bg: #ffffff;
  --text: #201820;
  --muted: #5b5560;
  --line: #e8e6ea;

  --blue: #0090d8;
  --green:#90c038;
  --orange:#f8a018;

  --card: #fbfbfc;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius: 16px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color:var(--text); background:var(--bg); }
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{ width:min(1100px, 92vw); margin:0 auto; }

header{
  position:sticky; top:0; z-index:10;
  background:rgba(255,255,255,.9);
  backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{ display:flex; align-items:center; gap:14px; }
.brand img{ height:44px; width:auto; display:block; }
.brand .tag{ font-size:14px; color:var(--muted); line-height:1.2; }

.menu{ display:flex; gap:18px; align-items:center; flex-wrap:wrap; }
.menu a{ padding:8px 10px; border-radius:10px; }
.menu a.active{ background: #f3f3f6; }

.btn{
  display:inline-block;
  padding:12px 16px;
  border-radius:12px;
  background:var(--blue);
  color:#fff;
  font-weight:600;
  border:1px solid rgba(0,0,0,0);
  box-shadow: 0 10px 22px rgba(0,144,216,.18);
}
.btn:hover{ text-decoration:none; filter:brightness(.97); }
.btn.secondary{
  background:transparent;
  color:var(--text);
  border:1px solid var(--line);
  box-shadow:none;
}

.hero{
  padding:58px 0 30px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:24px;
  align-items:stretch;
}
@media (max-width: 860px){
  .hero-grid{ grid-template-columns: 1fr; }
}

h1{ font-size:44px; letter-spacing:-0.02em; margin:0 0 10px; }
@media (max-width: 520px){ h1{ font-size:36px; } }
.lead{ font-size:18px; color:var(--muted); line-height:1.55; margin:0 0 18px; }

.pills{ display:flex; flex-wrap:wrap; gap:10px; margin:18px 0 0; }
.pill{
  border:1px solid var(--line);
  background:#fff;
  padding:8px 10px;
  border-radius:999px;
  font-size:13px;
  color:var(--muted);
}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.card h3{ margin:0 0 8px; }
.card p{ margin:0; color:var(--muted); line-height:1.55; }
.kpi{ display:grid; gap:10px; }
.kpi .row{ display:flex; gap:10px; align-items:flex-start; }
.dot{
  width:10px; height:10px; border-radius:50%;
  margin-top:6px;
}
.dot.blue{ background:var(--blue); }
.dot.green{ background:var(--green); }
.dot.orange{ background:var(--orange); }

.section{ padding:26px 0; }
.section h2{ font-size:26px; margin:0 0 12px; }
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
@media (max-width: 900px){ .grid3{ grid-template-columns: 1fr; } }

.list{ margin:10px 0 0; padding-left:18px; color:var(--muted); }
.list li{ margin:6px 0; }

.banner{
  margin:28px 0 10px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  background:#fff;
}
@media (max-width: 720px){ .banner{ flex-direction:column; align-items:flex-start; } }

footer{
  border-top:1px solid var(--line);
  padding:22px 0;
  margin-top:30px;
  color:var(--muted);
  font-size:14px;
}
.footer-row{ display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; }
.small{ font-size:13px; color:var(--muted); }

.form{
  display:grid; gap:12px;
}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  font: inherit;
}
textarea{ min-height:120px; resize:vertical; }

