:root{
  --bg:#eef4f8;
  --panel:#fff;
  --ink:#091a2f;
  --muted:#516277;
  --line:#cfdcea;
  --brand:#0b3768;
  --brand2:#00a8b5;
  --brand3:#123c69;
  --soft:#eef7fb;
  --ok:#dff7ec;
  --warn:#fff4d6;
  --bad:#ffe4e6;
  --radius:22px;
  --shadow:0 22px 60px rgba(11,23,48,.10);
  --shadow2:0 12px 30px rgba(11,23,48,.08);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Manrope",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at top left, rgba(0,168,181,.10) 0, rgba(0,168,181,0) 22rem),
    radial-gradient(circle at top right, rgba(11,55,104,.10) 0, rgba(11,55,104,0) 24rem),
    linear-gradient(180deg,#f8fbff 0%,#f5f7fb 100%);
  line-height:1.55;
}
[data-reveal]{
  opacity:0;
  transform:translateY(22px);
  transition:
    opacity .7s ease,
    transform .7s ease;
  transition-delay:var(--reveal-delay,0ms);
}
[data-reveal].is-visible{
  opacity:1;
  transform:translateY(0);
}
a{color:var(--brand);text-decoration:none}
a:hover{text-decoration:none;color:#071e3f}
.wrap{width:min(1200px,92vw);margin:auto}

.topbar{
  background:rgba(255,255,255,.84);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:50;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:22px;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  font-size:19px;
  letter-spacing:-.04em;
  color:var(--ink);
}
.logo-mark{
  width:34px;
  height:34px;
  border-radius:12px;
  background:
    linear-gradient(135deg,var(--brand),#0e7490);
  box-shadow:0 10px 26px rgba(14,116,144,.23);
  position:relative;
}
.logo-mark:before,
.logo-mark:after{
  content:"";
  position:absolute;
  inset:auto auto 7px 7px;
  border-radius:999px;
  background:rgba(255,255,255,.94);
}
.logo-mark:before{
  width:8px;
  height:8px;
  box-shadow:10px -8px 0 rgba(255,255,255,.84), 18px 2px 0 rgba(255,255,255,.74);
}
.logo-mark:after{
  width:18px;
  height:2px;
  transform:rotate(-28deg);
  transform-origin:left center;
}
.logo span{color:var(--brand2)}
.navlinks{display:flex;gap:6px;align-items:center}
.navlinks a{
  color:#1e293b;
  font-weight:800;
  font-size:14px;
  padding:10px 12px;
  border-radius:999px;
}
.navlinks a:hover,.navlinks a.active{background:#eaf4fb;color:var(--brand)}

.hero{
  position:relative;
  overflow:hidden;
  padding:0;
  background:#071e3f;
}
.hero:after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:180px;
  background:linear-gradient(180deg,rgba(7,23,48,0) 0%,rgba(7,23,48,.44) 100%);
}
.hero-img{
  position:absolute;
  inset:0;
  background-image:linear-gradient(90deg,rgba(7,23,48,.78) 0%,rgba(7,23,48,.48) 42%,rgba(7,23,48,.18) 100%),var(--hero-img);
  background-size:cover;
  background-position:center;
  filter:saturate(1.08) contrast(1.03);
}
.hero-inner{
  position:relative;
  min-height:620px;
  display:flex;
  align-items:center;
}
.hero-copy{
  max-width:720px;
  color:#fff;
  padding:84px 0 96px;
  position:relative;
  z-index:2;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:#d7f8ff;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:13px;
}
.eyebrow:before{
  content:"";
  width:42px;
  height:4px;
  background:var(--brand2);
  border-radius:99px;
}
.hero h1{
  font-size:clamp(42px,6.1vw,84px);
  line-height:.96;
  margin:18px 0 20px;
  letter-spacing:-.075em;
  max-width:760px;
  color:#fff;
  text-shadow:0 10px 34px rgba(0,0,0,.18);
}
.hero p{
  font-size:20px;
  color:#e8f2fb;
  max-width:700px;
  margin:0;
}
.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:24px;
}
.hero-badges span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  color:#f3fbff;
  font-weight:800;
  font-size:13px;
  backdrop-filter:blur(10px);
}
.quick-links{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.quick-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow2);
  padding:22px;
}
.quick-card h3{
  font-size:22px;
  line-height:1.08;
  margin:0 0 10px;
  letter-spacing:-.04em;
}
.quick-card p{
  color:#475569;
  margin:0 0 16px;
}
.quick-links-row{
  display:grid;
  gap:10px;
}
.quick-links-row a{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  padding:10px 0;
  border-bottom:1px solid var(--line);
  font-weight:900;
  color:var(--ink);
}
.quick-links-row a:last-child{border-bottom:0;padding-bottom:0}
.quick-links-row small{
  color:var(--muted);
  font-weight:800;
}
.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.blog-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow2);
  padding:22px;
  display:grid;
  gap:14px;
}
.blog-card .meta{
  gap:10px;
}
.blog-card h3{
  font-size:25px;
  line-height:1.06;
  margin:0;
  letter-spacing:-.045em;
}
.blog-card p{
  margin:0;
  color:#3e5268;
}
.tag-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.tag{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:6px 10px;
  border-radius:999px;
  background:#eef6fb;
  color:#20496c;
  border:1px solid #d6e7f2;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.article-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:22px;
  align-items:start;
}
.article-main{
  display:grid;
  gap:18px;
}
.article-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow2);
  padding:26px;
}
.article-card h2{
  font-size:30px;
  line-height:1.02;
  margin:0 0 16px;
  letter-spacing:-.05em;
}
.article-card h3{
  font-size:22px;
  line-height:1.08;
  margin:0 0 12px;
  letter-spacing:-.04em;
}
.article-card p{
  color:#32465d;
  margin:0 0 14px;
}
.article-card p:last-child{margin-bottom:0}
.article-card ul,
.article-card ol{
  margin:0;
  padding-left:18px;
  color:#24384d;
}
.article-card li+li{
  margin-top:8px;
}
.article-card strong{
  color:#102741;
}
.article-steps{
  display:grid;
  gap:14px;
}
.step-card{
  border:1px solid var(--line);
  background:#f7fbfe;
  border-radius:18px;
  padding:16px;
}
.step-card b{
  display:block;
  margin-bottom:8px;
  color:#163252;
  letter-spacing:-.02em;
}
.article-aside{
  display:grid;
  gap:18px;
  position:sticky;
  top:92px;
}
.toc-list{
  display:grid;
  gap:8px;
}
.toc-list a,
.toc-list span{
  display:block;
  padding:10px 0;
  border-bottom:1px solid var(--line);
  color:#17314e;
  font-weight:900;
}
.toc-list a:last-child,
.toc-list span:last-child{border-bottom:0;padding-bottom:0}
.article-stat{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid var(--line);
}
.article-stat:last-child{border-bottom:0;padding-bottom:0}
.article-stat span{
  color:var(--muted);
  font-weight:800;
}
.article-stat strong{
  color:var(--ink);
  text-align:right;
}
.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:28px;
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  justify-content:center;
  border-radius:999px;
  padding:13px 19px;
  font-weight:900;
  border:1px solid var(--line);
  background:#fff;
  color:var(--ink);
  box-shadow:var(--shadow2);
}
.btn.primary{
  background:linear-gradient(135deg,var(--brand),#0e7490);
  color:#fff;
  border-color:transparent;
}
.btn:hover{transform:translateY(-1px);box-shadow:0 14px 28px rgba(11,23,48,.12)}

.metric-strip{
  position:relative;
  margin-top:-34px;
  padding-top:0;
  z-index:5;
}
.metric-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.metric{
  background:rgba(255,255,255,.96);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:20px;
  position:relative;
  overflow:hidden;
}
.metric:before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:5px;
  background:linear-gradient(180deg,var(--brand2),var(--brand));
}
.metric strong{
  font-size:34px;
  letter-spacing:-.05em;
  display:block;
}
.metric span{color:var(--muted);font-size:14px}

