/* cometa26 — визуальный стиль по гайду ред. 1.0 (05.09.2026): основа G + иллюстрации-плашки I.
   Токены и правила блоков — Cometa/Бренд/cometa-style-guide.html. Классы страниц не менялись. */
:root{
  --container:1200px; --gap:24px;
  --accent:#2468C9; --accent-bg:#DDEAFB; --accent-hover:#1D57AB; --accent-active:#174A93;
  --ink:#1B2430; --ink-2:#465060; --muted:#6E7A88;
  --box:#F3F6FA; --line:#E3E8EE; --bg:#FFFFFF; --field-line:#C9D2DC;
  --ok:#1E7F4F; --ok-bg:#E8F5EE; --err:#B4362D;
  --r-pill:999px; --r-plate:14px; --r-card:12px; --r-small:8px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font:16px/1.55 "Commissioner","Segoe UI",Arial,sans-serif;color:var(--ink);background:var(--bg);-webkit-font-smoothing:antialiased}
.container{max-width:var(--container);margin:0 auto;padding:0 24px}
h1{font-size:46px;line-height:1.12;font-weight:300;letter-spacing:-.01em;margin:0 0 16px;text-wrap:balance}
h2{font-size:32px;line-height:1.15;font-weight:300;letter-spacing:-.01em;margin:64px 0 16px;text-wrap:balance}
h3{font-size:22px;line-height:1.2;font-weight:500;margin:0 0 6px}
h4{font-size:17px;line-height:1.3;font-weight:600;margin:16px 0 6px}
h1 strong,h2 strong{font-weight:600}
p{margin:0 0 14px;max-width:70ch}
ul,ol{max-width:70ch}
li{margin-bottom:6px}
a{color:var(--accent);text-underline-offset:3px}
a:hover{color:var(--ink)}
img{max-width:100%;height:auto}
a:focus-visible,button:focus-visible,input:focus-visible,summary:focus-visible,select:focus-visible,textarea:focus-visible{outline:3px solid var(--accent);outline-offset:2px}
section{scroll-margin-top:16px}
.site-main > .container{padding-top:8px}
.num,.kpi .v,.price,.tarif .price,.price-box .price,.calc-sum,.vac-salary,td,th{font-variant-numeric:tabular-nums}

