:root{
  --bg:#fcf9f5;
  --paper:#ffffff;
  --text:#1e2b37;
  --muted:#5e6f7a;
  --brand:#2c3e4f;
  --accent:#e7b75f;
  --accent-dark:#d9a34a;
  --line:#e7ddd1;
  --soft:#f8f0e3;
  --info:#eef3f5;
  --danger:#fff4e8;
  --radius:20px;
  --shadow:0 10px 26px rgba(0,0,0,.05);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Segoe UI',Roboto,system-ui,-apple-system,sans-serif;
  line-height:1.7;
  color:var(--text);
  background:var(--bg);
}
a{color:inherit}
img{max-width:100%;display:block}
.container{
  width:min(1120px, calc(100% - 2rem));
  margin-inline:auto;
}
.topbar{
  background:var(--brand);
  color:#f6efe5;
  font-size:.95rem;
}
.topbar .container{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  padding:.65rem 0;
  flex-wrap:wrap;
}
header{
  background:var(--paper);
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:50;
  box-shadow:0 4px 14px rgba(0,0,0,.04);
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.2rem;
  padding:1rem 0;
}
.logo{
  text-decoration:none;
  color:var(--brand);
}
.logo strong{
  font-size:1.35rem;
  display:block;
  line-height:1.1;
}
.logo span{
  color:var(--muted);
  font-size:.95rem;
}
nav ul{
  list-style:none;
  display:flex;
  gap:1.2rem;
  flex-wrap:wrap;
  justify-content:flex-end;
}
nav a{
  text-decoration:none;
  color:var(--brand);
  font-weight:600;
  padding:.35rem 0;
  border-bottom:2px solid transparent;
}
nav a:hover, nav a.active{
  border-bottom-color:var(--accent);
}
.hero{
  padding:4rem 0 3rem;
}
.badge{
  display:inline-block;
  background:var(--brand);
  color:#f6efe5;
  border-radius:999px;
  padding:.45rem .9rem;
  font-size:.92rem;
  margin-bottom:1rem;
}
.hero h1{
  font-size:clamp(2.1rem, 4vw, 3.3rem);
  line-height:1.15;
  color:#1e3c4a;
  margin-bottom:1rem;
}
.hero p.lead{
  font-size:1.16rem;
  color:#324552;
  max-width:850px;
}
.hero-grid,.grid-2,.grid-3{
  display:grid;
  gap:1.4rem;
}
.hero-grid{grid-template-columns:1.3fr .9fr; margin-top:2rem;}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr));}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr));}
.card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:1.5rem;
}
.card h3{margin-bottom:.7rem;color:#355261}
.card p:last-child, .card ul:last-child{margin-bottom:0}
section{
  padding:2.2rem 0;
}
section + section{
  border-top:1px solid var(--line);
}
h2{
  font-size:clamp(1.8rem,3vw,2.4rem);
  color:#2c4e5e;
  margin-bottom:1rem;
  border-left:6px solid var(--accent);
  padding-left:.9rem;
}
h3{
  font-size:1.35rem;
  color:#3f5e6b;
  margin:1.2rem 0 .7rem;
}
p, li{
  font-size:1.08rem;
  margin-bottom:1rem;
}
ul{padding-left:1.2rem}
.highlight{
  background:var(--soft);
  padding:.15rem .4rem;
  border-radius:6px;
  font-weight:600;
}
.notice{
  background:var(--danger);
  border:1px solid #f0d2ab;
  border-radius:18px;
  padding:1rem 1.1rem;
  margin:1.4rem 0;
}
.notice strong{color:#8b5a13}
.info-box{
  background:var(--info);
  border-radius:18px;
  padding:1rem 1.1rem;
  border:1px solid #d7e3ea;
}
.btns{
  display:flex;
  gap:.9rem;
  flex-wrap:wrap;
  margin-top:1.3rem;
}
.btn{
  display:inline-block;
  text-decoration:none;
  font-weight:700;
  border-radius:999px;
  padding:.82rem 1.35rem;
  transition:.18s ease;
}
.btn-primary{
  background:var(--accent);
  color:#1d2830;
}
.btn-primary:hover{background:var(--accent-dark);transform:translateY(-1px)}
.btn-secondary{
  border:1px solid var(--line);
  background:var(--paper);
}
.kpis{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1rem;
  margin-top:1.2rem;
}
.kpi{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:16px;
  padding:1rem;
  text-align:center;
}
.kpi strong{
  display:block;
  font-size:1.7rem;
  color:var(--brand);
}
.table-wrap{
  overflow:auto;
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:18px;
}
table{
  width:100%;
  border-collapse:collapse;
  min-width:700px;
}
th,td{
  padding:1rem;
  text-align:left;
  border-bottom:1px solid var(--line);
}
th{
  background:#f7f1e7;
  color:#2c4e5e;
}
td.muted{color:var(--muted)}
.checklist li{
  margin-bottom:.6rem;
}
footer{
  background:#1e2b37;
  color:#d7e0e5;
  margin-top:2rem;
}
footer .container{
  padding:2rem 0;
}
footer a{
  color:#f1c979;
  text-decoration:none;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .9fr .9fr;
  gap:1.2rem;
}
.small{font-size:.96rem;color:var(--muted)}
.current{font-weight:700}
@media (max-width:900px){
  .hero-grid,.grid-2,.grid-3,.footer-grid,.kpis{grid-template-columns:1fr 1fr}
}
@media (max-width:700px){
  .nav-wrap{align-items:flex-start;flex-direction:column}
  nav ul{justify-content:flex-start}
  .hero-grid,.grid-2,.grid-3,.footer-grid,.kpis{grid-template-columns:1fr}
  .topbar .container{flex-direction:column}
}