.section{padding:54px 0}
.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:22px;
}
.section h2{
  font-size:clamp(28px,4vw,44px);
  line-height:1;
  margin:0;
  letter-spacing:-.055em;
}
.section .lead{
  color:var(--muted);
  font-size:17px;
  max-width:700px;
  margin:10px 0 0;
}

.info-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.info-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:var(--shadow2);
  padding:22px;
}
.info-kicker{
  display:inline-flex;
  color:var(--brand);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
  font-size:12px;
  margin-bottom:10px;
}
.info-card h3{
  font-size:22px;
  line-height:1.1;
  margin:0 0 10px;
  letter-spacing:-.04em;
}
.info-card p{margin:0;color:#475569}
.overview-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:18px;
}
.overview-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow2);
  padding:24px;
}
.overview-card.primary{
  background:linear-gradient(135deg,#0b3768,#0e7490);
  color:#fff;
  border-color:transparent;
  box-shadow:var(--shadow);
}
.overview-card.primary .info-kicker,
.overview-card.primary p,
.overview-card.primary .overview-meta span{
  color:#dceaf5;
}
.overview-card h3{
  font-size:24px;
  line-height:1.08;
  margin:0 0 12px;
  letter-spacing:-.04em;
}
.overview-card p{margin:0;color:#475569}
.overview-meta{
  display:grid;
  gap:10px;
}
.overview-stat{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid rgba(219,229,239,.75);
}
.overview-card.primary .overview-stat{
  border-bottom-color:rgba(255,255,255,.14);
}
.overview-stat:last-child{border-bottom:0;padding-bottom:0}
.overview-stat span{
  font-weight:800;
  color:var(--muted);
}
.overview-stat strong{
  font-size:22px;
  letter-spacing:-.04em;
  color:var(--ink);
}
.overview-card.primary .overview-stat span,
.overview-card.primary .overview-stat strong{
  color:#fff;
}
.overview-list{
  display:grid;
  gap:10px;
}
.overview-list a,
.overview-list span{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  padding:11px 0;
  border-bottom:1px solid var(--line);
  color:var(--ink);
  font-weight:900;
}
.overview-list a:last-child,
.overview-list span:last-child{border-bottom:0;padding-bottom:0}
.overview-list small{color:var(--muted);font-weight:700}

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.grid.four{grid-template-columns:repeat(4,1fr)}
.image-card{
  position:relative;
  min-height:265px;
  border-radius:26px;
  overflow:hidden;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  display:flex;
  align-items:end;
}
.image-card:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(7,30,63,.05) 0%,rgba(7,30,63,.88) 100%);
  z-index:1;
}
.image-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .45s ease;
}
.image-card:hover img{transform:scale(1.045)}
.image-card .content{
  position:relative;
  z-index:2;
  color:#fff;
  padding:20px;
}
.image-card h3{
  font-size:24px;
  line-height:1.05;
  margin:0 0 7px;
  letter-spacing:-.04em;
}
.image-card p{margin:0;color:#dceaf5}
.image-card .chip{
  display:inline-flex;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.16);
  padding:6px 10px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
  margin-top:12px;
}

