
/* SIZWEB Tools Hub Redesign (add-on) */
.hub{display:grid; gap:16px;}
.hubTop{display:grid; gap:14px; padding:18px 0 6px;}
.hubTop__title{display:flex; align-items:flex-end; justify-content:space-between; gap:14px; flex-wrap:wrap;}
.hubTop h1{margin:0; font-size:clamp(28px,4.8vw,54px); letter-spacing:-0.9px; line-height:1.05;}
.hubTop p{margin:6px 0 0; color:var(--muted); max-width:82ch; line-height:1.65; font-weight:650;}
.hubKpis{display:grid; grid-template-columns:1fr; gap:10px; margin-top:12px;}
.kpi{border:1px solid rgba(255,255,255,.10); background:rgba(255,255,255,.03); border-radius:18px; padding:12px; display:flex; align-items:center; justify-content:space-between; gap:10px;}
.kpi b{font-weight:950; display:inline-flex; align-items:center; gap:8px;}
.kpi span{color:rgba(255,255,255,.72); font-weight:700;}
.kpi svg{width:16px; height:16px; fill:none; stroke:#fff; stroke-width:2; opacity:.9}

.hubLayout{display:grid; gap:14px; margin-top:10px;}
.hubSidebar{
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--r);
  background:rgba(0,0,0,.22);
  backdrop-filter:blur(10px);
  padding:14px;
  box-shadow:var(--shadow);
}
.sidebarTitle{margin:0 0 10px; font-size:14px; font-weight:950; letter-spacing:.2px; color:rgba(255,255,255,.86);}
.filterList{display:flex; gap:10px; flex-wrap:wrap;}
.filterChip{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  font-weight:900;
  color:rgba(255,255,255,.86);
  cursor:pointer;
  user-select:none;
  transition:transform .15s ease, background .2s ease, border-color .2s ease;
}
.filterChip:hover{transform:translateY(-1px); background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.18);}
.filterChip.isActive{border-color:rgba(227,6,19,.40); background:rgba(227,6,19,.12);}
.filterChip svg{width:16px; height:16px; fill:none; stroke:#fff; stroke-width:2; opacity:.9}

.hubMain{display:grid; gap:12px;}
.searchBar{display:flex; gap:10px; flex-wrap:wrap; align-items:center;}
.searchBar .search{flex:1 1 240px;}
.searchBar .btn{flex:0 0 auto;}

.toolRows{display:grid; gap:10px;}
.toolRow{
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--r);
  background:
    radial-gradient(900px 240px at 10% 0%, rgba(227,6,19,.10), transparent 60%),
    rgba(255,255,255,.03);
  backdrop-filter:blur(10px);
  padding:14px;
  box-shadow:var(--shadow);
  display:grid;
  gap:10px;
}
.toolRow__top{display:flex; align-items:flex-start; justify-content:space-between; gap:12px;}
.toolRow__left{display:flex; gap:12px; align-items:flex-start; min-width:0;}
.toolRow__icon{
  width:46px; height:46px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.18);
  display:grid; place-items:center;
  flex:0 0 auto;
}
.toolRow__icon svg{width:22px; height:22px; fill:none; stroke:#fff; stroke-width:2; opacity:.92;}
.toolRow h3{margin:0; font-size:16px; font-weight:950; letter-spacing:.2px;}
.toolRow p{margin:6px 0 0; color:rgba(255,255,255,.72); line-height:1.6; font-weight:650;}
.toolRow__meta{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px;}
.tag{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.18);
  font-weight:900;
  font-size:12px;
  color:rgba(255,255,255,.82);
}
.tag svg{width:14px; height:14px; fill:none; stroke:#fff; stroke-width:2; opacity:.85;}
.toolRow__actions{display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:flex-start;}
.toolRow__actions .btn{white-space:nowrap;}

.feature{
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--r);
  background:
    radial-gradient(860px 320px at 12% 0%, rgba(227,6,19,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow:var(--shadow);
  padding:16px;
  display:grid;
  gap:10px;
}
.feature h2{margin:0; font-size:18px; font-weight:950;}
.feature p{margin:0; color:rgba(255,255,255,.74); font-weight:650; line-height:1.65;}

@media (min-width:980px){
  .hubLayout{grid-template-columns:340px 1fr; align-items:start;}
  .hubSidebar{position:sticky; top:78px;}
  .hubKpis{grid-template-columns:1fr 1fr 1fr;}
}
