:root{
  --bg:#f6f8fc;
  --surface:#ffffff;
  --surface-soft:#f9fbff;
  --text:#101828;
  --muted:#667085;
  --line:#e6eaf2;
  --primary:#2563eb;
  --primary-dark:#1d4ed8;
  --accent:#0ea5e9;
  --success:#16a34a;
  --radius:22px;
  --shadow:0 18px 55px rgba(16,24,40,.09);
  --container:1160px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}
a{color:inherit;text-decoration:none}
.container{width:min(calc(100% - 32px),var(--container));margin:0 auto}
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.nav{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}
.brand-logo{
  width:42px;
  height:42px;
  border-radius:13px;
  display:block;
}
.brand-text{
  display:flex;
  flex-direction:column;
  gap:3px;
  line-height:1.1;
}
.brand-text strong{
  font-size:1.05rem;
  font-weight:850;
  letter-spacing:.01em;
  color:var(--text);
}
.brand-text span{
  font-size:.78rem;
  color:var(--muted);
  font-weight:600;
}
.menu{
  display:flex;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
}
.menu a{
  color:#344054;
  font-weight:650;
  font-size:.95rem;
}
.menu a:hover{color:var(--primary)}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 20px;
  border-radius:14px;
  font-weight:800;
  border:1px solid transparent;
  transition:.2s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--primary),var(--accent));
  box-shadow:0 14px 32px rgba(37,99,235,.23);
}
.btn-light{
  background:#fff;
  color:#1f2937;
  border-color:var(--line);
}
.hero{
  padding:86px 0 56px;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset:-220px -160px auto auto;
  width:520px;
  height:520px;
  background:radial-gradient(circle,rgba(37,99,235,.17),rgba(37,99,235,0) 66%);
  pointer-events:none;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:34px;
  align-items:center;
  position:relative;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:#eef5ff;
  color:var(--primary-dark);
  font-size:.92rem;
  font-weight:800;
}
.badge::before{
  content:"";
  width:8px;height:8px;border-radius:50%;
  background:linear-gradient(135deg,var(--primary),var(--accent));
}
h1,h2,h3,p{margin-top:0}
.title{
  font-size:clamp(2.25rem,5vw,4.25rem);
  line-height:1.05;
  letter-spacing:-.045em;
  margin:18px 0;
  font-weight:900;
}
.lead{
  color:var(--muted);
  font-size:1.08rem;
  line-height:1.85;
  max-width:760px;
}
.actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:26px}
.hero-panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  box-shadow:var(--shadow);
  padding:26px;
}
.panel-top{
  background:linear-gradient(135deg,#0f172a,#1e3a8a);
  color:#fff;
  border-radius:24px;
  padding:26px;
  min-height:220px;
}
.panel-top p{color:rgba(255,255,255,.78);line-height:1.75}
.stats{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:14px;
}
.stat{
  background:#f8fbff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
}
.stat strong{display:block;font-size:1.35rem;margin-bottom:7px}
.stat span{color:var(--muted);line-height:1.55;font-size:.95rem}
.section{padding:76px 0}
.section-head{max-width:780px;margin-bottom:28px}
.eyebrow{
  display:block;
  color:var(--primary);
  font-size:.84rem;
  letter-spacing:.14em;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:10px;
}
.section h2{
  font-size:clamp(1.8rem,3vw,2.6rem);
  letter-spacing:-.03em;
  margin-bottom:12px;
}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:22px}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:25px;
  box-shadow:var(--shadow);
}
.card-icon{
  width:52px;height:52px;
  border-radius:16px;
  display:grid;
  place-items:center;
  font-size:1.35rem;
  background:#eef5ff;
  margin-bottom:16px;
}
.card h3{font-size:1.18rem;margin-bottom:9px}
.card p,.card li{color:var(--muted);line-height:1.75}
.product{
  background:linear-gradient(180deg,#fff,#f8fbff);
}
.product-label{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:#ecfdf3;
  color:#15803d;
  font-weight:850;
  font-size:.84rem;
  margin-bottom:14px;
}
.card ul{padding-left:20px;margin-bottom:0}
.cta{
  background:linear-gradient(135deg,#0f172a,#18315f);
  color:#fff;
  border-radius:30px;
  padding:36px;
  box-shadow:0 24px 60px rgba(15,23,42,.18);
}
.cta p{color:rgba(255,255,255,.78);line-height:1.75;max-width:760px}
.site-footer{
  background:#0b1220;
  color:#e5eaf5;
  margin-top:44px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .9fr;
  gap:26px;
  padding:38px 0;
}
.footer-title{font-weight:850;margin-bottom:12px}
.footer-grid p,.footer-grid a,.footer-grid li{color:#b7c3d8;line-height:1.8}
.footer-grid a:hover{color:#fff}
.footer-list{list-style:none;padding:0;margin:0;display:grid;gap:7px}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding:16px 0;
  color:#a9b6ce;
  font-size:.94rem;
}
.page-hero{padding:64px 0 28px}
.breadcrumbs{
  color:var(--muted);
  font-size:.93rem;
  margin-bottom:14px;
}
.breadcrumbs a{color:var(--primary);font-weight:700}
.content{
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  box-shadow:var(--shadow);
  padding:34px;
}
.content h2{font-size:1.35rem;margin:34px 0 10px}
.content h2:first-child{margin-top:0}
.content p,.content li{color:#475467;line-height:1.85}
.content ul{padding-left:22px}
.notice{
  padding:16px 18px;
  border-radius:16px;
  border:1px solid #cfe1ff;
  background:#f2f7ff;
  color:#244e85;
  line-height:1.7;
}
.contact-card strong{display:block;margin-bottom:8px}
.contact-card span,.contact-card a{color:var(--muted);line-height:1.7}
@media(max-width:900px){
  .hero-grid,.grid-3,.grid-2,.footer-grid{grid-template-columns:1fr}
  .nav{align-items:flex-start;flex-direction:column;padding:14px 0}
  .menu{gap:14px}
  .hero{padding:52px 0 36px}
  .section{padding:56px 0}
}
@media(max-width:520px){
  .title{font-size:2.25rem}
  .stats{grid-template-columns:1fr}
  .content,.cta,.hero-panel{padding:22px}
  .panel-top{padding:22px}
}