.panel,.company-card,.filters{
  background:rgba(255,255,255,.985);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow2);
}
.filters{
  padding:16px;
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr auto;
  gap:10px;
  margin-bottom:20px;
}
.filters input,.filters select{
  width:100%;
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px 14px;
  background:#fff;
  color:var(--ink);
  font-weight:650;
}
.results-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin:0 0 16px;
  color:var(--muted);
}
.company-card{
  padding:0;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.company-card .thumb{
  height:134px;
  overflow:hidden;
  background:#eaf4fb;
}
.company-card .thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.company-card .body{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
  min-height:260px;
}
.company-card h3{
  font-size:20px;
  line-height:1.18;
  margin:0;
  letter-spacing:-.035em;
}
.company-card p{color:#32465d;margin:0}
.meta{display:flex;gap:8px;flex-wrap:wrap}
.pill{
  font-size:12px;
  border-radius:999px;
  padding:5px 9px;
  background:#f1f5f9;
  color:#334155;
  border:1px solid var(--line);
  font-weight:800;
}
.pill.ok{background:var(--ok);color:#14532d;border-color:#bbf7d0}
.pill.warn{background:var(--warn);color:#92400e;border-color:#fde68a}
.pill.bad{background:var(--bad);color:#991b1b;border-color:#fecdd3}
.card-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:auto;
}
.smallbtn{
  font-size:13px;
  font-weight:900;
  background:#f8fafc;
  border:1px solid var(--line);
  border-radius:12px;
  padding:9px 11px;
  color:var(--ink);
}
.smallbtn.primary{
  background:var(--brand);
  color:#fff;
  border-color:var(--brand);
}

.detail-hero{
  background:var(--hero-img);
  background-size:cover;
  background-position:center;
  position:relative;
  overflow:hidden;
}
.detail-hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(248,251,255,.96) 0%,rgba(248,251,255,.82) 45%,rgba(248,251,255,.25) 100%);
}
.detail-hero:after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(0deg,rgba(255,255,255,.16),rgba(255,255,255,.16)),
    repeating-linear-gradient(90deg,rgba(255,255,255,.08) 0,rgba(255,255,255,.08) 1px,transparent 1px,transparent 90px);
  mix-blend-mode:soft-light;
}
.detail-hero .wrap{
  position:relative;
  padding:86px 0;
  z-index:1;
}
.detail-hero h1{
  font-size:clamp(42px,6vw,82px);
  letter-spacing:-.07em;
  line-height:.98;
  margin:16px 0;
}
.detail{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:22px;
  align-items:start;
}
.panel{padding:24px}
.detail-main{
  display:grid;
  gap:20px;
}
.detail-sidebar{
  display:grid;
  gap:18px;
}
.summary-card{
  background:linear-gradient(180deg,#0b3768 0%,#0e4f85 100%);
  color:#fff;
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}
.summary-card h2{
  color:#fff;
  margin:0 0 14px;
}
.summary-row{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:baseline;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.14);
}
.summary-row:last-child{border-bottom:0;padding-bottom:0}
.summary-row span{
  color:#d5e8f8;
  font-weight:800;
}
.summary-row strong{
  color:#fff;
  text-align:right;
}
.detail-intro{
  display:grid;
  gap:16px;
}
.detail-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.facts-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.fact-card{
  background:#f7fbff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
}
.fact-card b{
  display:block;
  color:#163252;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-bottom:6px;
}
.fact-card span{
  color:var(--ink);
  font-weight:900;
}
.kv{
  display:grid;
  grid-template-columns:190px 1fr;
  gap:10px 14px;
  border-top:1px solid var(--line);
  padding-top:18px;
  margin-top:18px;
}
.kv div:nth-child(odd){font-weight:900;color:#24415e}
.kv div:nth-child(even){color:#24384d}
.contact-list{display:grid;gap:10px}
.contact-item{
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px;
  background:#f6fbff;
}
.contact-item b{display:block;color:#334155}
.contact-item a{
  color:#0b3768;
  word-break:break-word;
}
.public-note{
  padding:14px;
  border-radius:16px;
  background:#edf8ff;
  border:1px solid #bfe9f4;
  color:#103f56;
}
.commercial-box{
  background:linear-gradient(135deg,#0b3768,#0e7490);
  color:#fff;
  border-radius:22px;
  padding:22px;
  box-shadow:var(--shadow);
}
.commercial-box p{color:#dceaf5}

.pagination{
  display:flex;
  gap:8px;
  justify-content:center;
  margin:24px 0;
}
.pagination button{
  padding:9px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:800;
}
.pagination button.active{
  background:var(--brand);
  color:#fff;
}
.empty{
  background:#fff;
  border:1px dashed var(--line);
  border-radius:var(--radius);
  padding:30px;
  text-align:center;
  color:var(--muted);
}
.table-mini{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
}
.table-mini th,.table-mini td{
  padding:13px;
  border-bottom:1px solid var(--line);
  text-align:left;
}
.table-mini th{background:#f8fafc}

.cta{
  background:linear-gradient(135deg,#0b3768,#0e7490);
  color:#fff;
  border-radius:30px;
  padding:36px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:24px;
  align-items:center;
  box-shadow:var(--shadow);
}
.cta h2{color:#fff}
.cta p{color:#dceaf5}

.footer{
  border-top:1px solid var(--line);
  padding:34px 0;
  color:#64748b;
  font-size:14px;
  margin-top:30px;
  background:#fff;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr 1fr;
  gap:20px;
  align-items:start;
}
.footer a{font-weight:800}
.footer-pro{
  background:
    radial-gradient(circle at top right, rgba(0,168,181,.10) 0, rgba(0,168,181,0) 20rem),
    linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
}
.footer-logo{margin-bottom:12px}
.footer-copy{
  color:#64748b;
  margin:0;
  max-width:46ch;
}
.footer-links{
  display:grid;
  gap:8px;
}
.footer-links a,.footer-links span{color:#334155}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:center;
  border-top:1px solid var(--line);
  margin-top:24px;
  padding-top:18px;
  color:#64748b;
  font-weight:800;
}
.footer-stack{
  display:grid;
  gap:8px;
}
.footer-stack strong{
  color:#0f172a;
  font-size:15px;
}
.footer-stack a,
.footer-stack span{
  color:#334155;
}

.map-search{color:#0f766e;font-weight:900}
.form-card label{
  display:block;
  font-weight:900;
  margin:10px 0 6px;
  color:#334155;
}
.form-card input,.form-card textarea,.form-card select{
  width:100%;
  border:1px solid var(--line);
  border-radius:14px;
  padding:13px;
  margin-bottom:12px;
  font:inherit;
}
.form-card textarea{min-height:130px}
.form-card form{
  display:grid;
  gap:0;
}
.form-card .lead{
  color:#4d657f;
}
.support-card{
  display:grid;
  gap:16px;
}
.support-list{
  display:grid;
  gap:10px;
}
.support-list span{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding-bottom:10px;
  border-bottom:1px solid rgba(255,255,255,.14);
  color:#eef8ff;
  font-weight:800;
}
.support-list span:last-child{border-bottom:0;padding-bottom:0}
.support-list small{color:#cae7f8}
.breadcrumb{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:900;
  color:var(--brand);
  margin-bottom:8px;
}
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.hero-mini{
  border-radius:30px;
  overflow:hidden;
  min-height:310px;
  background:var(--hero-img);
  background-size:cover;
  background-position:center;
  box-shadow:var(--shadow);
}

.filters{
  grid-template-columns:minmax(220px,2fr) repeat(4,minmax(140px,1fr)) auto auto auto;
  align-items:center;
}
.check-filter{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:48px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  color:#334155;
  font-weight:900;
  padding:0 12px;
  white-space:nowrap;
}
.check-filter input{width:auto}
.landing-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:22px;
  align-items:start;
}
.landing-aside{position:sticky;top:92px}
.landing-total{
  border-bottom:1px solid var(--line);
  padding-bottom:16px;
  margin-bottom:16px;
}
.landing-total strong{
  display:block;
  font-size:42px;
  line-height:1;
  letter-spacing:-.05em;
}
.landing-total span{color:var(--muted);font-weight:800}
.stat-links{display:grid;gap:10px}
.stat-link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  border:1px solid var(--line);
  background:#f8fbfd;
  border-radius:14px;
  padding:11px 12px;
  color:var(--ink);
}
.stat-link:hover{
  border-color:#9cc7d8;
  background:#f1f9fc;
}
.stat-link strong{font-size:20px;color:var(--brand)}
.stat-link span{font-weight:900;text-align:right}
.faq-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
.faq-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:var(--shadow2);
  padding:16px;
}
.faq-item summary{
  cursor:pointer;
  font-weight:900;
  color:var(--ink);
}
.faq-item p{
  color:#475569;
  margin:10px 0 0;
}

@media(max-width:1180px){
  .filters{grid-template-columns:1fr 1fr 1fr}
}
@media(max-width:980px){
  .metric-grid,.grid.four,.info-grid,.footer-grid,.landing-grid,.faq-grid,.overview-grid,.quick-links,.blog-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .grid,.detail,.cta,.two-col,.facts-grid,.article-layout{grid-template-columns:1fr}
  .landing-aside{position:static}
  .article-aside{position:static}
  .hero-inner{min-height:540px}
  .nav{align-items:flex-start}
  .navlinks{flex-wrap:wrap}
  .kv{grid-template-columns:1fr}
  .image-card{min-height:230px}
}
@media(max-width:700px){
  .filters{grid-template-columns:1fr}
  .results-head{display:block}
  .results-head span{display:block;margin-top:6px}
}
@media(max-width:560px){
  .metric-grid,.grid.four,.info-grid,.footer-grid,.faq-grid,.landing-grid,.overview-grid,.quick-links,.blog-grid{
    grid-template-columns:1fr;
  }
  .hero h1{font-size:44px}
  .nav{display:block}
  .navlinks{margin-top:12px}
  .section{padding:38px 0}
  .hero-inner{min-height:470px}
  .image-card{min-height:210px}
  .detail-hero .wrap{padding:54px 0}
  .footer-bottom,.section-head{display:block}
  .footer-bottom span+span{display:block;margin-top:6px}
}
