:root{
  --bg: #f7fafc;
  --surface:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --border:#e2e8f0;
  --brand:#0ea5e9;
  --brand2:#22c55e;
  --shadow: 0 12px 30px rgba(2,6,23,.10);
  --radius: 18px;
  --max: 1120px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: radial-gradient(1200px 700px at 20% -10%, rgba(14,165,233,.14), transparent 55%),
              radial-gradient(900px 500px at 80% 0%, rgba(34,197,94,.12), transparent 60%),
              var(--bg);
  line-height:1.55;
}
a{color:inherit; text-decoration:none}
a:hover{opacity:.92}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(1.2) blur(10px);
  background: rgba(247,250,252,.78);
  border-bottom:1px solid rgba(226,232,240,.75);
}
.nav-inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:14px}
.logo{display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:.2px}
.logo-badge{
  width:34px; height:34px; border-radius:12px;
  background: linear-gradient(135deg,var(--brand),var(--brand2));
  box-shadow: var(--shadow);
}
.navlinks{display:flex; align-items:center; gap:14px; flex-wrap:wrap}
.pill{
  padding:10px 12px; border:1px solid var(--border); border-radius:999px;
  background: rgba(255,255,255,.75);
}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px; border-radius:999px;
  border:1px solid rgba(14,165,233,.20);
  background: linear-gradient(135deg, rgba(14,165,233,.15), rgba(34,197,94,.12));
  font-weight:700;
}
.btn.primary{
  border:none;
  color:#ffffff;
  background: linear-gradient(135deg,var(--brand), #10b981);
  box-shadow: var(--shadow);
}
.btn.small{padding:10px 12px; font-weight:700}
.hero{padding:54px 0 18px}
.grid-2{display:grid; grid-template-columns: 1.12fr .88fr; gap:22px; align-items:start}
@media (max-width: 980px){ .grid-2{grid-template-columns:1fr} }
.card{
  background: rgba(255,255,255,.86);
  border:1px solid rgba(226,232,240,.85);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card.pad{padding:22px}
.h1{font-size: clamp(28px, 3.6vw, 44px); line-height:1.12; margin:0 0 12px}
.lead{font-size: 18px; color:var(--muted); margin:0 0 18px}
.kpis{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.kpi{padding:10px 12px; border:1px solid var(--border); border-radius:999px; background:#fff; color:var(--muted); font-weight:600}
.section{padding:28px 0}
.h2{font-size: 26px; margin:0 0 12px}
.h3{font-size: 18px; margin:0 0 8px}
.muted{color:var(--muted)}
.features{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
@media (max-width: 980px){ .features{grid-template-columns:1fr} }
.feature{padding:18px}
.icon{
  width:38px; height:38px; border-radius:14px;
  background: rgba(14,165,233,.12);
  display:grid; place-items:center; border:1px solid rgba(14,165,233,.18);
  margin-bottom:10px;
}
.form{display:grid; gap:12px; margin-top:8px}
.row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
@media (max-width: 640px){ .row{grid-template-columns:1fr} }
label{font-weight:700; font-size: 13px}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid var(--border);
  background:#fff;
  font:inherit;
}
textarea{min-height:96px; resize:vertical}
.help{font-size:12px; color:var(--muted)}
.check{
  display:flex; gap:10px; align-items:flex-start;
  padding:12px; border:1px solid var(--border); border-radius:14px; background:#fff;
}
.check input{width:18px; height:18px; margin-top:2px}
.footer{
  border-top:1px solid rgba(226,232,240,.9);
  padding:22px 0 28px;
  color:var(--muted);
}
.footer a{color:var(--muted); text-decoration:underline; text-underline-offset:3px}
.notice{
  padding:12px 14px; border-radius:14px;
  border:1px solid rgba(34,197,94,.22);
  background: rgba(34,197,94,.10);
  color: #064e3b;
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px; border-radius:999px;
  border:1px solid rgba(2,6,23,.10);
  background: rgba(255,255,255,.85);
  font-weight:700;
}
hr.sep{border:none; border-top:1px solid rgba(226,232,240,.9); margin:18px 0}
.cookie{
  position:fixed; left:16px; right:16px; bottom:16px; z-index:60;
  max-width:980px; margin:0 auto;
  display:none;
}
.cookie-inner{
  display:flex; gap:12px; align-items:flex-start; justify-content:space-between;
  padding:14px; border-radius:18px;
  border:1px solid rgba(226,232,240,.9);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}
.cookie-actions{display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:flex-end}
.smallprint{font-size:12px; color:var(--muted)}
