:root{
  --bg:#FFFFFF;
  --text:#1F2933;
  --accent:#0EA5E9;
  --btn1:#0EA5E9;
  --btn2:#7DD3FC;

  --muted:#6B7280;
  --border:#E5E7EB;
  --card:#F8FAFC;
  --shadow: 0 10px 30px rgba(31,41,51,.08);
  --radius:16px;
  --radius-sm:12px;
  --max:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.5;
}
img{max-width:100%; height:auto; display:block}
a{color:inherit; text-decoration:none}
a:hover{color:var(--accent)}
p{margin:0 0 10px}
ul{margin:0; padding-left:18px}
li{margin:6px 0}
small{color:var(--muted)}

.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.section{padding:42px 0; border-top:1px solid var(--border)}
.section:first-of-type{border-top:none}

.topbar{
  position:sticky; top:0; z-index:20;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(160%) blur(10px);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:14px;
}
.brand{
  display:flex; align-items:center; gap:10px; font-weight:700;
  letter-spacing:.2px;
}
.badge{
  font-size:12px; padding:4px 10px; border:1px solid var(--border);
  border-radius:999px; background:#fff;
}
.navlinks{display:flex; align-items:center; gap:14px; flex-wrap:wrap}
.navlinks a{font-size:14px; color:var(--text); padding:8px 10px; border-radius:10px}
.navlinks a.active, .navlinks a:hover{background:rgba(14,165,233,.10); color:var(--text)}
.navcta{display:flex; gap:10px; align-items:center}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:10px 14px; border-radius:12px;
  border:1px solid var(--border);
  background:#fff; color:var(--text);
  font-weight:600; font-size:14px;
}
.btn:hover{border-color:rgba(14,165,233,.55)}
.btn-primary{
  border:none;
  background:linear-gradient(90deg, var(--btn1), var(--btn2));
  color:#083344;
  box-shadow:0 12px 24px rgba(14,165,233,.18);
}
.btn-primary:hover{filter:saturate(115%)}

.grid{display:grid; gap:14px}
.grid-2{grid-template-columns:repeat(2, minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3, minmax(0,1fr))}
@media (max-width:920px){
  .grid-2,.grid-3{grid-template-columns:1fr}
  .navlinks{display:none}
  .nav{gap:10px}
}

.hero{
  padding:44px 0 20px;
}
.heroWrap{
  display:grid; gap:16px;
  grid-template-columns:1.2fr .8fr;
  align-items:stretch;
}
@media (max-width:920px){.heroWrap{grid-template-columns:1fr}}

.heroCard{
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  background:linear-gradient(180deg, #fff, #F4FBFF);
  box-shadow:var(--shadow);
}
.heroMedia{
  min-height:220px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.00), rgba(255,255,255,.70)),
    url("/assets/img/fav.jpg");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  border-bottom:1px solid var(--border);
}

.heroBody{padding:18px}
.kicker{
  display:flex; gap:10px; align-items:center; flex-wrap:wrap;
  margin-bottom:10px;
}
.kicker span{
  font-size:12px; padding:4px 10px; border-radius:999px;
  border:1px solid var(--border); background:#fff;
}
h1{font-size:32px; line-height:1.15; margin:0 0 10px}
h2{font-size:22px; margin:0 0 10px}
h3{font-size:16px; margin:0 0 8px}
.lead{color:var(--muted); font-size:15px; margin-bottom:14px}

.heroSide{
  display:flex; flex-direction:column; gap:14px;
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:14px;
}
.card.white{background:#fff}
.pills{display:flex; flex-wrap:wrap; gap:8px}
.pill{
  font-size:12px;
  padding:6px 10px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:999px;
}
.metaRow{
  display:flex; gap:10px; flex-wrap:wrap; align-items:center;
  color:var(--muted); font-size:13px;
}
.metaRow b{color:var(--text)}

.listCompact{display:grid; gap:8px}
.listCompact li{margin:0}

.feature{
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  background:#fff;
  padding:12px;
}
.feature p{margin:6px 0 0}
.feature .tag{
  font-size:12px; color:#075985;
  background:rgba(14,165,233,.12);
  border:1px solid rgba(14,165,233,.25);
  padding:4px 8px; border-radius:999px;
  display:inline-flex;
}

.hr{height:1px; background:var(--border); margin:14px 0}

.accordion{
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  background:#fff;
}
.accItem{border-top:1px solid var(--border)}
.accItem:first-child{border-top:none}
.accBtn{
  width:100%;
  padding:14px 14px;
  background:#fff;
  border:none;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
  cursor:pointer;
  text-align:left;
}
.accBtn span{display:block}
.accTitle{font-weight:700}
.accHint{font-size:12px; color:var(--muted); margin-top:4px}
.accIcon{
  flex:0 0 auto;
  width:28px; height:28px;
  border-radius:10px;
  border:1px solid var(--border);
  display:flex !important; align-items:center; justify-content:center;
  color:var(--accent);
}
.accPanel{
  padding:0 14px 14px;
  display:none;
  color:var(--text);
}
.accItem.is-open .accPanel{display:block}
.accItem.is-open .accIcon{background:rgba(14,165,233,.10); border-color:rgba(14,165,233,.28)}

.form{
  display:grid; gap:12px;
}
.field{
  display:grid; gap:6px;
}
label{font-size:13px; color:var(--muted)}
input, textarea, select{
  padding:11px 12px;
  border:1px solid var(--border);
  border-radius:12px;
  font:inherit;
  background:#fff;
  color:var(--text);
}
textarea{min-height:120px; resize:vertical}
input:focus, textarea:focus, select:focus{
  outline:2px solid rgba(14,165,233,.25);
  border-color:rgba(14,165,233,.45);
}

.footer{
  padding:26px 0;
  border-top:1px solid var(--border);
  color:var(--muted);
  font-size:13px;
}
.footerGrid{
  display:grid; gap:14px;
  grid-template-columns:1.2fr .8fr;
}
@media (max-width:920px){.footerGrid{grid-template-columns:1fr}}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--accent)}
.footerLinks{display:flex; flex-wrap:wrap; gap:10px}
.note{font-size:12px; color:var(--muted)}
