/* Steady Steps — simple, modern, accessible */
:root{
  --navy:#0B2A4A;
  --orange:#F06A1A;
  --bg:#ffffff;
  --muted:#5A6B7C;
  --card:#F6F8FB;
  --border:#E5E9F0;
  --focus:#2B7FFF;
  --radius:16px;
  --max:1100px;
}
*{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(--navy);
  background:var(--bg);
  line-height:1.5;
}
a{color:inherit}
a:focus, button:focus, input:focus, textarea:focus{
  outline:3px solid var(--focus);
  outline-offset:2px;
}
.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px; width:auto; height:auto; padding:10px 12px; background:#fff; border:1px solid var(--border); border-radius:12px; z-index:1000;
}
header{
  position:sticky; top:0; z-index:999;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--border);
}
.nav{
  max-width:var(--max);
  margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 18px;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:10px; text-decoration:none;
  min-width:210px;
}
.brand svg{width:40px; height:40px; flex:0 0 auto}
.brand .name{font-weight:800; letter-spacing:.2px}
.brand .tag{font-size:.86rem; color:var(--muted); margin-top:2px}
.nav-links{
  display:flex; gap:14px; align-items:center; flex-wrap:wrap;
}
.nav-links a{
  text-decoration:none;
  padding:8px 10px;
  border-radius:12px;
  color:var(--navy);
}
.nav-links a:hover{background:var(--card)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:700;
  text-decoration:none;
  cursor:pointer;
}
.btn-primary{
  background:var(--orange);
  color:#fff;
  box-shadow:0 8px 24px rgba(240,106,26,.22);
}
.btn-primary:hover{filter:brightness(.98)}
.btn-secondary{
  background:#fff;
  border-color:var(--border);
}
.btn-secondary:hover{background:var(--card)}
main{max-width:var(--max); margin:0 auto; padding:32px 18px 64px}
.hero{
  display:grid;
  grid-template-columns: 1.25fr .9fr;
  gap:26px;
  padding:28px;
  border:1px solid var(--border);
  border-radius:var(--radius);
}
.kicker{color:var(--muted); font-weight:700; letter-spacing:.2px}
h1{font-size:clamp(2rem, 3.3vw, 3rem); line-height:1.1; margin:10px 0 10px}
.lead{font-size:1.06rem; color:var(--muted); max-width:62ch}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.hero-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
}
.hero-card h2{font-size:1.05rem; margin:6px 0 8px}
.hero-card p{color:var(--muted); margin:0}
.stats{
  display:grid; grid-template-columns:repeat(3, 1fr);
  gap:10px; margin-top:14px;
}
.stat{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:10px 12px;
}
.stat strong{display:block; font-size:1.1rem}
.stat span{color:var(--muted); font-size:.86rem}
.section{margin-top:34px}
.section h2{font-size:1.6rem; margin:0 0 12px}
.section p{color:var(--muted); margin:0 0 12px}
.grid-3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
}
.card h3{margin:6px 0 8px}
.card p{margin:0; color:var(--muted)}
.icon{
  width:38px; height:38px; border-radius:14px;
  display:grid; place-items:center;
  background:#fff; border:1px solid var(--border);
}
.icon svg{width:22px; height:22px}
.list{
  display:flex; flex-wrap:wrap;
  gap:10px;
}
.pill{
  padding:10px 12px;
  border:1px solid var(--border);
  background:#fff;
  border-radius:999px;
  color:var(--navy);
}
.cta{
  margin-top:34px;
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:linear-gradient(135deg, rgba(240,106,26,.10), rgba(11,42,74,.06));
  padding:22px;
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.cta h2{margin:0}
.cta p{margin:4px 0 0; color:var(--muted)}
.footer{
  border-top:1px solid var(--border);
  padding:22px 18px;
  color:var(--muted);
}
.footer .inner{
  max-width:var(--max);
  margin:0 auto;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.footer a{color:var(--muted)}
.small{font-size:.92rem}
form{
  display:grid;
  gap:12px;
  max-width:680px;
}
label{font-weight:700}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  font:inherit;
}
textarea{min-height:140px; resize:vertical}
.note{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px 14px;
  color:var(--muted);
}
hr{border:none; border-top:1px solid var(--border); margin:26px 0}
@media (max-width: 860px){
  .hero{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr}
  .brand{min-width:auto}
}
