/* ============ smm-tattoo — базовый layout (чистый, свой) ============ */
:root{
  --brand:#0A5DD8; --brand-d:#0847a8; --ink:#151823; --ink-dim:#5b6472;
  --line:#e7e9ee; --bg:#ffffff; --bg-soft:#f6f7f9; --radius:14px;
  --container:1160px; --gutter:16px;
}
*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{margin:0;font-family:Inter,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--ink);background:var(--bg);line-height:1.6;font-size:17px}
img{max-width:100%;height:auto;display:block}
a{color:var(--brand);text-decoration:none}
a:hover{text-decoration:underline}
.container{width:100%;max-width:var(--container);margin-inline:auto;padding-inline:var(--gutter)}

/* header */
.site-header{position:sticky;top:0;z-index:20;background:rgba(255,255,255,.92);
  backdrop-filter:saturate(1.4) blur(8px);border-bottom:1px solid var(--line)}
.header-inner{display:flex;align-items:center;gap:28px;height:64px}
.logo{font-weight:800;font-size:22px;letter-spacing:-.5px;color:var(--ink)}
.logo span{color:var(--brand);margin-left:2px}
.main-nav{display:flex;gap:20px;flex-wrap:wrap}
.main-nav a{color:var(--ink-dim);font-weight:500;font-size:15px}
.main-nav a:hover{color:var(--brand);text-decoration:none}