/* ---------- шапка ---------- */
.site-header{border-bottom:1px solid var(--line);padding:0;background:#fff;position:relative;z-index:40}
.site-header .container{display:flex;gap:16px;align-items:center;min-height:66px;flex-wrap:nowrap}
.logo{display:flex;align-items:center;text-decoration:none;color:var(--ink);font-weight:600;flex:0 0 auto}
.logo img{height:38px;width:auto;display:block}
.site-header nav{flex:1 1 auto;min-width:0}
.menu{display:flex;gap:18px;list-style:none;margin:0;padding:0;flex-wrap:wrap}
.menu > li{position:relative;display:flex;align-items:center;gap:2px;margin:0}
.menu > li > a{padding:8px 0;text-decoration:none;color:var(--ink);font-size:14.5px;font-weight:500;white-space:nowrap}
.menu > li > a:hover,.menu > li > a[aria-current]{color:var(--accent)}
.sub-toggle{width:24px;height:24px;border:0;background:transparent;cursor:pointer;padding:0;display:inline-flex;align-items:center;justify-content:center;border-radius:4px;align-self:center}
.sub-toggle::before{content:"";width:7px;height:7px;border-right:1.5px solid var(--muted);border-bottom:1.5px solid var(--muted);transform:translateY(-2px) rotate(45deg);transition:transform .15s}
.has-sub.open .sub-toggle::before{transform:translateY(2px) rotate(225deg)}
.sub{position:absolute;left:0;top:100%;min-width:260px;background:#fff;border:1px solid var(--line);border-radius:var(--r-card);box-shadow:0 12px 32px rgba(27,36,48,.10);padding:8px 0;margin:6px 0 0;list-style:none;z-index:60;display:none}
.sub li{display:block;margin:0}
.sub a{display:block;padding:8px 16px;text-decoration:none;color:var(--ink);white-space:nowrap;font-size:14px}
.sub a:hover,.sub a:focus-visible{background:var(--box);color:var(--accent)}
.has-sub:hover > .sub,.has-sub:focus-within > .sub,.has-sub.open > .sub{display:block}
.site-header .phone{margin-left:auto;flex:0 0 auto}
.phone{white-space:nowrap;font-weight:600;font-size:14px;color:var(--ink);text-decoration:none}
.site-header > .container > .btn{min-height:40px;padding:0 18px;font-size:14px}
.nav-toggle{display:none}

/* ---------- кнопки ---------- */
.btn{display:inline-flex;align-items:center;justify-content:center;min-height:48px;min-width:48px;padding:0 24px;background:var(--accent);color:#fff;text-decoration:none;border:0;border-radius:var(--r-pill);font:inherit;font-size:15px;font-weight:600;line-height:1.2;cursor:pointer;white-space:nowrap;transition:background .15s}
.btn:hover{background:var(--accent-hover);color:#fff}
.btn:active{background:var(--accent-active)}
.btn[disabled]{background:var(--line);color:var(--muted);cursor:not-allowed}
.btn-secondary{background:#fff;color:var(--accent);border:1.5px solid var(--accent)}
.btn-secondary:hover{background:var(--accent-bg);color:var(--accent)}
form .btn[type=submit]{background:var(--ink)}
form .btn[type=submit]:hover{background:#0E141C}
.hero-form .btn,.card form .btn{width:100%}

/* ---------- формы ---------- */
form .field{margin-bottom:12px;max-width:420px}
label{display:block;margin-bottom:4px;font-size:14px;font-weight:500}
input,textarea,select{width:100%;min-height:48px;padding:10px 16px;border:1px solid var(--field-line);border-radius:var(--r-pill);font:inherit;font-size:16px;color:var(--ink);background:#fff}
textarea{border-radius:var(--r-plate);min-height:96px}
input:focus,textarea:focus,select:focus{outline:3px solid var(--accent-bg);outline-offset:0;border-color:var(--accent)}
input[type=checkbox],input[type=radio]{width:18px;height:18px;min-height:0;accent-color:var(--accent);vertical-align:-3px;margin-right:6px}
.field label > input[type=checkbox]{display:inline-block}
.field label:has(> input[type=checkbox]){display:flex;gap:8px;align-items:flex-start;font-weight:400;font-size:14px;color:var(--ink-2)}
.field label:has(> input[type=checkbox]) input{margin-top:2px;flex:0 0 auto}
.hero-form{padding:20px;max-width:420px;width:100%;background:#fff;border:1px solid var(--line);border-radius:var(--r-plate)}
.hero-form .field{margin-bottom:12px;max-width:none}
.hero-form-note{font-size:13px;color:var(--muted);margin:10px 0 0}
.form-msg{font-size:14px;color:var(--muted);margin:8px 0 0}
.form-msg.is-error{color:var(--err)}
.form-ok{background:var(--ok-bg);color:var(--ok);border-radius:var(--r-card);padding:14px 18px;font-size:15px;max-width:420px}
.form-ok a{color:var(--ok)}
#forma{background:#fff}

/* ---------- первый экран ---------- */
.hero{display:grid;grid-template-columns:1.1fr .9fr;gap:40px;align-items:center;padding:48px 0 32px}
.hero > div > p:first-of-type{font-size:18px;line-height:1.6;color:var(--ink-2)}
.hero ul{margin:0 0 20px;padding-left:20px;color:var(--ink-2);font-size:15px}
.hero li{margin-bottom:6px}
.eyebrow{color:var(--muted);text-transform:uppercase;letter-spacing:.06em;font-size:12px;font-weight:500;margin:0 0 8px}
.lead{font-size:18px;line-height:1.6;color:var(--ink-2)}
.lab{font-size:12px;letter-spacing:.06em;text-transform:uppercase;color:var(--muted);font-weight:500}

/* ---------- сетка и карточки ---------- */
.grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:var(--gap);list-style:none;margin:0;padding:0}
.grid.two{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid.four{grid-template-columns:repeat(4,minmax(0,1fr))}
.card,.ph{background:var(--box);border:0;border-radius:var(--r-plate)}
.card{padding:20px}
.card h3{font-size:17px;font-weight:600;line-height:1.3;margin:0 0 6px}
.card h3 a{text-decoration:none;color:var(--ink)}
.card h3 a:hover{color:var(--accent)}
.card p{font-size:14px;color:var(--ink-2);margin:0 0 8px}
.card p:last-child{margin-bottom:0}
.card ul{font-size:14px;color:var(--ink-2);padding-left:18px;margin:0}
.ph{display:flex;align-items:center;justify-content:center;color:var(--muted);font-size:13px;text-align:center;padding:8px;background:var(--accent-bg)}
.ph--16x9{aspect-ratio:16/9}
.ph--4x3{aspect-ratio:4/3}
.slot{display:block;border:1px dashed var(--line);padding:12px;color:var(--muted);font-size:14px;border-radius:var(--r-small)}

/* KPI */
.kpis{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;margin:24px 0}
.kpi{text-align:left;padding:16px 18px;background:#fff;border:1px solid var(--line);border-radius:var(--r-plate)}
.kpi .v{font-size:30px;font-weight:300;line-height:1;display:block;white-space:nowrap}
.kpi .l{font-size:13px;color:var(--muted);display:block;margin-top:6px}

/* тарифы */
.tarif{background:#fff;border:1px solid var(--line);border-radius:var(--r-plate);padding:22px;display:flex;flex-direction:column;gap:8px}
.tarif h3{font-size:12px;letter-spacing:.06em;text-transform:uppercase;color:var(--muted);font-weight:500}
.tarif .price{font-size:30px;font-weight:300;line-height:1.1;margin:4px 0 8px}
.tarif .price b,.tarif .price strong{font-weight:600}
.tarif ul{padding-left:18px;margin:0;font-size:14px;color:var(--ink-2)}
.tarif .note{font-size:13px;color:var(--muted);margin-top:auto;padding-top:10px}
.tarif .btn{align-self:flex-start;min-height:40px;padding:0 18px;font-size:14px;margin-top:8px}
.price-box{border:2px solid var(--accent);border-radius:var(--r-plate);padding:24px;display:flex;flex-wrap:wrap;gap:24px;align-items:center;justify-content:space-between;background:#fff}
.price-box .price{font-size:32px;font-weight:300;line-height:1.1}
.price-box .price b,.price-box .price strong{font-weight:600}
.price-box .term{color:var(--muted);font-size:14px}

/* логотипы, сертификаты */
.logos{display:flex;gap:12px;flex-wrap:wrap;align-items:center;margin:16px 0;list-style:none;padding:0}
.logos li{flex:0 0 auto;width:140px;height:56px;display:flex;align-items:center;justify-content:center;background:#fff;border:1px solid var(--line);border-radius:var(--r-small);padding:6px;margin:0}
.logos .ph{width:140px;height:56px;flex:0 0 auto}
.logos img{max-width:100%;max-height:100%;width:auto;height:auto;object-fit:contain}
.logos.certs li{width:120px;height:160px}
.logos.partners li{width:150px;height:64px}
.certs-grid{list-style:none;padding:0;margin:16px 0;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:var(--gap)}
.certs-grid li{margin:0}
.certs-grid figure{margin:0;background:var(--box);border-radius:var(--r-plate);padding:12px}
.certs-grid img{width:100%;height:auto;border-radius:var(--r-small);display:block;background:#fff;border:1px solid var(--line)}
.certs-grid figcaption{font-size:13px;color:var(--muted);margin-top:8px}
.partner-grid .partner img{max-height:56px;width:auto;max-width:180px;display:block;margin-bottom:12px;object-fit:contain}

/* хлебные крошки */
.crumbs{list-style:none;display:flex;gap:8px;flex-wrap:nowrap;overflow-x:auto;padding:0;margin:14px 0 0;font-size:13px;color:var(--muted);white-space:nowrap}
.crumbs li{margin:0}
.crumbs a{color:var(--muted);text-decoration:none}
.crumbs a:hover{color:var(--accent)}
.crumbs li[aria-current]{color:var(--ink)}
.crumbs li:not(:last-child)::after{content:"›";margin-left:8px;color:#B7C2CE}

/* шаги */
ol.steps{counter-reset:s;list-style:none;padding:0;margin:0;max-width:none}
ol.steps li{counter-increment:s;display:grid;grid-template-columns:44px 1fr;gap:14px;padding:14px 0;border-bottom:1px solid var(--line);margin:0}
ol.steps li:last-child{border-bottom:none}
ol.steps li::before{content:counter(s);width:32px;height:32px;border-radius:50%;background:var(--accent-bg);color:var(--accent);display:flex;align-items:center;justify-content:center;font-weight:600;font-size:14px;margin-top:2px}
ol.steps h3{font-size:17px;font-weight:600;margin:0 0 4px}
ol.steps p{font-size:15px;color:var(--ink-2);margin:0}

/* FAQ */
details{background:#fff;border:1px solid var(--line);border-radius:var(--r-card);padding:14px 18px;margin-bottom:8px}
details summary{cursor:pointer;font-weight:600;list-style:none;display:flex;justify-content:space-between;gap:12px;align-items:baseline}
details summary::-webkit-details-marker{display:none}
details summary::after{content:"+";color:var(--accent);font-weight:300;font-size:24px;line-height:1;flex:0 0 auto}
details[open] summary::after{content:"–"}
details summary h3{display:inline;font-size:16px;font-weight:600;margin:0}
details p{margin:10px 0 0;color:var(--ink-2)}

/* таблицы */
.tw{overflow-x:auto;margin:0 0 20px;border:1px solid var(--line);border-radius:var(--r-card)}
table{border-collapse:collapse;width:100%;font-size:14.5px;min-width:520px}
th,td{text-align:left;padding:10px 14px;border-bottom:1px solid var(--line);vertical-align:top}
th{background:var(--box);font-weight:500;font-size:12px;letter-spacing:.06em;text-transform:uppercase;color:var(--muted)}
tr:last-child td{border-bottom:none}

/* маркеры стенда */
mark.todo{background:#FFF3CD;color:#7A5B00;padding:1px 6px;border-radius:4px;font-size:.9em;font-style:normal;font-weight:600;white-space:normal}
mark.todo::before{content:"⚠ "}

/* отзывы */
blockquote{border:0;margin:0 0 16px;padding:0;color:var(--ink);font-style:normal}
blockquote cite{display:block;margin-top:8px;font-style:normal;font-weight:500;font-size:13px;color:var(--muted)}
blockquote.review{display:grid;grid-template-columns:56px 1fr;gap:4px 14px;align-items:start}
blockquote.review .avatar{grid-row:span 2;width:56px;height:56px;border-radius:50%;object-fit:cover;margin-top:2px;background:var(--accent-bg)}
blockquote.review cite{grid-column:2}
.card blockquote.review{background:transparent}
.video{position:relative;aspect-ratio:16/9;max-width:720px;margin:12px 0 20px;background:var(--box);border-radius:var(--r-small);overflow:hidden}
.video iframe{position:absolute;inset:0;width:100%;height:100%;border:0}
.review-full{margin-bottom:24px;background:#fff;border:1px solid var(--line)}
.review-full ul.proof{grid-template-columns:1fr;max-width:720px}
.reply{background:var(--box);border:0;border-radius:var(--r-small);padding:10px 14px;font-size:14px;max-width:none}
.review-tag{font-size:13px;color:var(--muted);margin:8px 0 0}
ul.proof{list-style:none;padding:0;margin:8px 0 0;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
ul.proof li{background:var(--box);border-radius:var(--r-small);padding:8px;margin:0}
ul.proof img{width:100%;height:auto;border-radius:6px;display:block;border:1px solid var(--line)}
ul.proof span{display:block;font-size:13px;color:var(--muted);margin-top:6px}

/* CTA */
.cta-band{background:var(--accent);color:#fff;border-radius:var(--r-plate);padding:28px 32px;margin:24px 0;position:relative;overflow:hidden}
.cta-band h2{margin:0 0 8px;color:#fff;font-size:24px;font-weight:400}
.cta-band p{color:#D6E2F7;max-width:75ch}
.cta-band .btn{background:#fff;color:var(--accent)}
.cta-band .btn:hover{background:var(--accent-bg)}
.cta-band .btn-secondary{background:transparent;color:#fff;border-color:#8FB0E6}
.cta-band .btn-secondary:hover{background:rgba(255,255,255,.12);color:#fff}
.cta-band::after{content:"";position:absolute;right:-40px;bottom:-60px;width:260px;height:260px;background:url(/bitrix/templates/cometa26/img/mark.png) no-repeat center/contain;opacity:.08;pointer-events:none}
.cta-band--light{background:var(--box);color:var(--ink)}
.cta-band--light h2{color:var(--ink)}
.cta-band--light p{color:var(--ink-2)}
.cta-band--light .btn{background:var(--accent);color:#fff}
.cta-band--light .btn:hover{background:var(--accent-hover)}
.cta-band--light .btn-secondary{background:#fff;color:var(--accent);border-color:var(--accent)}
.cta-band--light::after{display:none}
.cta-row{display:flex;gap:12px;flex-wrap:wrap;position:relative}
.sticky-cta{display:none}

/* калькулятор */
form.calc{border:2px solid var(--accent);border-radius:var(--r-plate);padding:24px;display:grid;grid-template-columns:1fr 1fr;gap:24px;max-width:none;background:#fff}
form.calc fieldset{border:0;padding:0;margin:0 0 12px}
form.calc legend{font-weight:600;margin-bottom:6px}
form.calc label{display:flex;gap:8px;align-items:flex-start;margin:4px 0;font-size:15px;font-weight:400}
form.calc input[type=radio],form.calc input[type=checkbox]{width:18px;height:18px;min-height:0;margin-top:3px}
form.calc input[type=number]{max-width:120px}
form.calc .calc-total{background:var(--box);border-radius:var(--r-plate);padding:16px;align-self:start}
.calc-lines{min-width:0;font-size:14px}
.calc-lines td{padding:6px 8px}
.calc-lines td:last-child{text-align:right;white-space:nowrap}
.calc-sum{font-size:18px;display:flex;gap:16px;flex-wrap:wrap;margin:12px 0 8px}
.calc-sum b{font-size:26px;font-weight:600}
.calc-note{font-size:13px;color:var(--muted);margin:0}
form.calc .tw{border:0}
form.calc table{min-width:0}

/* команда */
.staff-grid{list-style:none;padding:0;margin:16px 0;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:var(--gap)}
.staff-card{background:var(--box);border:0;border-radius:var(--r-plate);padding:14px;display:flex;flex-direction:column;gap:6px;margin:0}
.staff-card > a{text-decoration:none;color:var(--ink);display:flex;flex-direction:column;gap:6px}
.staff-card img,.staff-card .staff-ph{width:100%;aspect-ratio:3/4;object-fit:cover;object-position:top;border-radius:var(--r-small);background:var(--accent-bg)}
.staff-card strong{font-size:18px;font-weight:600;margin-top:6px}
.staff-card > a > span{color:var(--muted);font-size:14px}
.staff-card p{font-size:14px;margin:0;color:var(--ink-2)}
.staff-contacts{font-size:13px!important;color:var(--muted)}
.hero.person{grid-template-columns:1.2fr .8fr}
.person-facts{list-style:none;padding:0;margin:0 0 20px;display:grid;gap:6px}
.person-facts li{margin:0}
.portrait{margin:0}
.portrait img{width:100%;max-width:420px;height:auto;border-radius:var(--r-card);display:block;margin:0 auto;background:var(--box)}
.portrait .ph{max-width:420px;margin:0 auto}
ul.checks{list-style:none;padding:0;margin:0;display:grid;gap:10px;max-width:none}
ul.checks li{padding-left:30px;position:relative;margin:0}
ul.checks li::before{content:"";position:absolute;left:0;top:3px;width:18px;height:18px;border-radius:50%;background:var(--accent-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232468C9' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 12l3.5 3.5L17 9'/%3E%3C/svg%3E") no-repeat center/12px}
ul.cols{columns:2;column-gap:32px;padding-left:20px;margin:0;max-width:none}
ul.cols li{break-inside:avoid;margin-bottom:6px}
.bio-photo{margin:16px 0}
.bio-photo img{max-width:100%;height:auto;border-radius:var(--r-small);display:block}

/* история */
ol.timeline{list-style:none;padding:0;margin:0;border-left:2px solid var(--accent-bg);max-width:none}
ol.timeline li{display:grid;grid-template-columns:80px 1fr;gap:16px;padding:0 0 24px 20px;position:relative;margin:0}
ol.timeline li::before{content:"";position:absolute;left:-8px;top:6px;width:12px;height:12px;border-radius:50%;background:#fff;border:2px solid var(--accent)}
ol.timeline b{font-size:22px;color:var(--accent);line-height:1.2;font-weight:600}
ol.timeline h3{margin-bottom:4px;font-size:17px;font-weight:600}
ol.timeline p{font-size:15px;color:var(--ink-2)}
ol.timeline.compact li{padding-bottom:10px;align-items:baseline}
ol.timeline.compact b{font-size:18px}

/* вакансии, контакты */
.vac{display:flex;flex-direction:column;gap:8px}
.vac-salary{font-size:22px;font-weight:400;margin:0}
.vac-meta{list-style:none;padding:0;margin:0;display:flex;gap:12px;flex-wrap:wrap;font-size:13px;color:var(--muted)}
.vac-meta li{margin:0}
.vac .btn{margin-top:auto;align-self:flex-start;min-height:40px;padding:0 18px;font-size:14px}
.contact-list{list-style:none;padding:0;margin:0 0 20px;display:grid;gap:8px}
.contact-list li{margin:0}

/* кейсы */
.case-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:var(--gap);list-style:none;padding:0;margin:16px 0}
.case-card{background:#fff;border:1px solid var(--line);border-radius:var(--r-plate);padding:0;overflow:hidden;display:flex;flex-direction:column;margin:0;transition:border-color .15s}
.case-card:hover{border-color:var(--accent)}
.case-card > a{text-decoration:none;color:var(--ink);display:flex;flex-direction:column;gap:8px;height:100%}
.case-card img{width:100%;aspect-ratio:16/9;object-fit:cover;display:block;background:var(--accent-bg)}
.case-card .lab{color:var(--accent);padding:10px 16px 0}
.case-card strong{font-size:16px;font-weight:600;line-height:1.3;padding:0 16px}
.case-card .case-desc{font-size:14px;color:var(--muted);padding:0 16px 16px}
.case-card .case-body{padding:16px;display:flex;flex-direction:column;gap:8px;flex:1}
.case-card h3{font-size:16px;margin:0}
.case-card p{font-size:14px;margin:0;color:var(--muted)}
.case-card .tag{font-size:12px;text-transform:uppercase;letter-spacing:.05em;color:var(--accent);margin-top:auto}
.rubrics{margin:0 0 16px}
.rubrics ul{list-style:none;padding:0;margin:8px 0 0;display:flex;gap:8px;flex-wrap:wrap}
.rubrics li{margin:0}
.rubrics a{display:inline-block;padding:8px 14px;border:1px solid var(--line);border-radius:var(--r-pill);text-decoration:none;color:var(--ink);font-size:14px;background:#fff}
.rubrics a:hover{border-color:var(--accent);color:var(--accent)}
.rubrics a[aria-current]{background:var(--accent);color:#fff;border-color:var(--accent)}
.hero.case-hero{grid-template-columns:1.1fr .9fr}
.case-facts{list-style:none;padding:0;margin:0 0 20px;display:grid;gap:6px}
.case-facts li{margin:0}
.case-cover{margin:0}
.case-cover img{width:100%;height:auto;border-radius:var(--r-card);display:block;border:1px solid var(--line)}
.case-shot{margin:16px 0;max-width:820px}
.case-shot img{width:100%;height:auto;border-radius:var(--r-small);display:block;border:1px solid var(--line)}
.case-shot figcaption{font-size:13px;color:var(--muted);margin-top:6px}

/* подвал */
.site-footer{border-top:1px solid var(--line);margin-top:64px;padding:32px 0 40px;color:var(--muted);font-size:14px;background:#fff}
.site-footer p{margin:0 0 8px}
.site-footer a{color:var(--ink);text-decoration:none}
.site-footer a:hover{color:var(--accent)}
.site-footer .menu{margin:16px 0;gap:16px}
.site-footer .menu > li > a{font-size:14px;font-weight:500;padding:0}

@media (max-width:1320px){.site-header > .container > .btn{display:none}}

/* ---------- планшет ---------- */
@media (max-width:1024px){
  .grid.four,.kpis,.staff-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .grid,.case-grid,.certs-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .menu{gap:14px}
}

/* ---------- шапка: сворачивается в бургер до 900 px ---------- */
@media (max-width:900px){
  /* шапка: логотип, звонок, бургер; меню раскрывается списком */
  .site-header .container{flex-wrap:wrap;gap:12px;min-height:60px;padding-top:8px;padding-bottom:8px}
  .logo img{height:30px}
  .site-header .phone{order:2;margin-left:auto;width:44px;height:44px;border-radius:50%;background:var(--box);display:flex;align-items:center;justify-content:center;font-size:0;color:transparent}
  .site-header .phone::before{content:"";width:22px;height:22px;background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232468C9' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 4h4l2 5-2.5 1.5a11 11 0 0 0 5 5L15 13l5 2v4a2 2 0 0 1-2 2A16 16 0 0 1 3 6a2 2 0 0 1 2-2'/%3E%3C/svg%3E") no-repeat center/contain}
  .nav-toggle{display:flex;order:3;align-items:center;justify-content:center;width:44px;height:44px;border:0;border-radius:50%;background:var(--box);cursor:pointer;padding:0}
  .nav-toggle::before{content:"";width:22px;height:22px;background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B2430' stroke-width='1.5' stroke-linecap='round'%3E%3Cpath d='M4 7h16M4 12h16M4 17h16'/%3E%3C/svg%3E") no-repeat center/contain}
  .site-header.open .nav-toggle::before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B2430' stroke-width='1.5' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E")}
  .site-header nav{display:none;flex:1 0 100%;order:10;border-top:1px solid var(--line);padding-top:8px}
  .site-header.open nav{display:block}
  .menu{flex-direction:column;gap:2px;width:100%}
  .menu > li{flex-wrap:wrap;justify-content:space-between}
  .menu > li > a{padding:10px 0;font-size:16px}
  .sub{position:static;box-shadow:none;border:0;border-left:2px solid var(--line);border-radius:0;padding:0 0 4px 12px;margin:0 0 8px;min-width:0;width:100%}
  .sub a{white-space:normal;padding:8px 8px}
  .has-sub:hover > .sub,.has-sub:focus-within > .sub{display:none}
  .has-sub.open > .sub{display:block}
  .site-header > .container > .btn{display:none}
}

/* ---------- мобильный ---------- */
@media (max-width:768px){
  body{padding-bottom:64px}
  h1{font-size:30px;font-weight:400}
  h2{font-size:26px;font-weight:400;margin-top:40px}
  h3{font-size:19px}
  .hero{grid-template-columns:1fr;gap:20px;padding:24px 0 16px}
  .hero.person,.hero.case-hero{grid-template-columns:1fr}
  .hero-form{max-width:none}
  .grid,.grid.two,.grid.four,.case-grid,.certs-grid,.staff-grid{grid-template-columns:1fr}
  .kpis{grid-template-columns:repeat(2,minmax(0,1fr))}
  .kpi .v{font-size:26px;font-weight:400}
  ol.steps li{grid-template-columns:36px 1fr}
  ol.timeline li{grid-template-columns:1fr;gap:4px}
  ul.cols{columns:1}
  ul.proof{grid-template-columns:1fr}
  form.calc{grid-template-columns:1fr}
  .cta-band{padding:22px 20px}
  .cta-band .btn{width:100%}
  .cta-band::after{width:160px;height:160px;right:-50px;bottom:-60px}
  .btn{min-height:48px}
  .sticky-cta{display:flex;gap:8px;position:fixed;left:0;right:0;bottom:0;padding:8px 12px;background:#fff;border-top:1px solid var(--line);z-index:50}
  .sticky-cta .btn{flex:1;min-height:44px;padding:0 12px}
  .crumbs{margin-top:10px}
}
@media (prefers-reduced-motion:reduce){*{animation:none!important;transition:none!important}html{scroll-behavior:auto}}
/* ===== Первый экран главной: иллюстрация-плашки, ряд действий, ряд доверия (гайд §10) ===== */
.hero-home{grid-template-columns:minmax(0,1fr) 520px;align-items:center}
.hero > div > p.eyebrow-mark{font-size:12px;line-height:1.3;color:var(--ink)}
.eyebrow-mark{display:flex;align-items:center;gap:10px;color:var(--ink);margin-bottom:16px}
.hero > div > .eyebrow + p{font-size:18px;line-height:1.6;color:var(--ink-2)}
.eyebrow-mark img{width:34px;height:auto}
.hero-actions{display:flex;gap:12px;align-items:center;flex-wrap:wrap;margin-top:8px}
.link{color:var(--accent);font-weight:600;text-decoration:none;font-size:15px;white-space:nowrap}
.link:hover{text-decoration:underline;text-underline-offset:4px}
.hero-actions .link{display:inline-block;line-height:20px;padding:14px 4px}
.plate{background:#fff;border:1px solid var(--line);border-radius:var(--r-plate)}
.hero-ill{position:relative;height:350px;background:var(--box);border-radius:var(--r-plate)}
.hero-ill .lab{color:var(--muted)}
.trust-row{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin:0 0 40px}
.trust{background:#fff;border:1px solid var(--line);border-radius:12px;padding:12px 16px;display:flex;align-items:center;gap:8px;min-width:0}
.trust-v{font-size:20px;font-weight:600;color:var(--accent);line-height:1;margin-right:4px}
.trust-l{font-size:13px;color:var(--ink-2);line-height:1.3;margin-left:4px}
.tag{display:inline-block;background:var(--box);color:var(--ink);font-size:11px;font-weight:600;letter-spacing:.02em;padding:3px 7px;border-radius:4px;white-space:nowrap;line-height:1.3}
.tag-accent{background:var(--accent-bg);color:var(--accent);letter-spacing:.04em;text-transform:uppercase}
.tag-dark{background:var(--ink);color:#fff}

/* ===== Сквозной блок «Сайт под продвижение» (гайд §28) ===== */
.flagship{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(0,.8fr);gap:28px;align-items:center;background:var(--box);border:1.5px solid var(--accent);border-radius:var(--r-plate);padding:28px 32px;margin:24px 0}
.flagship-main{display:flex;flex-direction:column;gap:14px;min-width:0}
.flagship-main p{margin:0}
.flagship h2{margin:0;font-size:28px;font-weight:300;line-height:1.15;letter-spacing:-.01em}
.flagship-main > p:not(.lab):not(.flagship-price){font-size:16px;color:var(--ink-2);line-height:1.55;max-width:52ch}
.lab-accent{color:var(--accent)}
.flagship-price{display:flex;align-items:baseline;gap:12px;flex-wrap:wrap}
.flagship-price .num{font-size:34px;font-weight:300;line-height:1;white-space:nowrap;color:var(--ink)}
.flagship-price span:last-child{font-size:13px;color:var(--muted)}
.flagship-actions{display:flex;gap:10px;align-items:center;flex-wrap:wrap}
.flagship-actions .link{display:inline-block;line-height:20px;padding:14px 4px}
.flagship-list{background:#fff;border:1px solid var(--line);border-radius:12px;padding:18px 20px;display:flex;flex-direction:column;gap:12px;min-width:0}
.flagship-list p{margin:0}
.flagship-list ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:10px;font-size:14px;color:var(--ink);line-height:1.4}
.flagship-list li{display:flex;gap:10px;align-items:flex-start}
.flagship-list svg{flex:0 0 18px;margin-top:1px;color:var(--accent)}
@media (max-width:1024px){.hero-home{grid-template-columns:minmax(0,1fr) 440px}.hero-ill{transform:scale(.85);transform-origin:left top;height:298px}}
@media (max-width:900px){
  .hero-home{grid-template-columns:1fr}
  .hero-ill{transform:none;height:auto;padding:16px}
  .hero-ill .plate-1{position:static!important;width:100%!important}
  .hero-ill .plate-2,.hero-ill .plate-3,.hero-ill .plate-4,.hero-ill > svg{display:none!important}
  .hero-actions{flex-direction:column;align-items:stretch}
  .hero-actions .btn{width:100%}
  .hero-actions .link{text-align:center}
  .flagship{grid-template-columns:1fr;padding:22px 18px}
  .flagship .btn{width:100%}
}
@media (max-width:768px){
  .trust-row{grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;margin-bottom:28px}
  .trust{flex-direction:column;align-items:flex-start;gap:6px;padding:10px 12px}
  .trust-l{margin-left:0;font-size:12px}
  .flagship h2{font-size:24px;font-weight:400}
  .flagship-price .num{font-size:30px}
}

/* ===== Главная: ритм секций (гайд §7), KPI-ряд (§13), шаги (§16), карточки кейсов (§19) ===== */
.alt{background:var(--box);box-shadow:0 0 0 100vmax var(--box);clip-path:inset(0 -100vmax);padding:8px 0 48px;margin:40px 0}
.alt h2{margin-top:40px}
.alt + .alt{margin-top:0}
.alt .card,.alt .staff-card,.alt .ph,.alt .logos li{background:#fff;border:1px solid var(--line)}
.alt details{background:#fff}
.alt .cta-band--light{background:#fff;border:1px solid var(--line)}
.kpis-home{margin:0 0 8px}
.kpi .v.num{font-weight:300}
ol.steps li > h3{font-size:17px;font-weight:600;margin:0 0 4px;line-height:1.3}
ol.steps li > p{margin:0}
.case-home{display:flex;flex-direction:column;gap:10px;border:1px solid transparent}
.case-home:hover{border-color:var(--accent)}
.case-home > a,.case-home .case-head{text-decoration:none;color:var(--ink);display:flex;flex-direction:column;gap:10px}
.case-home .lab{color:var(--accent)}
.case-num{display:flex;flex-direction:column;gap:4px;background:#fff;border:1px solid var(--line);border-radius:12px;padding:12px 14px}
.alt .case-num{background:var(--box);border:0}
.case-num .v{font-size:26px;font-weight:400;line-height:1;white-space:nowrap}
.case-num .l{font-size:12px;color:var(--muted)}
.case-home h3{font-size:16px;margin:0;line-height:1.3}
.case-home h3 a{color:inherit;text-decoration:none}
.case-sub{font-size:12px;color:var(--muted)}
.case-text{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;margin:0}
@media (max-width:900px){.alt{padding:8px 0 32px;margin:28px 0}.alt h2{margin-top:28px}.kpis-home{grid-template-columns:repeat(2,minmax(0,1fr))}}
body{overflow-x:clip}

/* ===== Правки после первого рендера главной: сетка шагов, ширина списков-сеток ===== */
ol.steps li{grid-template-rows:auto auto;align-items:start}
ol.steps li::before{grid-row:1/3;grid-column:1}
ol.steps li > h3,ol.steps li > p{grid-column:2}
ol.steps li > p{grid-row:2}
ul.grid,ol.grid,ul.kpis,ul.logos,.staff-grid,.case-grid,ol.steps,ul.case-facts{max-width:none}

/* Отступы серых секций: 64 px до и после, как между остальными блоками */
.alt{margin:64px 0;padding:16px 0 64px}
.alt h2{margin-top:48px}
.alt + .alt{margin-top:0}
@media (max-width:900px){.alt{margin:40px 0;padding:8px 0 40px}.alt h2{margin-top:32px}}

/* ===== Блок «Нам доверяют» (гайд §21): шапка с плашками, логотипы на всю ширину, сертификаты + статус ===== */
.trust-head{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:24px;align-items:end;margin-bottom:24px}
.trust-head h2{margin-bottom:8px}
.trust-head p{margin:0;color:var(--ink-2);max-width:52ch}
.trust-years{display:flex;gap:10px;flex-wrap:wrap}
.trust-years > div{background:#fff;border:1px solid var(--line);border-radius:12px;padding:10px 14px;display:flex;flex-direction:column;gap:2px;min-width:132px}
.trust-years .v{font-size:22px;font-weight:400;line-height:1.1;white-space:nowrap}
.trust-years .l{font-size:12px;color:var(--muted)}
.logos-grid{display:grid;grid-template-columns:repeat(7,minmax(0,1fr));gap:12px;margin:0 0 32px}
.logos-grid li{width:auto;height:68px;padding:10px 12px}
.trust-cols{display:grid;grid-template-columns:minmax(0,2fr) minmax(0,1fr);gap:24px;align-items:start}
.trust-cols h3{font-size:17px;font-weight:600;margin:0 0 12px}
.certs-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:10px;list-style:none;padding:0;margin:0;max-width:none}
.certs-grid li{margin:0}
.certs-grid figure{margin:0;background:#fff;border:1px solid var(--line);border-radius:12px;padding:8px;display:flex;flex-direction:column;gap:6px;height:100%}
.certs-grid img{width:100%;aspect-ratio:3/4;object-fit:cover;object-position:top;border-radius:6px;border:1px solid var(--line);background:#fff}
.certs-grid figcaption{font-size:11px;line-height:1.3;color:var(--muted)}
.accred{background:#fff;border:1px solid var(--line);border-radius:12px;padding:14px 16px;display:flex;gap:12px;align-items:flex-start;margin-bottom:10px}
.accred .tag{flex:0 0 auto;margin-top:2px}
.accred p{margin:0;font-size:14px;color:var(--ink-2)}
.partners-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin:0}
.partners-grid li{width:auto;height:64px}
.partners-note{font-size:13px;color:var(--muted);margin:10px 0 0}
@media (max-width:1024px){.logos-grid{grid-template-columns:repeat(5,minmax(0,1fr))}.certs-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media (max-width:900px){.trust-head,.trust-cols{grid-template-columns:1fr}.logos-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:8px}.logos-grid li{height:56px}}

/* ===== Секция «текст + карточки»: две колонки (гайд: чередование текст + иллюстрация) ===== */
.split{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(0,.9fr);gap:40px;align-items:center}
.split-text h2{margin-top:0}
.split-text p{max-width:none}
.grid.stack{grid-template-columns:1fr;gap:12px}
.alt .split-text h2{margin-top:0}
.alt .split{padding-top:48px}
@media (max-width:900px){.split{grid-template-columns:1fr;gap:20px}.alt .split{padding-top:32px}}

/* ===== Листалка сертификатов: колонки одной высоты, карточки 4 в окне, стрелки по бокам ===== */
.trust-cols{align-items:stretch}
.trust-cols > div{display:flex;flex-direction:column;min-width:0}
.cslider{position:relative;flex:1;display:flex;min-height:0}
.cs-track{display:flex;gap:10px;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;flex:1;grid-template-columns:none;margin:0;padding:0}
.cs-track::-webkit-scrollbar{display:none}
.cs-track li{flex:0 0 calc((100% - 30px) / 4);scroll-snap-align:start;display:flex;min-width:0}
.cs-track figure{width:100%;height:100%;min-height:0}
.cs-track img{flex:1;min-height:0;aspect-ratio:auto;width:100%;height:auto;object-fit:contain;object-position:center;background:var(--box);border-radius:6px}
.cs-track figcaption{flex:0 0 auto;min-height:2.6em}
.cs-btn{position:absolute;top:50%;transform:translateY(-50%);width:40px;height:40px;border-radius:50%;background:#fff;border:1px solid var(--line);color:var(--accent);display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:2;padding:0;transition:border-color .15s,background .15s}
.cs-btn:hover{border-color:var(--accent);background:var(--accent-bg)}
.cs-btn[disabled]{opacity:.35;cursor:default;pointer-events:none}
.cs-prev{left:-20px}.cs-next{right:-20px}
@media (max-width:1024px){.cs-track li{flex-basis:calc((100% - 20px) / 3)}}
@media (max-width:900px){.trust-cols > div{display:block}.cslider{display:block}.cs-track li{flex-basis:calc((100% - 10px) / 2)}.cs-track img{aspect-ratio:4/3;flex:none}.cs-prev{left:-8px}.cs-next{right:-8px}}

/* ===== Отзывы и пруфы (гайд §20): видео + цитата слева, три отзыва столбиком справа; скриншоты 4 в ряд с увеличением ===== */
.reviews{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(0,.9fr);gap:16px;align-items:stretch;margin:16px 0 8px}
.review-card{padding:20px;display:flex;flex-direction:column;gap:14px}
.review-card blockquote{margin:0}
.review-card .video{max-width:none;margin:0}
.review-stack{display:flex;flex-direction:column;gap:16px}
.review-stack .review-card{flex:1}
.alt .review-card{background:#fff;border:1px solid var(--line)}
ul.proof.proof-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;max-width:none}
ul.proof.proof-grid img{aspect-ratio:16/10;object-fit:cover;object-position:top;background:#fff}
ul.proof.proof-grid span{min-height:2.6em}
img.zoomable{cursor:zoom-in}
img.zoomable:hover{border-color:var(--accent)}
.lightbox{position:fixed;inset:0;z-index:1000;background:rgba(27,36,48,.8);display:flex;align-items:center;justify-content:center;padding:24px}
.lightbox figure{margin:0;max-width:min(1400px,96vw);max-height:92vh;display:flex;flex-direction:column;gap:10px;align-items:center}
.lightbox img{max-width:100%;max-height:calc(92vh - 40px);width:auto;height:auto;border-radius:8px;background:#fff;box-shadow:0 20px 60px rgba(0,0,0,.4)}
.lightbox figcaption{color:#fff;font-size:14px;text-align:center}
.lb-close{position:fixed;top:16px;right:16px;width:44px;height:44px;border-radius:50%;border:0;background:#fff;color:var(--ink);font-size:28px;line-height:1;cursor:pointer}
@media (max-width:1024px){ul.proof.proof-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:900px){.reviews{grid-template-columns:1fr}}
@media (max-width:768px){ul.proof.proof-grid{grid-template-columns:1fr 1fr;gap:8px}}

/* ===== CTA-лента с формой (главная): текст слева, белая форма справа; водяной знак — знак кометы ===== */
.cta-form{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(0,.9fr);gap:32px;align-items:center;padding:36px 40px}
.cta-form-text{position:relative;z-index:1;display:flex;flex-direction:column;gap:12px}
.cta-form-text h2{margin:0}
.cta-form-text p{margin:0}
.cta-form .cta-row{margin-top:4px}
.cta-contacts{color:#D6E2F7;font-size:14px}
.cta-contacts a{color:#fff;text-decoration:none;font-weight:500}
.cta-contacts a:hover{text-decoration:underline}
.cta-form-card{position:relative;z-index:1;max-width:none;margin:0;padding:24px;border:0}
.cta-form-card .field{margin-bottom:12px}
.cta-form-card .btn{background:var(--ink);color:#fff;width:100%}
.cta-form-card .btn:hover{background:#2B3644}
.cta-band::after{right:24px;bottom:-40px;width:320px;height:200px;opacity:.12}
@media (max-width:900px){.cta-form{grid-template-columns:1fr;padding:24px 20px}.cta-band::after{width:200px;height:130px;right:0}}

.lightbox[hidden]{display:none}

#forma.cta-band{background:var(--accent)}
#forma.cta-band h2{color:#fff}
#forma.cta-band > .cta-form-text p{color:#D6E2F7}

/* Форма в синей секции: подписи тёмные; водяной знак слева под текстом; бейдж Минцифры по центру строки */
.cta-form-card,.cta-form-card label,.cta-form-card .field label{color:var(--ink)}
.cta-form-card .field label{color:var(--ink-2)}
.cta-form.cta-band::after{left:0;right:auto;bottom:-70px;width:320px;height:200px;opacity:.12}
.accred{align-items:center}
.accred .tag{margin-top:0}

.cta-band::after{filter:brightness(0) invert(1);opacity:.1}

/* Логотипы партнёров-ссылки: ссылка занимает ячейку целиком */
.logos li a{display:flex;align-items:center;justify-content:center;width:100%;height:100%;padding:6px}
.logos li a img{max-width:100%;max-height:100%;width:auto;height:auto}

/* ===== Команда на главной (гайд §22): компактные карточки с фото и ссылкой на страницу сотрудника ===== */
.staff-mini li.card{padding:16px;margin:0}
.staff-mini a{display:flex;gap:14px;align-items:flex-start;color:var(--ink);text-decoration:none;width:100%}
.staff-mini img,.staff-mini .staff-ph{width:64px;height:64px;border-radius:50%;object-fit:cover;object-position:top;flex:0 0 64px;background:var(--accent-bg)}
.staff-mini .staff-ph{display:flex;align-items:center;justify-content:center;color:var(--accent);font-weight:600;font-size:18px}
.staff-mini strong{display:block;font-size:16px;font-weight:600;line-height:1.3;margin-bottom:4px;color:var(--ink)}
.staff-mini a:hover strong{color:var(--accent)}
.staff-mini .role{display:block;font-size:14px;color:var(--ink-2);line-height:1.45}
.alt .staff-mini li.card{background:#fff;border:1px solid var(--line)}
@media (max-width:900px){.staff-mini{grid-template-columns:1fr 1fr}}
@media (max-width:600px){.staff-mini{grid-template-columns:1fr}}

/* Водяной знак кометы — векторный: три ровные полосы, без вырезов */
.cta-band::after{background-image:url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 760 540%22%3E%3Cdefs%3E%3Cmask id=%22h%22%3E%3Crect width=%22760%22 height=%22540%22 fill=%22%23fff%22/%3E%3Ccircle cx=%22112%22 cy=%22150%22 r=%2237%22 fill=%22%23000%22/%3E%3C/mask%3E%3C/defs%3E%3Cg fill=%22%23fff%22 mask=%22url(%23h)%22 transform=%22rotate(28 120 150)%22%3E%3Ccircle cx=%22120%22 cy=%22150%22 r=%2286%22/%3E%3Crect x=%22120%22 y=%22118%22 width=%22540%22 height=%2264%22 rx=%2232%22/%3E%3Crect x=%22210%22 y=%22210%22 width=%22490%22 height=%2248%22 rx=%2224%22/%3E%3Crect x=%22250%22 y=%22284%22 width=%22450%22 height=%2240%22 rx=%2220%22/%3E%3C/g%3E%3C/svg%3E");filter:none;opacity:.12;width:380px;height:270px;left:12px;bottom:-70px}
@media (max-width:900px){.cta-band::after{width:230px;height:164px;left:0;bottom:-44px}}

/* Шапка секции в две колонки: заголовок слева, вводный текст справа */
.sec-head{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.25fr);gap:32px;align-items:end;margin:64px 0 8px}
.sec-head h2{margin:0}
.sec-head p{margin:0;max-width:none;color:var(--ink-2)}
.alt .sec-head{margin-top:48px}
@media (max-width:900px){.sec-head{grid-template-columns:1fr;gap:12px;margin-top:40px}}

/* Текст после сетки карточек: отступ сверху */
.grid + p,.kpis + p,ul.proof + p,.logos + p,.staff-mini + p,.reviews + h3,.grid + h3{margin-top:24px}

/* Пометки 05.09 17:04: логотип целиком водяным знаком в ленте с формой, шапка секции по верху, отступ в карточке с видео */
.cta-form.cta-band::after{background-image:url(/bitrix/templates/cometa26/img/logo-white.svg);filter:none;opacity:.08;left:40px;top:24px;bottom:auto;width:230px;height:84px}
.sec-head{align-items:start}
.review-video{gap:20px}
@media (max-width:900px){.cta-form.cta-band::after{width:160px;height:59px;left:20px;top:16px}}

.cta-form.cta-band::after{top:auto;bottom:24px;left:40px}
.cta-form-text{padding-bottom:110px}
@media (max-width:900px){.cta-form.cta-band::after{bottom:auto;top:16px}.cta-form-text{padding-bottom:0;padding-top:80px}}

/* ===== Пометки 05.09 18:03: нумерованные карточки, сплошной текст карточками, компактный калькулятор ===== */
ol.cards-num{counter-reset:cn;list-style:none;padding:0;margin:16px 0 0;max-width:none}
ol.cards-num li.card{counter-increment:cn;position:relative;padding:18px 20px 18px 62px;font-size:15px;line-height:1.5;color:var(--ink-2);margin:0}
ol.cards-num li.card::before{content:counter(cn);position:absolute;left:18px;top:16px;width:30px;height:30px;border-radius:50%;background:var(--accent-bg);color:var(--accent);font-weight:600;font-size:14px;display:flex;align-items:center;justify-content:center}
.card h3 a{color:inherit;text-decoration:none}.card h3 a:hover{color:var(--accent)}
.card .video{max-width:none;margin:12px 0 0}
form.calc{padding:20px 24px;gap:12px 24px;grid-template-columns:1.1fr .9fr}
form.calc fieldset{margin:0 0 6px}
form.calc legend{font-size:14px;margin-bottom:2px}
form.calc label{margin:2px 0;font-size:14px;align-items:center;flex-wrap:wrap}
form.calc input[type=radio],form.calc input[type=checkbox]{margin-top:0}
form.calc input[type=number]{max-width:84px;min-height:32px;padding:4px 10px;margin-left:6px;font-size:14px}
form.calc .calc-total{padding:14px 16px;position:sticky;top:16px}
.calc-sum{margin:8px 0 6px}.calc-sum b{font-size:24px}
form.calc + p{margin-top:20px}
@media (max-width:900px){form.calc{grid-template-columns:1fr;padding:16px}form.calc .calc-total{position:static}}

/* ===== Шапка (гайд §8): кнопка видна от 901 px, диапазоны плотности; активный раздел акцентом ===== */
.site-header nav > ul > li.is-active > a{color:var(--accent)}
@media (min-width:1200px) and (max-width:1320px){.site-header > .container > .btn{display:inline-flex;padding:0 18px;font-size:14px}.site-header nav > ul{gap:14px}.site-header .phone{font-size:14px}}
@media (min-width:901px) and (max-width:1199px){
  .site-header > .container > .btn{display:inline-flex;padding:0 14px;font-size:13.5px;min-height:38px}
  .site-header nav > ul{gap:8px}
  .site-header nav > ul > li > a{font-size:13.5px}
  .site-header .container{gap:12px}
  .site-header .phone{width:40px;height:40px;border-radius:50%;background:var(--box);display:flex;align-items:center;justify-content:center;font-size:0;color:transparent;margin-left:auto}
  .site-header .phone::before{content:"";width:20px;height:20px;background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232468C9' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 4h4l2 5-2.5 1.5a11 11 0 0 0 5 5L15 13l5 2v4a2 2 0 0 1-2 2A16 16 0 0 1 3 6a2 2 0 0 1 2-2'/%3E%3C/svg%3E") no-repeat center/contain}
}
.text-cols{columns:2;column-gap:40px;max-width:none;margin:0 0 16px}
.text-cols p{break-inside:avoid;max-width:none;margin:0 0 12px}
.text-cols p:last-child{margin-bottom:0}
@media (max-width:900px){.text-cols{columns:1}}

/* ===== Пометки 05.09 18:10–18:29: меню по наведению, маркеры списков, текстовые блоки плашками ===== */
@media (min-width:901px){.has-sub{position:relative}.has-sub::after{content:"";position:absolute;left:0;right:0;top:100%;height:12px}}
main ul:not([class]){list-style:none;padding-left:0;margin:0 0 16px}
main ul:not([class]) > li{position:relative;padding-left:22px;margin-bottom:8px}
main ul:not([class]) > li::before{content:"";position:absolute;left:2px;top:.55em;width:8px;height:8px;border-radius:50%;background:var(--accent)}
.card ul:not([class]) > li,.tarif ul:not([class]) > li{padding-left:18px}
.card ul:not([class]) > li::before,.tarif ul:not([class]) > li::before{width:6px;height:6px;top:.6em;left:2px}
.text-cols{columns:auto;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px 16px}
.text-cols p{background:var(--box);border-radius:12px;padding:14px 18px;margin:0;font-size:15px;line-height:1.55;max-width:none;break-inside:auto}
.alt .text-cols p{background:#fff;border:1px solid var(--line)}
@media (max-width:900px){.text-cols{grid-template-columns:1fr}}

/* ===== Иллюстрации к коротким текстовым секциям (как первый экран главной) ===== */
.ill{background:var(--box);border-radius:var(--r-plate);padding:16px;min-width:0}
.alt .ill{background:#fff;border:1px solid var(--line)}
.ill svg{width:100%;height:auto;display:block}
.split > .ill{align-self:center}
@media (max-width:900px){.ill{max-width:420px}}

/* ===== Пометки 05.09 вечер: документы, карта сайта, первый экран, списки, тексты, тарифы ===== */
.hero-plain{grid-template-columns:1fr;padding-bottom:8px}
.doc{max-width:80ch;font-size:16px;line-height:1.65;color:var(--ink-2)}
.doc h2{font-size:22px;margin:32px 0 10px}.doc h3{font-size:17px;margin:20px 0 6px}
.doc p,.doc li{max-width:none}
.sitemap-list .card h2{font-size:20px;margin:0 0 10px}.sitemap-list .card h2 a{color:var(--ink);text-decoration:none}.sitemap-list .card ul{list-style:none;padding:0;margin:0;font-size:14px;max-width:none}.sitemap-list .card li{margin:0 0 6px}
.hero .hero-form{max-width:none;width:100%}
.field label:has(input[type=checkbox]){display:block;line-height:1.4}.field label input[type=checkbox]{vertical-align:middle;margin:0 8px 0 0}
nav.rubrics ul{list-style:none;padding:0;margin:0}nav.rubrics li::before{display:none}
main ul:not([class]){list-style:none;padding-left:0;max-width:none}
main ul:not([class]) > li{position:relative;padding-left:22px;margin-bottom:8px}
main ul:not([class]) > li::before{content:"";position:absolute;left:2px;top:.55em;width:8px;height:8px;border-radius:50%;background:var(--accent)}
.card ul:not([class]) > li::before{top:.5em;width:6px;height:6px}
.text-cols{display:grid;grid-template-columns:1fr 1fr;gap:12px 16px;columns:auto}
.text-cols p{background:var(--box);border-radius:12px;padding:14px 18px;margin:0;font-size:15px;line-height:1.55;color:var(--ink-2)}
.alt .text-cols p{background:#fff;border:1px solid var(--line)}
ul.proof.proof-grid img{object-fit:contain;object-position:top;background:#fff}
.tarif .btn{margin-top:auto;align-self:flex-start}
.tarif{display:flex;flex-direction:column}
.has-sub{position:relative}.has-sub::after{content:"";position:absolute;left:0;right:0;top:100%;height:10px}
ul.grid.cards-ul{list-style:none;padding:0;margin:16px 0 0}
ul.grid.cards-ul > li.card{padding:18px 20px;font-size:15px;line-height:1.5;color:var(--ink-2);margin:0}
ul.grid.cards-ul > li.card::before{display:none}
ul.grid.cards-ul > li.card strong{display:block;color:var(--ink);margin-bottom:4px}
ol.timeline.compact li{grid-template-columns:64px 1fr;padding-bottom:14px;align-items:baseline}
ol.timeline.compact b{font-size:18px}
ol.timeline.compact span{font-size:15px;color:var(--ink-2)}
@media (max-width:900px){.text-cols{grid-template-columns:1fr}}

/* ===== Иконки в карточках-тезисах (гайд §6), документы без плашек ===== */
.card .ic{width:36px;height:36px;border-radius:10px;background:var(--accent-bg);color:var(--accent);display:flex;align-items:center;justify-content:center;margin:0 0 12px}
.doc p{max-width:none;margin:0 0 14px}.doc .text-cols{display:block}.doc .text-cols p{background:none;border:0;padding:0;font-size:16px}
.sitemap-list .card li:first-child a{font-weight:600}

/* ===== Отраслевые секции: карточки кейсов и отзыв; обложки-иллюстрации у статей блога ===== */
.industry-review{margin-top:16px}
.industry-review .review-card{grid-column:1 / -1;max-width:66ch}
.ill-thumb{aspect-ratio:16/9;border-radius:10px;overflow:hidden;background:var(--accent-bg);margin:0 0 12px}
.ill-thumb svg{width:100%;height:100%;display:block}
.card .ill-thumb + h3{margin-top:0}

/* ===== Обложки кейсов — иллюстрации в стиле гайда (плашки с цифрами) ===== */
.case-cover-ill{aspect-ratio:16/9;background:var(--box);overflow:hidden;display:block}
.case-cover-ill svg{width:100%;height:100%;display:block}
.case-card .case-cover-ill{border-radius:0}
figure.case-cover .case-cover-ill{border-radius:var(--r-card);border:1px solid var(--line)}

/* ===== Иконки на текстовых плашках; история компании карточками ===== */
.text-cols p .ic{margin-bottom:10px}
ol.timeline.compact{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:12px;border-left:0;padding:0;margin:16px 0 0}
ol.timeline.compact li{display:flex;flex-direction:column;gap:6px;padding:16px 18px;background:var(--box);border:0;border-radius:12px;position:static}
ol.timeline.compact li::before{display:none}
ol.timeline.compact b{font-size:26px;font-weight:400;line-height:1.1}
ol.timeline.compact span{font-size:14px;line-height:1.45;color:var(--ink-2)}
.alt ol.timeline.compact li{background:#fff;border:1px solid var(--line)}
@media (max-width:1024px){ol.timeline.compact{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media (max-width:600px){ol.timeline.compact{grid-template-columns:1fr 1fr}}

/* ===== Пометки 22:52–22:59: тарифы в одну линию, отступы у кнопок и после блока цены, иконки в списках ===== */
.tarif .note{margin-top:auto;padding-top:12px}
.tarif .btn{margin-top:12px}
section > a.btn,.grid + a.btn,p + a.btn{margin-top:20px}
.price-box{margin-bottom:16px}.price-box + p{margin-top:16px}
ul.grid.cards-ul > li.card .ic{margin-bottom:10px}

/* Базовый стиль иконки-плашки везде (карточки, текстовые плашки, списки) */
.ic{width:36px;height:36px;border-radius:10px;background:var(--accent-bg);color:var(--accent);display:flex;align-items:center;justify-content:center;margin:0 0 12px;flex:0 0 auto}
.text-cols p .ic{margin-bottom:10px}

/* ===== Кейсы в формате главной везде; факты первого экрана горизонтально; цифры акцентом; правки отзывов и тарифов ===== */
.hl{color:var(--accent);font-weight:600;white-space:nowrap}
.hero-facts{margin:8px 0 0}.hero-facts .cards-ul{grid-template-columns:repeat(3,minmax(0,1fr))}
.hero ul.cards-ul{grid-template-columns:1fr}
.case-home > blockquote,.case-home > .review{margin-top:10px}
.case-home ul.proof{margin-top:10px;grid-template-columns:1fr}
.case-home ul.proof img{aspect-ratio:16/9}
.case-home .case-head{display:flex;flex-direction:column;gap:10px}
.card blockquote.review{margin-top:12px}
blockquote.review:not(:has(img.avatar)){grid-template-columns:1fr}
.tarif .note{min-height:5.5em}
.grid.two .review-card{align-self:stretch}
@media (max-width:900px){.hero-facts .cards-ul{grid-template-columns:1fr}}

/* Отступы между соседними сетками плашек */
ol.cards-num,ul.cards-ul,.grid{margin-bottom:0}
.cards-num + .text-cols,.cards-ul + .text-cols,.grid + .text-cols,.text-cols + .grid,.text-cols + .cards-ul,.text-cols + ol.cards-num,.grid + .grid,.cards-ul + .grid,.grid + ul.cards-ul{margin-top:16px}
.text-cols{margin-top:16px}
.sec-head + .text-cols,h2 + .text-cols,p + .text-cols{margin-top:0}
/* v46: case pages — screenshot grid, index cards in home format, blog article, stub pages */
.shots{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin:24px 0}
.shots .case-shot{margin:0;max-width:none;display:flex;flex-direction:column}
.shots .case-shot img{aspect-ratio:16/10;object-fit:cover;object-position:top;cursor:zoom-in}
.case-shot img{cursor:zoom-in}
@media (max-width:700px){.shots{grid-template-columns:1fr}}
.case-grid > .case-home{margin:0;background:#fff}
.case-home .card-cover{margin-top:auto;border-radius:12px;border:1px solid var(--line);aspect-ratio:16/9}
.case-home .case-text{font-size:14px;color:var(--muted)}
.page-content .col-md-8{max-width:780px}
.page-content .small{font-size:14px;color:var(--muted);margin-bottom:20px}
.page-content .small a{color:var(--accent)}
.page-content h2{margin-top:36px}
.page-content .breadcrumb{display:none}
.page-simple{max-width:820px;padding:16px 0 40px}
.page-simple .cards-ul{margin-top:16px}
.faq .grid.two .card h3{font-size:17px;margin:0 0 8px}
.faq .grid.two .card p{margin:0;color:var(--ink-2)}
.faq{max-width:none}
/* v47: shots — contain instead of cover */
.shots .case-shot img{object-fit:contain;object-position:center;background:var(--box);padding:6px;box-sizing:border-box}
/* v48: блог — страница статьи, карточки, плашки кода, врезки, FAQ, услуги по теме */
.article{max-width:none}
.art-head{max-width:820px;padding:8px 0 8px}
.art-head h1{font-size:40px;font-weight:300;line-height:1.15;margin:8px 0 14px;letter-spacing:-.01em}
.art-head .lead{margin:0 0 18px}
.art-meta{display:flex;align-items:center;gap:10px;flex-wrap:wrap;font-size:14px;color:var(--muted)}
.art-meta img{width:40px;height:40px;border-radius:50%;object-fit:cover;object-position:top;border:1px solid var(--line)}
.art-meta a{color:var(--ink);text-decoration:none;font-weight:500}.art-meta a:hover{color:var(--accent)}
.art-meta .sep{color:var(--line)}
.art-grid{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:48px;align-items:start;margin:24px 0 8px}
.art-body{max-width:760px;min-width:0}
.art-body p,.art-body li{font-size:16px;line-height:1.65;max-width:none}
.art-body h2{font-size:28px;font-weight:300;margin:40px 0 14px;line-height:1.2}
.art-body h3{font-size:22px;font-weight:500;margin:28px 0 10px;line-height:1.25}
.art-body h4{font-size:17px;font-weight:600;margin:20px 0 8px}
.art-body ul,.art-body ol{padding-left:22px;margin:0 0 16px}
.art-body li{margin:0 0 6px}
.art-body .art-sec{margin:0;padding:0}
.art-body .art-sec:first-of-type h2{margin-top:8px}
.art-body a{color:var(--accent)}
.art-body code{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;font-size:.9em;background:var(--accent-bg);color:var(--ink);padding:2px 6px;border-radius:6px;white-space:nowrap}
.code-plate{background:var(--box);border:1px solid var(--line);border-radius:12px;margin:16px 0 20px;overflow:hidden}
.code-plate .code-lab{display:block;font-size:12px;letter-spacing:.06em;text-transform:uppercase;color:var(--muted);padding:8px 16px 0;font-weight:500}
.code-plate pre{margin:0;padding:10px 16px 16px;overflow-x:auto;font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;font-size:13.5px;line-height:1.55;color:var(--ink);white-space:pre}
.code-plate pre code{background:none;padding:0;white-space:pre;font-size:inherit;color:inherit}
.callout{background:var(--accent-bg);border-radius:12px;padding:16px 20px;margin:16px 0 20px}
.callout-warn{background:#FFF4E0}
.callout .callout-lab{font-size:12px;letter-spacing:.06em;text-transform:uppercase;color:var(--accent);font-weight:600;margin:0 0 8px}
.callout-warn .callout-lab{color:#9A5B00}
.callout p:last-child,.callout ul:last-child{margin-bottom:0}
.callout ul{padding-left:20px}
.toc{background:var(--box);border-radius:12px;padding:16px 20px;margin:0 0 24px}
.toc .lab{margin:0 0 8px;display:block}
.toc ol{margin:0;padding-left:20px;columns:2;column-gap:28px}
.toc li{font-size:14px;line-height:1.4;margin:0 0 6px;break-inside:avoid}
.toc a{color:var(--ink);text-decoration:none}.toc a:hover{color:var(--accent)}
.faq-list{margin:8px 0 20px;border-top:1px solid var(--line)}
.faq-item{border-bottom:1px solid var(--line);padding:0}
.faq-item summary{cursor:pointer;list-style:none;padding:14px 36px 14px 0;font-weight:600;font-size:16px;position:relative;line-height:1.35}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:"";position:absolute;right:6px;top:18px;width:9px;height:9px;border-right:1.5px solid var(--accent);border-bottom:1.5px solid var(--accent);transform:rotate(45deg);transition:transform .15s}
.faq-item[open] summary::after{transform:rotate(225deg);top:22px}
.faq-a{padding:0 0 14px}
.faq-a p:last-child{margin-bottom:0}
.art-fig{margin:20px 0 24px}
.art-fig img{width:100%;height:auto;display:block;border-radius:12px;border:1px solid var(--line);background:#fff}
.art-fig figcaption{font-size:13px;color:var(--muted);margin-top:8px}
.art-body .tw{margin:12px 0 20px}
.art-body table{width:100%;border-collapse:collapse;font-size:14px}
.art-body th,.art-body td{padding:10px 12px;border-bottom:1px solid var(--line);text-align:left;vertical-align:top}
.art-body th{background:var(--box);font-weight:600}
.art-side{position:sticky;top:88px}
.svc-side{padding:18px}
.svc-side .lab{display:block;margin-bottom:10px}
.svc-list{list-style:none;padding:0;margin:0}
.svc-list li{display:flex;gap:10px;align-items:center;padding:8px 0;border-top:1px solid var(--line)}
.svc-list li:first-child{border-top:0;padding-top:0}
.svc-list svg{flex:0 0 20px;color:var(--accent)}
.svc-list a{color:var(--ink);text-decoration:none;font-size:15px;font-weight:500;line-height:1.3}
.svc-list a:hover{color:var(--accent)}
.svc-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.svc-card .ic{display:inline-flex;width:36px;height:36px;border-radius:10px;background:var(--accent-bg);color:var(--accent);align-items:center;justify-content:center;margin-bottom:10px}
.svc-card strong{display:block;font-size:16px;font-weight:600;margin-bottom:6px}
.svc-card strong a{color:var(--ink);text-decoration:none}.svc-card strong a:hover{color:var(--accent)}
.svc-card p{font-size:14px;color:var(--muted);margin:0}
.cta-light{background:var(--box);border-radius:16px;padding:32px 36px;margin:40px 0 8px;display:grid;grid-template-columns:minmax(0,1fr) auto;gap:24px;align-items:center;box-shadow:none}
.cta-light h2{margin:4px 0 8px;font-size:26px}
.cta-light p{margin:0;max-width:640px;color:var(--ink-2)}
.cta-light .cta-row{flex-wrap:wrap}
.post-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.post-card{padding:16px}
.post-card > a{text-decoration:none;color:var(--ink);display:flex;flex-direction:column;gap:6px;height:100%}
.post-card .lab{margin-top:4px}
.post-card h3{font-size:16px;font-weight:600;line-height:1.3;margin:0}
.post-card p{font-size:14px;color:var(--muted);margin:0;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.post-card .post-meta{font-size:12px;color:var(--muted);margin-top:auto;padding-top:6px}
.post-card:hover h3{color:var(--accent)}
@media (max-width:1100px){.art-grid{grid-template-columns:1fr;gap:24px}.art-side{position:static}.svc-grid,.post-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:700px){.art-head h1{font-size:30px}.art-body h2{font-size:24px}.toc ol{columns:1}.svc-grid,.post-grid{grid-template-columns:1fr}.cta-light{grid-template-columns:1fr;padding:24px}}
/* v49: подвал по гайду §31, флагман в меню, посадочная флагмана, правки по пометкам */
.site-footer{padding:36px 0 44px}
.site-footer .fcols{display:grid;grid-template-columns:1.35fr 1fr .8fr 1.1fr;gap:32px}
.site-footer .fbrand{display:flex;align-items:center;gap:10px;color:var(--ink);font-weight:600;font-size:15px;margin-bottom:12px}
.site-footer .fmark{flex:0 0 34px}
.site-footer .flab{font-size:12px;letter-spacing:.06em;text-transform:uppercase;color:var(--muted);font-weight:500;margin:0 0 10px}
.site-footer .fphone{font-size:18px;font-weight:600;color:var(--ink)}
.site-footer .fmenu{display:grid;grid-template-columns:1fr 1fr;gap:6px 16px;margin:0;padding:0;list-style:none}
.site-footer .fmenu li{margin:0}
.site-footer .fflag{display:flex;flex-direction:column;gap:4px;background:var(--accent-bg);border-radius:12px;padding:14px 16px;text-decoration:none;color:var(--ink);margin:0 0 14px;border:1px solid transparent}
.site-footer .fflag:hover{border-color:var(--accent)}
.site-footer .fflag strong{font-size:15px;font-weight:600}
.site-footer .fflag span{font-size:13px;color:var(--muted)}
.site-footer .fflag .fprice{font-size:18px;font-weight:600;color:var(--accent);margin-top:2px}
.site-footer .fdocs{font-size:13px}
@media (max-width:1000px){.site-footer .fcols{grid-template-columns:1fr 1fr}}
@media (max-width:600px){.site-footer .fcols{grid-template-columns:1fr;gap:24px}}
/* пункт флагмана в подменю «Разработка» */
.sub .sub-flag a{background:var(--accent-bg);color:var(--accent);font-weight:600;border-radius:8px;margin:4px 8px 6px;display:flex;justify-content:space-between;gap:12px}
.sub .sub-flag a span{font-weight:500;color:var(--ink-2)}
.sub .sub-flag a:hover{background:var(--accent);color:#fff}.sub .sub-flag a:hover span{color:#fff}
/* посадочная флагмана */
.flag-hero .lead{margin-bottom:16px}
.flag-price{margin:0 0 14px;padding:18px 22px}
.flag-price .price{font-size:36px}
.flag-hero .cta-row .link{margin-right:18px}
.flag-kpis{margin-top:8px}
.cards-num li .ic{display:inline-flex;width:36px;height:36px;border-radius:10px;background:var(--accent-bg);color:var(--accent);align-items:center;justify-content:center;margin-bottom:8px}
.split .ill{max-width:520px;width:100%}
.split > div > .price-box{margin-bottom:16px}
/* пометки 06.09: отзыв в кейсе, подпись под формой, sec-head в статьях */
blockquote.review{margin-top:24px}
.hero-form .hero-form-note{margin-top:14px;padding-top:12px;border-top:1px solid var(--line);line-height:1.5}
.cta-form-card .hero-form-note{margin-top:14px}
.article ~ section .sec-head,.container > section .sec-head.one{grid-template-columns:1fr;gap:6px}
.article ~ section .sec-head p{max-width:760px}
.art-meta{max-width:760px}
.plain-list{list-style:none;padding:0;margin:0}
.plain-list li{padding:10px 0;border-top:1px solid var(--line);font-size:15px;color:var(--ink-2)}
.plain-list li:first-child{border-top:0}
.plain-list strong{color:var(--ink)}
.cta-form-card .btn{white-space:nowrap}
/* v51: FAQ внутри статьи — компактные вкладки */
.art-body details{padding:12px 16px;margin:0 0 8px}
.art-body details summary{padding:0;font-size:16px;line-height:1.35}
.art-body details summary h3{font-size:16px;font-weight:600;margin:0;line-height:1.35;display:inline}
.art-body details summary::after{font-size:22px;line-height:1}
.art-body .faq-a{padding:0}
.art-body .faq-a p{margin:10px 0 0;font-size:15px}
.art-body .faq-a ul,.art-body .faq-a ol{margin:8px 0 0}
/* v52: пометки 1082120/1082112 — подводка секции на всю ширину блока, в одну колонку */
.sec-head{grid-template-columns:1fr;gap:8px;align-items:start}
.sec-head p{max-width:none}
.article ~ section .sec-head p{max-width:none}
/* v53: карточки сотрудников — факты плашками, единый первый экран */
.facts-plates{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin:4px 0 22px}
.facts-plates li{background:var(--box);border-radius:12px;padding:10px 14px;display:flex;flex-direction:column;gap:2px;font-size:14px}
.facts-plates .l{font-size:12px;letter-spacing:.05em;text-transform:uppercase;color:var(--muted);font-weight:500}
.facts-plates .v{color:var(--ink);line-height:1.4}
.facts-plates .v a{color:var(--accent);text-decoration:none}
.hero.person .lead{max-width:600px}
.hero.person .portrait img{max-width:440px}
.hero.person + section .text-cols{margin-top:0}
@media (max-width:600px){.facts-plates{grid-template-columns:1fr}}
/* v54: плашки фактов по сетке лида, таймлайн с иллюстрацией сверху */
.hero.person .facts-plates{padding:0;margin-left:0;max-width:600px}
.hero.person .facts-plates li{margin:0}
.split.split-top{align-items:start}
.split.split-top > .ill{align-self:start;position:sticky;top:96px}
/* v55: заголовки у плашек, иконка и заголовок в одну строку (пометки 1082130, 1082132) */
.ch{display:flex;align-items:center;gap:12px;margin:0 0 8px}
.ch .ic,.card .ch .ic,ul.grid.cards-ul > li.card .ch .ic,.cards-num li .ch .ic,.text-cols p .ch .ic{margin:0;flex:0 0 36px;display:inline-flex}
.ch h3,.ch .pt{margin:0;font-size:16px;font-weight:600;line-height:1.3}
span.ch{display:flex}
.cards-ul li h3{font-size:16px;font-weight:600;margin:0 0 6px;line-height:1.3}
.cards-ul li p{margin:0;font-size:15px;line-height:1.5;color:var(--ink-2)}
.text-cols p .pt{display:block;margin:0 0 6px;color:var(--ink)}
.text-cols p .ch .pt{margin:0}
/* v56: скриншот и логотип портала на странице Зверева */
.portal-fig{margin:14px 0 4px;max-width:520px}
.portal-fig figcaption{display:flex;align-items:center;gap:10px}
.portal-fig .portal-logo{width:62px;height:auto;border:0;border-radius:0}
ol.steps li > figure,ol.steps li > .art-fig{grid-column:2}
.portal-fig img{width:100%;max-width:520px}
/* v53: цитата внутри карточки кейса; врезка вне статей */
.case-quote{border-left:2px solid var(--accent);padding:2px 0 2px 12px;margin:10px 0 0;font-size:14px;color:var(--ink-2)}
.case-quote cite{display:block;font-style:normal;font-size:12px;color:var(--muted);margin-top:4px}
section > .callout{max-width:820px}
/* v58: видеокарточки (плейлисты Rutube, интервью) */
.video-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.video-card{padding:12px 12px 16px}
.video-card > a{display:block;color:var(--ink);text-decoration:none}
.video-card .vcover{position:relative;display:block;aspect-ratio:16/9;border-radius:10px;overflow:hidden;background:var(--accent-bg);margin:0 0 12px}
.video-card .vcover img{width:100%;height:100%;object-fit:cover;display:block}
.video-card .vbadge{position:absolute;left:10px;bottom:10px;background:rgba(27,36,48,.82);color:#fff;font-size:13px;font-weight:600;padding:4px 10px;border-radius:8px}
.video-card h3{font-size:16px;font-weight:600;margin:0 4px 6px;line-height:1.3}
.video-card p{font-size:14px;color:var(--muted);margin:0 4px}
.video-card > a:hover h3{color:var(--accent)}
.video-soon .vcover.ph{display:flex;align-items:center;justify-content:center;text-align:center;padding:16px}
.video-more{margin:14px 0 0}
@media (max-width:900px){.video-grid{grid-template-columns:1fr}}
/* v60: компетенции и спектр работ сотрудников плашками */
.cards-ul.skills li.card{padding:14px 16px}
.cards-ul.skills .ch{margin:0;align-items:flex-start}
.cards-ul.skills .ch h3{font-size:15px;font-weight:500;line-height:1.4}
/* v61: квиз-калькулятор */
.quiz{border:2px solid var(--accent);border-radius:var(--r-plate);padding:24px;background:#fff;max-width:none}
.alt .quiz{background:#fff}
.quiz-head{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;margin-bottom:20px}
.quiz-prog{flex:1;min-width:0}
.quiz-bar{height:8px;border-radius:4px;background:var(--box);overflow:hidden}
.quiz-bar span{display:block;height:100%;width:8%;background:linear-gradient(90deg,var(--accent),#5B93E6);border-radius:4px;transition:width .35s}
.quiz-bonus{display:flex;align-items:baseline;gap:8px;margin-top:8px;flex-wrap:wrap}
.quiz-bonus .lab{color:var(--accent)}
.quiz-bonus b{font-weight:600;font-size:14px;color:var(--ink)}
.quiz-stepno{font-size:13px;color:var(--muted);white-space:nowrap}
.quiz-body h3{font-size:22px;font-weight:500;margin:0 0 6px}
.quiz-hint{font-size:13px;color:var(--muted);margin:0 0 10px}
.quiz-opts{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin:14px 0 8px}
.quiz-opt{text-align:left;border:1px solid var(--line);background:var(--box);border-radius:12px;padding:14px 16px;cursor:pointer;display:flex;flex-direction:column;gap:4px;font:inherit;color:var(--ink);min-height:74px;transition:border-color .15s,background .15s}
.quiz-opt:hover{border-color:var(--accent)}
.quiz-opt.on{border-color:var(--accent);background:var(--accent-bg);box-shadow:inset 0 0 0 1px var(--accent)}
.quiz-opt .q-t{font-weight:600;font-size:15px;line-height:1.3}
.quiz-opt .q-s{font-size:13px;color:var(--muted)}
.quiz-nav{display:flex;justify-content:space-between;gap:12px;margin-top:16px}
.quiz-nav .quiz-next{margin-left:auto}
.quiz-final{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(0,.9fr);gap:28px}
.quiz-est h3{font-size:20px}
.quiz-gift{background:var(--accent-bg);border-radius:14px;padding:20px}
.quiz-gift .checks{margin:6px 0 14px}
.quiz-gift .checks li.top{background:#fff;border-radius:10px;padding:10px 12px;margin-top:8px}
.quiz-gift .checks li.top strong{color:var(--accent)}
.quiz-form .field{margin-bottom:10px}
.quiz-form .hp{position:absolute;left:-9999px}
.quiz-form .hero-form-note{margin-top:10px}
.quiz-modal{position:fixed;inset:0;background:rgba(27,36,48,.55);z-index:1000;display:flex;align-items:flex-start;justify-content:center;padding:40px 16px;overflow:auto}
.quiz-modal[hidden]{display:none}
.quiz-modal .quiz-dialog{background:#fff;border-radius:var(--r-plate);max-width:960px;width:100%;position:relative;padding:8px}
.quiz-modal .quiz{border:0;padding:24px}
.quiz-close{position:absolute;right:14px;top:10px;width:36px;height:36px;border:0;background:var(--box);border-radius:50%;font-size:22px;line-height:1;cursor:pointer;color:var(--ink);z-index:2}
body.quiz-open{overflow:hidden}
@media (max-width:900px){.quiz-opts{grid-template-columns:1fr 1fr}.quiz-final{grid-template-columns:1fr}.quiz{padding:18px}}
@media (max-width:600px){.quiz-opts{grid-template-columns:1fr}.quiz-head{flex-direction:column;align-items:stretch}.quiz-modal{padding:12px}}
/* v62: квиз — скрытые кнопки, галочка бонуса */
.quiz-nav .btn[hidden]{display:none}
.quiz-gift .checks li.top{padding:10px 12px 10px 36px;position:relative}
.quiz-gift .checks li.top::before{left:12px;top:13px}
.quiz-modal .quiz-dialog{margin:auto}
/* v63: пометки 1082138/1082142 */
#calc .quiz + p,.quiz + p{margin-top:20px}
.site-footer .fbrand img{height:32px;width:auto;display:block}
/* v64: плавающая иконка сообщения → MAX / форма */
.chat-widget{position:fixed;right:20px;bottom:20px;z-index:900}
.chat-fab{width:56px;height:56px;border-radius:50%;border:0;background:var(--accent);color:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 8px 24px rgba(36,104,201,.35);transition:transform .15s,background .15s}
.chat-fab:hover{background:var(--accent-hover);transform:translateY(-1px)}
.chat-widget.open .chat-fab{background:var(--ink)}
.chat-panel{position:absolute;right:0;bottom:68px;width:320px;max-width:calc(100vw - 40px);background:#fff;border:1px solid var(--line);border-radius:16px;box-shadow:0 16px 40px rgba(27,36,48,.18);padding:16px}
.chat-panel[hidden]{display:none}
.chat-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:12px}
.chat-head strong{font-size:16px}
.chat-close{border:0;background:var(--box);width:30px;height:30px;border-radius:50%;font-size:20px;line-height:1;cursor:pointer;color:var(--ink)}
.chat-max{width:100%;justify-content:center;gap:10px;background:#5B3FE0}
.chat-max:hover{background:#4a31c4}
.chat-max .max-ic{display:inline-flex;align-items:center;justify-content:center;background:#fff;color:#5B3FE0;font-weight:700;font-size:11px;letter-spacing:.04em;border-radius:6px;padding:3px 6px}
.chat-alt{font-size:13px;color:var(--muted);text-align:center;margin:10px 0}
.chat-form .field{margin-bottom:8px}
.chat-form textarea{width:100%;border:1px solid var(--line);border-radius:10px;padding:10px 12px;font:inherit;font-size:14px;resize:vertical;min-height:70px}
.chat-form .btn{width:100%;justify-content:center}
.chat-form .form-msg{font-size:13px;margin:6px 0 0}
@media (max-width:900px){.chat-widget{bottom:84px;right:14px}.chat-fab{width:52px;height:52px}}
/* v66: иконка VC.ru, фото в обложках карточек кейса */
.vc-link{display:inline-flex;align-items:center;gap:6px;text-decoration:none;color:var(--ink)}
.vc-link .vc-ic{display:inline-flex;align-items:center;justify-content:center;width:22px;height:22px;border-radius:5px;background:#E8462B;color:#fff;font-weight:700;font-size:11px;line-height:1;letter-spacing:-.02em}
.vc-link:hover{color:var(--accent)}
.case-cover-ill img{width:100%;height:100%;object-fit:cover;display:block}
figure.case-cover img{width:100%;height:auto;border-radius:var(--r-card);border:1px solid var(--line);display:block}
.card > ul.proof{margin-top:12px}
/* v67: пометка 1082144 — чипы рубрик, ряд соцсетей в подвале */
nav.rubrics li,.rubrics li{padding:0;margin:0}
nav.rubrics li::before{display:none}
.site-footer .social{list-style:none;padding:0;margin:14px 0 0;display:flex;gap:8px}
.site-footer .social li{margin:0;padding:0}.site-footer .social li::before{display:none}
.site-footer .soc{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:10px;color:#fff;text-decoration:none;font-weight:700;font-size:13px;letter-spacing:-.02em;transition:transform .15s,opacity .15s}
.site-footer .soc:hover{transform:translateY(-1px);opacity:.9;color:#fff}
.soc-vk{background:#0077FF}.soc-rutube{background:#100943}.soc-vc{background:#E8462B}.soc-tenchat{background:#FF3E4F}.soc-dzen{background:#1B2430}
main nav.rubrics ul:not([class]) > li{padding:0;margin:0}
main nav.rubrics ul:not([class]) > li::before{display:none}
.soc-tg{background:#27A7E7}
