.iuSpecsPage{
    padding:34px 0 56px;
    background:#f6f8fb;
}
.iuSpecsHero{
    background:#fff;
    border:1px solid #e8edf5;
    border-radius:24px;
    padding:28px;
    box-shadow:0 12px 35px rgba(44,47,63,.10);
    text-align:center;
}
.iuSpecsHero h1{
    margin:0 0 8px;
    color:#202638;
    font-size:32px;
    line-height:1.2;
    font-weight:700;
}
.iuSpecsHero p{
    margin:0 auto;
    max-width:650px;
    color:#7b8798;
    font-size:15px;
    line-height:1.6;
}
.iuSpecsSeoIntro{margin:18px auto 0;max-width:820px;color:#657187;font-size:14px;line-height:1.7}
.iuSpecsStats{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin-top:18px}
.iuSpecsStat{background:#f7f9fd;border:1px solid #e5ecf6;border-radius:14px;padding:9px 13px;color:#32405f;font-weight:700;font-size:13px}
.iuSpecsSeoBlock{margin-top:28px;background:#fff;border:1px solid #e8edf5;border-radius:22px;padding:24px;box-shadow:0 8px 24px rgba(44,47,63,.06);color:#465064;line-height:1.7}
.iuSpecsSeoBlock h2{margin:0 0 10px;color:#202638;font-size:22px}
.iuSpecsSeoBlock p{margin:0 0 12px}
.iuSpecsSeoLinks{display:flex;flex-wrap:wrap;gap:9px;margin-top:12px}
.iuSpecsSeoLinks a{background:#f3f7ff;border:1px solid #dfe9fa;border-radius:999px;padding:7px 11px;text-decoration:none;color:#2f80ed;font-weight:700;font-size:13px}
.iuSpecsSearch{
    max-width:620px;
    margin:22px auto 40px;
    position:relative;
}
.iuSpecsSearch input{
    width:100%;
    height:48px;
    border:1px solid #dfe7f3;
    background:#f7f9fd;
    border-radius:16px;
    padding:0 18px;
    outline:none;
    color:#202638;
    font-size:15px;
}
.iuSpecsTabs{
    display:flex;
    gap:10px;
    justify-content:center;
    flex-wrap:wrap;
    margin:18px 0 0;
}
.iuSpecsTab{
    border:1px solid #dfe7f3;
    background:#fff;
    color:#465064;
    border-radius:12px;
    padding:8px 13px;
    font-weight:600;
    font-size:13px;
    cursor:pointer;
}
.iuSpecsTab.active{
    background:#2f80ed;
    color:#fff;
    border-color:#2f80ed;
}
.iuSpecsSection{
    margin-top:24px;
}
.iuSpecsTitle{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin:0 0 12px;
}
.iuSpecsTitle h2{
    margin:0;
    color:#202638;
    font-size:22px;
    font-weight:700;
}
.iuSpecsGrid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0,1fr));
    gap:14px;
}
.iuSpecCard{
    display:flex;
    flex-direction:column;
    min-height:245px;
    background:#fff;
    border:1px solid #e8edf5;
    border-radius:18px;
    overflow:hidden;
    text-decoration:none;
    box-shadow:0 8px 24px rgba(44,47,63,.06);
    transition:.16s;
}
.iuSpecCard:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(44,47,63,.12);
}
.iuSpecImg{
    height:130px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(180deg,#f9fbff,#f1f6ff);
    border-bottom:1px solid #edf2f8;
}
.iuSpecImg img{
    max-width:118px;
    max-height:112px;
    object-fit:contain;
}
.iuSpecPlaceholder{
    width:72px;
    height:72px;
    border-radius:22px;
    background:#eaf3ff;
    color:#2f80ed;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:22px;
}
.iuSpecBody{
    padding:13px 14px 15px;
    flex:1;
}
.iuSpecName{
    color:#202638;
    font-weight:700;
    font-size:15px;
    line-height:1.35;
    min-height:40px;
}
.iuSpecMeta{
    margin-top:8px;
    color:#7b8798;
    font-size:12px;
    line-height:1.5;
}
.iuSpecLink{
    margin-top:10px;
    color:#2f80ed;
    font-size:13px;
    font-weight:700;
}
.iuSpecsEmpty{
    display:none;
    margin-top:18px;
    background:#fff;
    border:1px solid #e8edf5;
    border-radius:18px;
    padding:22px;
    text-align:center;
    color:#7b8798;
}
@media(max-width:1000px){
    .iuSpecsGrid{grid-template-columns:repeat(3, minmax(0,1fr));}
}
@media(max-width:720px){
    .iuSpecsHero{padding:22px 16px;border-radius:20px;}
    .iuSpecsHero h1{font-size:25px;}
    .iuSpecsGrid{grid-template-columns:repeat(2, minmax(0,1fr));gap:10px;}
    .iuSpecCard{min-height:220px;border-radius:15px;}
    .iuSpecImg{height:112px;}
    .iuSpecImg img{max-width:100px;max-height:96px;}
}
@media(max-width:430px){
    .iuSpecsGrid{grid-template-columns:1fr;}
}