/* hero */
.hero{background:linear-gradient(160deg,#0a5dd8 0%,#0847a8 100%);color:#fff;padding:64px 0}
.hero h1{margin:0 0 12px;font-size:40px;line-height:1.12;font-weight:800;letter-spacing:-1px}
.hero-sub{margin:0;font-size:19px;opacity:.9;max-width:680px}

/* cards feed */
.feed{padding:44px 0 64px}
.page-head h1{font-size:32px;margin:0 0 24px;letter-spacing:-.5px}
.cards-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.card{background:var(--bg);border:1px solid var(--line);border-radius:var(--radius);
  overflow:hidden;display:flex;flex-direction:column;transition:.18s box-shadow,.18s transform}
.card:hover{box-shadow:0 12px 28px rgba(10,50,110,.10);transform:translateY(-2px)}
.card-img{aspect-ratio:16/9;overflow:hidden;background:var(--bg-soft)}
.card-img img{width:100%;height:100%;object-fit:cover}
.card-body{padding:16px 18px 18px;display:flex;flex-direction:column;gap:8px}
.card-title{font-weight:700;font-size:18px;line-height:1.3;color:var(--ink)}
.card-title:hover{color:var(--brand);text-decoration:none}
.card-excerpt{margin:0;color:var(--ink-dim);font-size:14px;line-height:1.5;
  display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.card-meta{color:var(--ink-dim);font-size:13px;margin-top:auto}

/* pager */
.pager{display:flex;gap:6px;flex-wrap:wrap;justify-content:center;margin-top:40px}
.pg{min-width:40px;height:40px;display:inline-flex;align-items:center;justify-content:center;
  padding:0 12px;border:1px solid var(--line);border-radius:10px;color:var(--ink);font-weight:600}
.pg:hover{border-color:var(--brand);color:var(--brand);text-decoration:none}
.pg.active{background:var(--brand);color:#fff;border-color:var(--brand)}

/* article */
.article{max-width:820px;padding:32px 0 64px}
.breadcrumbs{font-size:14px;color:var(--ink-dim);margin-bottom:18px}
.breadcrumbs a{color:var(--ink-dim)}
.article-title{font-size:36px;line-height:1.15;letter-spacing:-.6px;margin:0 0 12px;font-weight:800}
.article-meta{color:var(--ink-dim);font-size:14px;margin-bottom:28px;padding-bottom:20px;border-bottom:1px solid var(--line)}
.article-body{font-size:18px}
.article-body h2{font-size:27px;margin:38px 0 14px;letter-spacing:-.4px;line-height:1.25}
.article-body h3{font-size:22px;margin:30px 0 12px}
.article-body p{margin:0 0 18px}
.article-body ul,.article-body ol{margin:0 0 20px;padding-left:24px}
.article-body li{margin:6px 0}
.article-body img{border-radius:12px;margin:22px auto}
.article-body a{text-decoration:underline}
.article-body table{width:100%;border-collapse:collapse;margin:22px 0;font-size:16px}
.article-body th,.article-body td{border:1px solid var(--line);padding:10px 12px;text-align:left}
.article-body figure{margin:22px 0}
.article-body iframe{max-width:100%;border-radius:12px;margin:22px 0}

/* static page */
.static-page{padding:40px 0 64px;max-width:900px}
.static-page h1{font-size:34px;letter-spacing:-.6px;margin:0 0 22px;line-height:1.15}
.static-body{font-size:18px}
.static-body img{border-radius:12px;margin:20px auto}

/* footer */
.site-footer{border-top:1px solid var(--line);background:var(--bg-soft);padding:32px 0;margin-top:40px}
.site-footer p{margin:4px 0;color:var(--ink-dim);font-size:14px}
.foot-links a{color:var(--ink-dim)}

/* responsive */
@media (max-width:900px){.cards-grid{grid-template-columns:repeat(2,1fr)}
  .hero{padding:48px 0}.hero h1{font-size:32px}}
@media (max-width:620px){.cards-grid{grid-template-columns:1fr}
  .header-inner{height:auto;padding:12px 0;flex-wrap:wrap;gap:12px}
  .article-title{font-size:28px}.hero h1{font-size:27px}.hero-sub{font-size:16px}
  body{font-size:16px}.article-body,.static-body{font-size:17px}}

/* ===== ниже — извлечённые правила блоков статей из старой темы v1 ===== */
.block-incut__text b {font-weight: 500;}

.sts-program-underfull .l-island-a { 
    
}

.content.sitemap .content .col .l-island-a{
    
}

.item_content_img {
	position: relative;
    padding-bottom: 49%;
    height: 0;
    overflow: hidden;
}

.item_content_img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    vertical-align: middle;
}

.block-incut__content {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: auto;
}

.block-incut__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.block-incut--text-big .block-incut__text {font-size: 29px;font-weight: 500;line-height: 37px; }

.full-preview-img .item_content_img { }

.full-preview-img .item_content_img img { }

.b-entry .blockquote-art {margin-top: 20px;margin-bottom: 20px;width: 640px;margin-left: auto;margin-right: auto;position: relative;--line-width: 4px;display: grid;grid-template-columns: var(--line-width) auto;grid-column-gap: 12px;-moz-column-gap: 12px;column-gap: 12px;grid-row-gap: 8px;row-gap: 8px; }

.b-entry .blockquote-art__line {width: 4px;border-radius: 2px;background: #E65C77;margin: 4px 0; }

.b-entry .blockquote-art__text {overflow: hidden;}

.b-entry .blockquote-art__text.blockquote_big {font-size: 22px;line-height: 30px; }

.b-entry .blockquote-art__text p {margin: 0;}

.content-video {
    background-color: #fff5f7;
    padding: 30px;
}

.content-video video {
    max-width: 55%!important;
}

.content-image, .content-video {
	text-align: center;
}

.content-image img {
	width: 100%;
    height: auto;
	vertical-align: bottom;
}

.b-entry__content .l-island-a.litres {font-weight: 500;text-align: center; }

.b-entry__content .l-island-a {

}

.l-island-a.color {margin-top:20px;border-radius: 10px;padding-top: 25px;padding-left: 30px;padding-right: 30px;padding-bottom: 25px; }

.l-island-a.color h2, .l-island-a.color h3 {margin-top: 0 !important;}

.l-island-a.color ul {margin-bottom: 0;}

.l-island-a.color p:first-child {margin-top: 0;}

.l-island-a > .color ul + h3 {margin-top: 12px !important;}

.l-island-a > .tb-color {overflow: auto;margin-top: 20px;box-shadow: 0 0 0 1px #ddd;border-radius: 10px;}

.l-island-a > .tb-color table { width: 100%;border-collapse: collapse;}

.l-island-a > .tb-color tr {background-color: #f8f9fa;border-bottom: 1px solid rgb(221, 221, 221);}

.l-island-a > .tb-color th {font-weight: 500;padding: 8px;border-right: 1px solid #dddddd;text-align: left;}

.l-island-a > .tb-color th:last-child {border: 0;}

.l-island-a > .tb-color tbody { }

.l-island-a > .tb-color tbody tr {border-bottom: 1px dashed #ccc;}

.l-island-a > .tb-color tbody td {border-right: 1px dashed #ccc;padding: 8px;}

.l-island-a > .tb-color tbody tr:last-child  {border: 0;}

.l-island-a > .color {border-radius: 10px;padding-top: 25px;padding-left: 30px;padding-right: 30px;padding-bottom: 25px;}

.l-island-a > .color ul {margin-bottom: 0;}

.l-island-a > p.color {margin: 0}

.l-island-a.color p:last-of-type  { margin-bottom: 0; }

.l-island-a > ul.color {margin: 0}

.l-island-a > ul.color li {margin-left: 20px;}

.l-island-a > .color h3 {margin-top: 0 !important;}

.l-island-a.color.toc { }

.l-island-a.color.toc  ol {list-style: none;padding-left: 0;counter-reset: list-counter;margin: 0; }

.l-island-a.color.toc  ul { }

.l-island-a.color.toc  li {position: relative;padding-left: 20px;counter-increment: list-counter; }

.l-island-a.color.toc li::before {content: "—";position: absolute;left: 0;color: #000;}

.l-island-a.color.toc a {color:#0a75c2; border-bottom: 1px solid #bfd3ed; }

.l-island-a.color.toc a:hover {color: #cd192e; border-bottom: 1px solid #f6b4bc; }

.l-island-a.color.IvoryPaper, .l-island-a > .color.IvoryPaper { background: #F7F5F0; color: #1F2A44; }

.l-island-a.color.MistBlue, .l-island-a > .color.MistBlue { background: #EAF2FF; color: #0F2544; }

.l-island-a.color.SoftPeach, .l-island-a > .color.SoftPeach { background: #FFF3E6; color: #2B2B2B; }

.l-island-a.color.SageMist, .l-island-a > .color.SageMist { background: #F2F7F3; color: #173B2E; }

.l-island-a.color.PolarMint, .l-island-a > .color.PolarMint { background: #FAFDF7; color: #1A2B1E; }

.l-island-a.color.CloudBlue, .l-island-a > .color.CloudBlue { background: #EFF6FF; color: #0E1E2F; }

.l-island-a.color.SmokeGray, .l-island-a > .color.SmokeGray { background: #F5F7FA; color: #111827; }

.l-island-a.color.FreshMint, .l-island-a > .color.FreshMint { background: #F7FFF7; color: #0E2A1E; }

.l-island-a.color.LilacIce, .l-island-a > .color.LilacIce { background: #F9F3FF; color: #1A1530; }

.l-island-a.color.RoseMist, .l-island-a > .color.RoseMist { background: #FFF3F6; color: #2A0E1A; }

.l-island-a.color.PetalLight, .l-island-a > .color.PetalLight { background: #FFE6EE; color: #1F2A44; }

.l-island-a.color.Blush, .l-island-a > .color.Blush { background: #FFD6E5; color: #2C3E50; }

.l-island-a.color.PinkVeil, .l-island-a > .color.PinkVeil { background: #FCE4EC; color: #1F2933; }

.l-island-a.color.DustyRose, .l-island-a > .color.DustyRose { background: #F7CAD5; color: #1F2A44; }

.l-island-a.color.AntiqueRose, .l-island-a > .color.AntiqueRose { background: #EFB8C8; color: #112031; }

.l-island-a.color.IvorySand, .l-island-a > .color.IvorySand { background: #FFF6E9; color: #1F2A44; }

.l-island-a.color.Biscuit, .l-island-a > .color.Biscuit { background: #F7EBDD; color: #1F2937; }

.l-island-a.color.Oatmeal, .l-island-a > .color.Oatmeal { background: #F2E8D8; color: #1C2533; }

.l-island-a.color.Parchment, .l-island-a > .color.Parchment { background: #EDE2CC; color: #213547; }

.l-island-a.color.ClayBeige, .l-island-a > .color.ClayBeige { background: #E7D9C8; color: #24303F; }

.l-island-a.color.MintMeadow, .l-island-a > .color.MintMeadow { background: #F0F7EB; color: #2C3E50; }

.l-island-a.color.PaleSage, .l-island-a > .color.PaleSage { background: #E8F1E2; color: #1F2A44; }

.l-island-a.color.FrostGray, .l-island-a > .color.FrostGray { background: #EDF2F7; color: #1A202C; }

.l-island-a.color.PeachCream, .l-island-a > .color.PeachCream { background: #FFEDE1; color: #1E293B; }

.l-island-a.color.IceAir, .l-island-a > .color.IceAir { background: #F0FBFF; color: #0C1F29; }

.l-island-a.color.SoftBlack, .l-island-a > .color.SoftBlack { background: #1A1A1A; color: #FFFFFF; }

.b-entry__content .l-island-a .keys-img {margin-top: 30px;margin-bottom: 30px; }

.b-entry__content .l-island-a .keys-img img {width: 100%;vertical-align: bottom;border-radius: 10px;}

.b-entry__content .l-island-a .keys-img-disc, .b-entry__content .l-island-a .art-img-disc {text-align: center;margin-top: 12px;font-size: 14px;line-height: 18px; }

.b-entry__content .l-island-a .keys-list {border-left: 3px solid;list-style: none;padding-left: 18px;font-style: italic;}

.b-entry__content .l-island-a .keys-list li {    margin: 0; }

.b-entry__content .otziv-video iframe {height: 315px;}

.b-entry__content .l-island-q {width: 640px;margin-left: auto;margin-right: auto;position: relative; }

.b-entry__content .l-island-q .block_quote__content {width: 100%;display: grid;grid-template-columns: 24px auto;-webkit-column-gap: 10px;-moz-column-gap: 10px;column-gap: 10px;row-gap: 8px;max-width: 540px; }

.b-entry__content .l-island-a:hover {}

.b-entry__content .block_quote ,.b-entry__content .quote_block  {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

.block_quote__content .icon {
    position: absolute;
    left: -57px;
    top: .25em;
}

.block_quote__content .block_quote_icon { 
	position: relative;
}

.block_quote__text {
    font-size: 17px;
    line-height: 26px;
}

.block-incut {
    display: flex;
}

.block-incut {
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 40px 0;
    background-color: #fff5f7;
    position: relative;
}

.block-incut.green {background-color: #e1ffe3;}

.b-entry__content .block_quote .block_quote__content {
    width: 100%;
    display: grid;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 8px;
    max-width: 540px;
    grid-template-columns: 24px auto;
}

.block_quote__text p {
    font-size: inherit;
    line-height: inherit!important;
    margin: 0.5em 0!important;
    padding: 0;
}

.block_quote__text p:first-of-type {
    margin-top: 0!important;
}

.block_quote__text p:last-of-type {
    margin-bottom: 0!important;
}

.block-delimiter:before {
    display: block;
    content: '***';
    font-size: 36px;
    line-height: 1em;
    height: .6em;
    letter-spacing: .2em;
    text-align: center;
}

.l-island-a .cons {
    padding: 23px;
}

.l-island-a .cons p {
    margin: 0;
    margin-bottom: 15px;
}

.l-island-a .link, .main_news a, .full_news a {
    color: #346eb8;
    border-bottom: 1px solid #bfd3ed;
    cursor: pointer;
    text-decoration: none;
}

.l-island-a .link:hover, .main_news a:hover, .full_news a:hover {
    color: #cd192e;
    border-bottom: 1px solid #f6b4bc;
}

.l-island-c_block {
    background-color: #fff5f7;
    padding: 20px 25px 27px 20px;
}

.l-island-c_content .title {
    position: relative;
    width: 100%;
    max-width: 450px;
    /* margin: auto; */
    margin-bottom: 10px; 
}

img.num1 {
    width: 20px;
    vertical-align: text-bottom;
    margin-bottom: 1px;
    margin-right: 1px;
}

.l-island-c_content .link.active {
    color: #a06873;
    cursor: default;
}

.l-island-c_content .link a {
    text-decoration: none;
    color: #346eb8;
    border-bottom: 1px solid #bfd3ed;
}

.l-island-c_content .link a:hover {
    color: #cd192e;
    border-bottom: 1px solid #f6b4bc;
}

@media (min-width: 640px) {
.content-image img {border-radius: 11px;}
.item_content_img img {

    }
}

@media screen and (max-width: 550px) {
.lead-form_full .l-island-a {padding: 0}
}

@media (max-width: 859px) {
.l-island-a.color, .l-island-a > .color {margin: 20px 16px 0px;padding-right: 20px !important;padding-left: 20px !important;padding-top: 20px;padding-bottom: 20px; }
.l-island-a > .color {margin: 0; }
.b-entry__content .l-island-a .keys-img img {    border-radius: 11px; }
.item_content_img {border-radius: 11px;}
.b-entry__content .l-island-q {width: 100%;}
.b-entry .blockquote-art {padding-left: 16px;padding-right: 16px;width: auto; }
.b-entry .blockquote-art__line { }
.b-entry .blockquote-art__text { }
.block-delimiter:before {font-size: 23px;}
.b-entry__content .l-island-a .keys-img {margin-top: 20px;margin-bottom: 20px; }
.b-entry__content .l-island-a .keys-img-desc {font-size: 13px;line-height: 19px; }
.content.sitemap .content .col .l-island-a {padding: 0;}
.block-incut--text-big .block-incut__text {font-size: 22px;line-height: 28px; }
.block-incut {
        padding: 18px 25px 21px;
    }
.l-island-c_block {
        padding: 18px 25px 21px;
    }
.view-full .l-island-a.description p {margin-top: 0;}
.block_quote--default, .quote_block {
        padding-left: 16px;
    	padding-right: 16px;
    }
.block_quote__content .block_quote_icon:before { 
    	top: 11px !important;
    	left: 15px !important;
    	font-size: 50px !important;
    }
.b-entry__content .block_quote .block_quote__content:before {
        top: 5px;
    	left: -20px;
    	font-size: 50px;
    }
.block_quote__content .icon {
        width: 21px;
        height: auto;
        left: -35px;
    }
.block_quote__text {
        font-size: 17px;
        line-height: 26px;
    }
}

@media (min-width: 859px) {
.page.full .b-entry .item_content_img img {border-radius: 10px;}
.page-static .content.contacts .b-entry__content .l-island-a {margin: 0;}
.rek-block.main .l-island-a {
		width: 600px;
	}
}

@media (max-width: 639px) {
.b-entry .header, .l-island-a, .main_news_block, .full_news_block, .b-entry.article .block-head, .content-title {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (min-width: 1340px) {
.b-entry .header, .l-island-a, .l-island-b, .l-island-c, .full_news_header, .full_news, .full-ads {
		
	}
.rek-block.full .right-rek, .rek-block.full .l-island-a {
		width: 640px;
	}
}

@media (min-width: 1560px) {
.b-entry .header, .l-island-a, .l-island-b, .l-island-c, .full_news_header, .full_news, .full-ads  {
        width: 640px !important;
        margin-left: auto;
        margin-right: auto;
    }
.content-image img {
    	width: 500px;
    }
}

@media (min-width: 640px) and (max-width: 1559px) {
.l-island-a, .l-island-b, .l-island-c, .full_news_header, .full_news, .full-ads, .view-full .content-title, .admin-p-container {
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
    }
}

.quote:before, .block_quote__content .block_quote_icon:before {
		position: absolute;
		left: 15px; top: 11px;
		content: "\0022";
		font-weight: bold;
		font-size: 52px;
		margin-left: -.1em;
        color: #e55c78;
	}/* ============ smm-tattoo — landing-компоненты (чистый дизайн) ============ */
/* Применяются к контенту статических лендингов внутри .static-body */

.static-body section{padding:34px 0;border-bottom:1px solid var(--line)}
.static-body section:last-of-type{border-bottom:0}
.static-body section > h2{font-size:28px;letter-spacing:-.5px;margin:0 0 20px;line-height:1.2}
.static-body section > h3{font-size:20px;margin:0 0 10px}

/* hero лендинга */
.static-body #hero{background:linear-gradient(160deg,#0a5dd8,#0847a8);color:#fff;
  border-radius:18px;padding:40px 34px;border:0;margin-bottom:8px}
.static-body #hero p{font-size:19px;opacity:.95;margin:0 0 16px;max-width:720px}
.static-body #hero a{color:#fff;text-decoration:underline}
.static-body #hero .btn,.static-body a.btn{display:inline-block;background:#fff;color:var(--brand);
  font-weight:700;padding:13px 26px;border-radius:12px;text-decoration:none;margin-top:6px;transition:.15s transform}
.static-body #hero .btn:hover,.static-body a.btn:hover{transform:translateY(-2px);text-decoration:none}
.static-body a.btn{background:var(--brand);color:#fff}
.static-body a.btn:hover{background:var(--brand-d)}

/* списки-выгоды с галочками */
.static-body section ul{list-style:none;padding:0;margin:0;display:grid;gap:12px}
.static-body section ul li{position:relative;padding-left:34px;font-size:17px}
.static-body section ul li::before{content:"✓";position:absolute;left:0;top:0;
  width:22px;height:22px;background:#e7f0fe;color:var(--brand);border-radius:50%;
  display:grid;place-items:center;font-size:13px;font-weight:800}
/* «продолжаем по теме»/cluster — обычные ссылки-строки */
.static-body #cluster ul li::before,.static-body #faq ul li::before{content:none}
.static-body #cluster ul,.static-body #faq ul{gap:8px}
.static-body #cluster li{padding-left:0}

/* нумерованный процесс */
.static-body section ol{counter-reset:step;list-style:none;padding:0;margin:0;display:grid;gap:14px}
.static-body section ol li{position:relative;padding:16px 18px 16px 60px;background:var(--bg-soft);border-radius:12px;font-size:16px}
.static-body section ol li::before{counter-increment:step;content:counter(step);
  position:absolute;left:16px;top:14px;width:30px;height:30px;background:var(--brand);color:#fff;
  border-radius:50%;display:grid;place-items:center;font-weight:700}

/* карточки/кейсы/форматы */
.static-body .grid,.static-body .case-list{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;margin:0}
.static-body .grid .card,.static-body .case{background:#fff;border:1px solid var(--line);
  border-radius:14px;padding:20px 22px;box-shadow:0 1px 3px rgba(20,40,80,.04)}
.static-body .grid .card h3,.static-body .case h3{margin:0 0 8px;font-size:18px;color:var(--ink)}
.static-body .grid .card p,.static-body .case p{margin:0;color:var(--ink-dim)}

/* цены */
.static-body #prices ul li{font-size:18px;font-weight:500}
.static-body #prices ul li::before{content:"₽";font-size:12px}

/* FAQ */
.static-body details{border:1px solid var(--line);border-radius:12px;padding:2px 18px;margin-bottom:10px;background:#fff}
.static-body details summary{cursor:pointer;font-weight:600;padding:14px 0;list-style:none;font-size:17px}
.static-body details summary::-webkit-details-marker{display:none}
.static-body details summary::after{content:"+";float:right;color:var(--brand);font-size:20px;font-weight:700}
.static-body details[open] summary::after{content:"–"}
.static-body details p{margin:0 0 14px;color:var(--ink-dim)}

/* форма-заявка */
.static-body form{display:grid;gap:12px;max-width:520px;background:var(--bg-soft);padding:24px;border-radius:16px}
.static-body form input,.static-body form textarea{padding:13px 15px;border:1px solid var(--line);border-radius:10px;font-size:16px;font-family:inherit;background:#fff}
.static-body form textarea{min-height:96px;resize:vertical}
.static-body form button{background:var(--brand);color:#fff;border:0;padding:14px;border-radius:11px;font-size:16px;font-weight:700;cursor:pointer}
.static-body form button:hover{background:var(--brand-d)}

/* breadcrumb в контенте лендинга */
.static-body nav[aria-label] ol{list-style:none;display:flex;gap:8px;padding:0;margin:24px 0 0;font-size:14px;color:var(--ink-dim)}
.static-body nav[aria-label] li:not(:first-child)::before{content:"› ";margin-right:8px}

/* скрыть служебное, что может протечь из старого шаблона */
.static-body > link,.static-body script{display:none}

@media (max-width:620px){
  .static-body .grid,.static-body .case-list{grid-template-columns:1fr}
  .static-body #hero{padding:28px 22px}
  .static-body #hero p{font-size:17px}
  .static-body section > h2{font-size:23px}
}

/* теги под статьёй + лид категории */
.article-tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:28px;padding-top:20px;border-top:1px solid var(--line)}
.article-tags a{font-size:14px;color:var(--brand);background:var(--bg-soft);padding:6px 12px;border-radius:20px;text-decoration:none;transition:.15s}
.article-tags a:hover{background:var(--brand);color:#fff}
.page-lead{color:var(--ink-dim);font-size:18px;margin:8px 0 0;max-width:720px}

/* ============ HOME LANDING + shared ============ */
.btn-primary,.btn-ghost{display:inline-flex;align-items:center;justify-content:center;font-weight:700;border-radius:12px;padding:14px 26px;font-size:16px;text-decoration:none;transition:.16s;cursor:pointer;border:0}
.btn-primary{background:#fff;color:var(--brand)}
.btn-primary:hover{transform:translateY(-2px);text-decoration:none;box-shadow:0 10px 24px rgba(0,0,0,.18)}
.btn-ghost{background:transparent;color:var(--brand);border:1.5px solid var(--line)}
.btn-ghost:hover{border-color:var(--brand);text-decoration:none;background:var(--bg-soft)}
.hero .btn-ghost{color:#fff;border-color:rgba(255,255,255,.5)}
.hero .btn-ghost:hover{background:rgba(255,255,255,.12)}
.nav-cta{background:var(--brand);color:#fff!important;padding:8px 16px;border-radius:9px;font-weight:600}
.nav-cta:hover{background:var(--brand-d);text-decoration:none}

.hero-home{padding:74px 0 84px;text-align:center;background:radial-gradient(1000px 500px at 50% -20%,#1266e6,#0a4fbd 60%,#0847a8)}
.hero-badge{display:inline-block;background:rgba(255,255,255,.15);color:#fff;font-size:14px;font-weight:600;padding:7px 16px;border-radius:20px;margin-bottom:22px}
.hero-home h1{font-size:52px;line-height:1.08;margin:0 0 18px;letter-spacing:-1.5px}
.hero-home .hero-sub{margin:0 auto 30px;max-width:640px;font-size:20px}
.hero-cta{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
.hero-stats{display:flex;gap:44px;justify-content:center;margin-top:48px;flex-wrap:wrap}
.hero-stats b{display:block;font-size:30px;font-weight:800;letter-spacing:-.5px}
.hero-stats span{font-size:14px;opacity:.85}

.sec{padding:64px 0}
.sec-alt{background:var(--bg-soft)}
.sec-cta{padding:40px 0}
.sec-head{text-align:center;margin-bottom:40px}
.sec-head h2{font-size:34px;letter-spacing:-.8px;margin:0 0 8px}
.sec-head p{color:var(--ink-dim);font-size:18px;margin:0}

.svc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.svc{background:#fff;border:1px solid var(--line);border-radius:16px;padding:26px;transition:.18s}
.svc:hover{box-shadow:0 14px 30px rgba(10,50,110,.08);transform:translateY(-3px);border-color:transparent}
.svc h3{font-size:19px;margin:0 0 10px}
.svc p{color:var(--ink-dim);margin:0;font-size:15.5px;line-height:1.55}

.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.why{padding:8px 4px}
.why-n{font-size:38px;font-weight:800;color:var(--brand);opacity:.25;letter-spacing:-1px}
.why h3{font-size:20px;margin:6px 0 8px}
.why p{color:var(--ink-dim);margin:0;line-height:1.55}

.rev-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.rev{background:#fff;border:1px solid var(--line);border-radius:16px;padding:26px;margin:0}
.rev blockquote{margin:0 0 16px;font-size:16px;line-height:1.6;color:var(--ink)}
.rev blockquote::before{content:"“";font-size:44px;color:var(--brand);line-height:0;vertical-align:-18px;margin-right:4px}
.rev figcaption{font-weight:700;color:var(--ink-dim);font-size:14px}

/* CTA-форма (в статье и на главной) */
.cta-inline{background:linear-gradient(135deg,#0a5dd8,#0847a8);border-radius:20px;padding:36px;display:grid;grid-template-columns:1fr 1fr;gap:28px;align-items:center;color:#fff;margin:40px 0}
.cta-inline .cta-text h3{font-size:25px;margin:0 0 8px;letter-spacing:-.5px}
.cta-inline .cta-text p{margin:0;opacity:.92;font-size:16px}
.cta-form{display:flex;flex-direction:column;gap:12px;position:relative}
.cta-form input{padding:14px 16px;border:0;border-radius:11px;font-size:16px;font-family:inherit}
.cta-form button{background:#fff;color:var(--brand);border:0;padding:14px;border-radius:11px;font-size:16px;font-weight:700;cursor:pointer;transition:.15s}
.cta-form button:hover{transform:translateY(-2px)}
.cta-ok{display:none;background:rgba(255,255,255,.15);border-radius:11px;padding:16px;font-weight:600;text-align:center}
.form-thanks{background:var(--bg-soft);border:1px solid var(--line);border-radius:12px;padding:20px;text-align:center;font-weight:600;color:var(--brand)}

/* автор */
.author-box{display:flex;gap:16px;align-items:flex-start;background:var(--bg-soft);border:1px solid var(--line);border-radius:16px;padding:22px;margin:36px 0}
.author-av{width:56px;height:56px;border-radius:50%;background:linear-gradient(135deg,#0a5dd8,#3b82f6);color:#fff;display:grid;place-items:center;font-weight:800;font-size:18px;flex:none}
.author-name{font-weight:800;font-size:17px;display:flex;align-items:center;gap:8px}
.author-badge{font-size:11px;font-weight:700;background:var(--brand);color:#fff;padding:2px 8px;border-radius:20px}
.author-role{color:var(--ink-dim);font-size:14.5px;margin:5px 0 8px;line-height:1.5}
.author-links a{font-size:14px;font-weight:600}

/* похожие */
.related{margin-top:44px;padding-top:36px;border-top:1px solid var(--line)}
.related h2{font-size:24px;margin:0 0 22px;letter-spacing:-.5px}

/* плавающая кнопка Telegram */
.float-tg{position:fixed;right:20px;bottom:20px;z-index:40;width:56px;height:56px;border-radius:50%;background:#0088cc;color:#fff;display:grid;place-items:center;box-shadow:0 8px 24px rgba(0,136,204,.45);transition:.16s}
.float-tg:hover{transform:scale(1.08)}
.float-tg svg{width:28px;height:28px}

/* footer v2 */
.foot-grid{display:flex;justify-content:space-between;gap:30px;flex-wrap:wrap;padding-bottom:22px;border-bottom:1px solid var(--line)}
.foot-grid .logo{font-size:22px}
.foot-grid > div:first-child p{color:var(--ink-dim);font-size:14px;max-width:320px;margin:10px 0 0}
.foot-links{display:flex;flex-wrap:wrap;gap:8px 22px;align-content:flex-start}
.foot-links a{color:var(--ink-dim);font-size:14px}
.foot-bottom{color:var(--ink-dim);font-size:13px;padding-top:18px}

/* бургер */
.burger{display:none;flex-direction:column;gap:5px;background:none;border:0;cursor:pointer;padding:8px}
.burger span{width:24px;height:2px;background:var(--ink);border-radius:2px;transition:.2s}
.burger.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger.active span:nth-child(2){opacity:0}
.burger.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

@media (max-width:900px){
  .svc-grid,.why-grid,.rev-grid{grid-template-columns:1fr 1fr}
  .hero-home h1{font-size:38px}
  .cta-inline{grid-template-columns:1fr;padding:28px}
  .sec-head h2{font-size:27px}
}
@media (max-width:760px){
  .burger{display:flex}
  .main-nav{position:fixed;top:64px;left:0;right:0;background:#fff;flex-direction:column;gap:0;padding:8px 0;
    border-bottom:1px solid var(--line);box-shadow:0 12px 24px rgba(0,0,0,.08);transform:translateY(-12px);opacity:0;pointer-events:none;transition:.2s;max-height:calc(100vh - 64px);overflow:auto}
  .main-nav.open{transform:none;opacity:1;pointer-events:auto}
  .main-nav a{padding:13px 20px;width:100%;border-bottom:1px solid var(--bg-soft)}
  .nav-cta{margin:8px 20px;text-align:center}
  body.nav-open{overflow:hidden}
}
@media (max-width:560px){
  .svc-grid,.why-grid,.rev-grid{grid-template-columns:1fr}
  .hero-home{padding:54px 0 60px}.hero-home h1{font-size:31px}.hero-home .hero-sub{font-size:17px}
  .hero-stats{gap:26px}.author-box{flex-direction:column}
}
