:root{
  --bg:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --card:#f8fafc;
  --border:#e5e7eb;
  --accent:#1f6feb;
  --accent2:#f59e0b;
  --radius:14px;
  --shadow:0 8px 24px rgba(0,0,0,.07);
  --max:1060px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui,-apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}
a{color:inherit; text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%; height:auto; display:block}

.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.topbar{
  background:#0b1220;
  color:#fff;
  font-size:14px;
}
.topbar .row{
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
}
.topbar .row a{color:#fff; text-decoration:none}
.topbar .row a:hover{text-decoration:underline}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:999px;
  color:#fff;
  white-space:nowrap;
}
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--border);
}
.header .row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  gap:16px;
}
.logo{
  display:flex;
  gap:10px;
  align-items:center;
  font-weight:800;
  letter-spacing:.2px;
}
.logo .mark{
  width:36px; height:36px;
  border-radius:12px;
  background:linear-gradient(135deg,var(--accent),#22c55e);
  box-shadow: var(--shadow);
}
.nav{
  display:flex;
  gap:14px;
  align-items:center;
}
.nav a{
  font-size:15px;
  padding:8px 10px;
  border-radius:10px;
}
.nav a.active, .nav a:focus{
  background:var(--card);
  outline:none;
}
.actions{
  display:flex;
  gap:10px;
  align-items:center;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  font-weight:700;
  cursor:pointer;
  text-decoration:none;
}
.btn:hover{transform:translateY(-1px)}
.btn.primary{
  background:var(--accent);
  border-color:transparent;
  color:#fff;
}
.btn.secondary{
  background:var(--accent2);
  border-color:transparent;
  color:#111827;
}
.btn.small{padding:9px 12px; font-size:14px}

.menuBtn{
  display:none;
  border:1px solid var(--border);
  border-radius:12px;
  padding:10px 12px;
  background:#fff;
  font-weight:700;
}
.hero{
  padding:44px 0 26px;
  background:
    radial-gradient(1200px 300px at 50% 0%, rgba(31,111,235,.12), transparent 60%),
    radial-gradient(1200px 300px at 70% 10%, rgba(245,158,11,.14), transparent 60%);
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:stretch;
}
.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.hero .card{padding:22px}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:6px 10px;
  border-radius:999px;
  background:var(--card);
  border:1px solid var(--border);
  color:var(--muted);
  font-weight:600;
  font-size:13px;
}
h1{font-size:38px; line-height:1.08; margin:12px 0}
.lead{font-size:18px; color:var(--muted); margin:0 0 16px}
.ctaRow{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}
.pills{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.pill{
  padding:7px 10px;
  border-radius:999px;
  border:1px dashed var(--border);
  color:var(--muted);
  font-size:13px;
  background:#fff;
}
.formCard{padding:18px}
.formCard h2{margin:0 0 8px; font-size:18px}
.formCard p{margin:0 0 14px; color:var(--muted); font-size:14px}
.field{display:flex; flex-direction:column; gap:6px; margin-bottom:10px}
label{font-size:13px; color:var(--muted); font-weight:600}
input, textarea, select{
  border:1px solid var(--border);
  border-radius:12px;
  padding:11px 12px;
  font-size:15px;
  outline:none;
}
input:focus, textarea:focus, select:focus{border-color:rgba(31,111,235,.55); box-shadow:0 0 0 4px rgba(31,111,235,.10)}
textarea{min-height:92px; resize:vertical}
.checkboxRow{display:flex; gap:10px; align-items:flex-start; font-size:13px; color:var(--muted); margin:10px 0}
.checkboxRow input{margin-top:3px}
.section{padding:18px 0}
.section h2{font-size:24px; margin:0 0 12px}
.section p{color:var(--muted); margin:0 0 14px}
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.tile{
  padding:16px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.tile h3{margin:0 0 6px; font-size:17px}
.tile p{margin:0; color:var(--muted); font-size:14px}
.icon{
  width:38px; height:38px;
  border-radius:14px;
  background:var(--card);
  border:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  margin-bottom:10px;
}
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}
.list li{margin:7px 0}
.faq details{
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:12px 14px;
  background:#fff;
  box-shadow:var(--shadow);
  margin-bottom:10px;
}
.faq summary{
  cursor:pointer;
  font-weight:800;
}
.breadcrumbs{
  font-size:13px;
  color:var(--muted);
  padding:14px 0 0;
}
.breadcrumbs a{color:var(--muted)}
.footer{
  margin-top:28px;
  border-top:1px solid var(--border);
  background:#0b1220;
  color:#d1d5db;
}
.footer a{color:#d1d5db}
.footer .row{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:18px;
  padding:26px 0;
}
.footer h3{margin:0 0 10px; color:#fff; font-size:16px}
.footer p{margin:0 0 10px; color:#cbd5e1}
.footer .fine{
  border-top:1px solid rgba(255,255,255,.12);
  padding:12px 0;
  font-size:13px;
  color:#cbd5e1;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.stickyCall{
  position:fixed;
  left:12px;
  right:12px;
  bottom:12px;
  display:none;
  z-index:60;
}
.stickyCall .btn{
  width:100%;
  box-shadow:0 14px 40px rgba(0,0,0,.18);
  border-radius:16px;
  padding:14px 16px;
  font-size:16px;
}

.notice{
  background:#fff7ed;
  border:1px solid #fed7aa;
  border-radius:var(--radius);
  padding:12px 14px;
  color:#7c2d12;
}

@media (max-width: 920px){
  .heroGrid{grid-template-columns:1fr}
  h1{font-size:34px}
  .grid{grid-template-columns:repeat(2,1fr)}
  .split{grid-template-columns:1fr}
  .footer .row{grid-template-columns:1fr}
  .nav{display:none}
  .menuBtn{display:inline-flex}
  .actions .btn.secondary{display:none}
  .stickyCall{display:block}
}

@media (max-width: 560px){
  h1{font-size:30px}
  .grid{grid-template-columns:1fr}
}