
:root{
  --primary:#1e88e5;
  --accent:#2ecc71;
  --ink:#1a1a1a;
  --muted:#5b6677;
  --bg:#ffffff;
  --section:#f7fafc;
  --card:#ffffff;
  --ring: rgba(30,136,229,0.25);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:var(--ink);background:var(--bg)}
a{color:var(--primary);text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:1100px;margin:0 auto;padding:0 20px}
.header{position:sticky;top:0;background:var(--bg);border-bottom:1px solid #e8eef6;z-index:10}
.nav{display:flex;align-items:center;justify-content:space-between;height:72px}
.logo{display:flex;align-items:center;gap:14px}
.logo img{height:46px}
.logo-text{font-weight:800;font-size:18px;letter-spacing:.3px}
.menu{display:flex;gap:22px;align-items:center}
.button{display:inline-flex;align-items:center;gap:10px;background:var(--primary);color:white;border:none;border-radius:12px;padding:12px 18px;font-weight:700;box-shadow:0 6px 16px rgba(30,136,229,.25);transition:transform .05s ease}
.button:hover{transform:translateY(-1px);text-decoration:none}
.ghost{background:#eef5fe;color:#0b3d91;box-shadow:none}
.hero{background:linear-gradient(180deg,#ffffff 0%,#f7fbff 100%);border-bottom:1px solid #e8eef6}
.hero-inner{display:grid;grid-template-columns:1.2fr .8fr;gap:40px;align-items:center;padding:48px 0}
.badge{display:inline-block;background:#e9f3ff;color:#0b3d91;border-radius:999px;padding:8px 14px;font-weight:700;font-size:13px;border:1px solid #d7e7ff}
.h1{font-size:42px;line-height:1.1;margin:14px 0 10px;font-weight:800}
.lead{color:var(--muted);font-size:18px}
.card{background:var(--card);border:1px solid #e8eef6;border-radius:16px;box-shadow:0 8px 24px rgba(16,24,40,.06);padding:22px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.section{background:var(--section);padding:54px 0;border-top:1px solid #e8eef6;border-bottom:1px solid #e8eef6}
.section h2{font-size:28px;margin:0 0 14px}
.kpis{display:flex;gap:24px;flex-wrap:wrap;margin-top:18px}
.kpi{background:var(--card);border:1px solid #e8eef6;border-radius:12px;padding:14px 16px;min-width:180px}
.kpi b{font-size:22px}
.pricing{padding:54px 0}
.price-card{border:1px solid #e8eef6;border-radius:16px;padding:24px;background:var(--card);box-shadow:0 8px 24px rgba(16,24,40,.06)}
.price{font-size:36px;font-weight:800;margin:8px 0}
.footer{background:#f2f6fb;border-top:1px solid #e1e9f5;padding:28px 0;margin-top:40px;color:#405063}
.footer .row{display:flex;justify-content:space-between;align-items:center;gap:20px;flex-wrap:wrap}
.tag{display:inline-flex;align-items:center;gap:8px;background:#ffffff;border:1px solid #e1e9f5;border-radius:999px;padding:8px 12px;color:#405063}
.contact{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.input, textarea{width:100%;padding:12px 14px;border:1px solid #d6e2f3;border-radius:10px;outline:none}
.input:focus, textarea:focus{border-color:var(--primary);box-shadow:0 0 0 4px var(--ring)}
label{font-weight:700}
small.muted{color:#6b7a90}
@media (max-width:900px){
  .hero-inner{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
}
