:root{
  --bg:#ffffff;
  --text:#0b1220;
  --muted:#5b6473;
  --soft:#f4f7fb;
  --border:#e6eaf2;
  --primary:#2563eb;
  --primary2:#1d4ed8;
  --shadow: 0 12px 30px rgba(17, 24, 39, 0.10);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}

a{color:var(--primary); text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:1100px; margin:0 auto; padding:0 18px}

.topbar{
  position:sticky; top:0; z-index:20;
  background:rgba(255,255,255,0.88);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--border);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:10px; font-weight:700; color:var(--text)}
.brand__logo{width:34px; height:34px}
.brand__name{letter-spacing:0.2px}
.nav{display:flex; gap:18px; align-items:center}
.nav a{color:var(--text); font-weight:600; font-size:14px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  background:var(--primary);
  color:white !important;
  font-weight:700;
  border:1px solid rgba(0,0,0,0);
  box-shadow: 0 10px 18px rgba(37, 99, 235, 0.20);
}
.btn:hover{background:var(--primary2); text-decoration:none}
.btn--ghost{
  background:transparent;
  color:var(--primary) !important;
  border:1px solid var(--border);
  box-shadow:none;
}
.btn--ghost:hover{border-color:#cfd6e6; background:#fbfcfe}
.btn--small{padding:10px 14px; border-radius:12px}

.hero{
  padding:70px 0 40px;
  background: radial-gradient(1200px 500px at 20% -20%, rgba(37,99,235,.18), transparent 60%),
              radial-gradient(900px 450px at 90% 0%, rgba(59,130,246,.14), transparent 60%),
              linear-gradient(#ffffff, #ffffff);
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap:24px;
  align-items:stretch;
}
.badge{
  display:inline-block;
  font-weight:700;
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  color:#0b1220;
  background: rgba(37,99,235,.10);
  border:1px solid rgba(37,99,235,.18);
}
h1{font-size:44px; line-height:1.1; margin:14px 0 12px}
.lead{font-size:18px; color:var(--muted); margin:0 0 18px}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 18px}

.hero__stats{display:flex; gap:14px; flex-wrap:wrap; margin-top:18px}
.stat{
  display:flex; gap:10px; align-items:center;
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:14px;
  background:rgba(255,255,255,.85);
}
.stat__num{font-size:18px}
.stat__txt strong{display:block; font-size:13px}
.stat__txt span{display:block; font-size:12px; color:var(--muted)}

.card{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: white;
  padding:18px;
  box-shadow: var(--shadow);
}
.card__title{font-weight:800; margin-bottom:10px}
.card__note{
  margin-top:12px;
  padding:12px;
  background:var(--soft);
  border:1px solid var(--border);
  border-radius:14px;
  color:var(--muted);
}

.checklist{list-style:none; padding:0; margin:0; display:grid; gap:8px}
.checklist li{
  padding-left:26px;
  position:relative;
}
.checklist li:before{
  content:"✓";
  position:absolute; left:0; top:0;
  width:18px; height:18px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:6px;
  background:rgba(37,99,235,.12);
  border:1px solid rgba(37,99,235,.18);
  color:var(--primary);
  font-weight:900;
}

.section{padding:56px 0}
.section--soft{background:var(--soft); border-top:1px solid var(--border); border-bottom:1px solid var(--border)}
.section__head{margin-bottom:18px}
.section__head h2{margin:0 0 6px; font-size:28px}
.section__head p{margin:0; color:var(--muted)}

.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px}
.grid2{display:grid; grid-template-columns: repeat(2, 1fr); gap:16px}
.tile, .panel{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background:white;
  padding:18px;
  box-shadow: 0 10px 20px rgba(17,24,39,.06);
}
.tile h3, .panel h3{margin:0 0 8px; font-size:18px}
.tile p, .panel p{margin:0; color:var(--muted)}
.bullets{margin:12px 0 0; padding-left:18px; color:var(--muted)}
.bullets li{margin:6px 0}

.about{display:grid; grid-template-columns: 1.05fr 0.95fr; gap:16px; align-items:start}
.about__text p{margin-top:0}
.muted{color:var(--muted)}
.small{font-size:12px}

.steps{margin:0; padding-left:18px}
.steps li{margin:8px 0; color:var(--muted)}

.contact{display:grid; grid-template-columns: 0.9fr 1.1fr; gap:16px}
.contact__box{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background:white;
  padding:18px;
  box-shadow: 0 10px 20px rgba(17,24,39,.06);
  margin-bottom:14px;
}
.form{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background:white;
  padding:18px;
  box-shadow: 0 10px 20px rgba(17,24,39,.06);
}
.form label{display:block; font-weight:700; font-size:13px; margin-bottom:10px}
.form input, .form textarea{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  font: inherit;
}
.form input:focus, .form textarea:focus{
  outline:none;
  border-color: rgba(37,99,235,.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}
.form__row{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
.form__actions{display:flex; align-items:center; gap:12px; margin-top:10px}

.footer{
  padding:34px 0;
  border-top:1px solid var(--border);
  background:white;
}
.footer__inner{display:flex; justify-content:space-between; gap:18px; flex-wrap:wrap}
.footer__right{display:flex; gap:14px; flex-wrap:wrap; align-items:center}
.brand--footer .brand__logo{width:30px; height:30px}

@media (max-width: 920px){
  .hero__grid, .grid3, .grid2, .about, .contact{grid-template-columns: 1fr}
  h1{font-size:36px}
  .nav{gap:12px}
  .form__row{grid-template-columns:1fr}
}
