:root{
  --bg:#f7f8fa;
  --panel:#ffffff;
  --line:#d9dee6;
  --text:#0f172a;
  --muted:#475569;
  --accent:#1e40af;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

section{scroll-margin-top:88px}
a{color:inherit;text-decoration:none}

.topbar{
  position: sticky;
  top: 0;
  z-index: 10;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 18px 32px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.brand{display:flex;align-items:center;gap:12px}
.logo{
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 700;
}
.name{font-weight:600}

.nav a{
  margin-left: 24px;
  font-size: 14px;
  color: var(--muted);
}
.nav a:hover{color: var(--text)}

main{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.hero{
  padding: 72px 0 48px;
}

.hero-inner{
  max-width: 720px;
}

h1{
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.lead{
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-actions{
  display:flex;
  gap: 14px;
}

.btn{
  padding: 12px 18px;
  font-size: 14px;
  border: 1px solid var(--line);
}
.btn.primary{
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}
.btn.secondary{
  background: #ffffff;
}

.section{
  padding: 56px 0;
}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap: 20px;
  margin-bottom: 20px;
}
.section-head h2{font-size: 24px}
.section-head p{color: var(--muted)}

.table{
  border: 1px solid var(--line);
  background: var(--panel);
}

.row{
  display:grid;
  grid-template-columns: 260px 1fr;
  gap: 20px;
  padding: 14px 18px;
}
.row + .row{border-top: 1px solid var(--line)}
.header{
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.title{font-weight:600}

.alt{
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.approach-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}

.box{
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 20px;
}

.step{
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.box-title{
  font-weight: 600;
  margin-bottom: 6px;
}

.box-text{
  color: var(--muted);
  font-size: 14px;
}

.contact{
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 18px;
  max-width: 720px;
}

.contact-row{
  display:grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 10px 0;
}
.contact-row + .contact-row{border-top: 1px solid var(--line)}

.label{
  color: var(--muted);
  font-size: 13px;
}
.value{font-weight:600}
.muted{color: var(--muted)}

.footer{
  padding: 24px 32px 36px;
  font-size: 12px;
  color: var(--muted);
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

@media (max-width: 900px){
  .row{grid-template-columns: 1fr}
  .approach-grid{grid-template-columns: 1fr}
  .section-head{flex-direction:column;align-items:flex-start}
}
