:root {
    --bg: #f7f8fa;
    --card: #ffffff;
    --txt: #0f172a;
    --muted: #475569;
    --line: #e2e8f0;
    --brand: #0ea5e9;
    --brand-dark: #0284c7;
    --ok: #10b981;
}
.border2 {
	border: 1px solid var(--line);
}
.border-radius {
	    border-radius: 18px;
}
.bg-white {
	background: var(--card);
}
.box-shadow {
	box-shadow: 0 6px 20px rgb(2 6 23 / 4%);
}
.pd16 {
	padding: 16px;
}
.pd20 {
	padding: 20px;
}
.grid-2 {
	gap:12px;
	grid-template-columns: calc(50% - 6px) calc(50% - 6px);
}
.wcard h3 {
	margin: 6px 0 8px;
	font-size: 18px
}
.wcard p {
	color: var(--muted);
	font-size: 15px
}
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--muted);
	letter-spacing: .3px;
	text-transform: uppercase
}
.eyebrow a {
	color: var(--muted);
}
.eyebrow p {
	    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.eyebrow a:hover {
	color:var(--chervoniy);
}
.eyebrow .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
}
.expert-head {
	display: flex;
	align-items: center;
}
.avatar {
	width: 100%;
	max-width: 80px;
	margin-right: 15px;
}
.avatar img {
	border-radius: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
	display: block;
	max-width: 100%;
}
.expert-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 10px 0
}
.expert-badge {
	background: #eef2ff;
	color: var(--siniy);
	border: 1px solid #e0e7ff;
	padding: 4px 8px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 12px
}
.badge2 {
	color: #fff;
	padding: 4px 8px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 12px;
	white-space: nowrap;
	text-transform: uppercase;
}
.step .num {
	font-weight: 800;
	font-size: 12px;
	letter-spacing: .4px;
	color: var(--brand);
	display: inline-flex;
	text-transform: uppercase;
	    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.chip3 {
	padding: 8px 12px;
	border-radius: 12px;
	color:#fff;
	font-weight: 600;
	font-size: 14px
}
.project {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 18px;
	overflow: hidden;
	display: flex;
	flex-direction: column
}
.shot {
	height: 220px;
	background: linear-gradient(180deg, #f8fafc, #eef2f7);
	border-bottom: 1px solid var(--line);
	display: grid;
	overflow: hidden
}
.shot img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}
.shot svg {
	width: 74%;
	max-width: 540px;
	height: auto
}
.project .body {
	padding: 16px
}

:root {
	/* Общие токены */
	--radius-lg: 20px;
	--radius-md: 16px;
	--radius-sm: 12px;
	--shadow: 0 8px 30px rgba(0, 0, 0, .15);
	--font: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Inter, Arial, sans-serif;
	/* Светлая тема по умолчанию */
	--bg: #f6f7fb;
	--surface: #ffffff;
	--panel: #ffffff;
	--text: #0b1220;
	--muted: #5b6475;
	--ring: #e6e8ee;
	--accent: #3b82f6;
	--ok: #10b981;
	--warn: #f59e0b;
	--bad: #ef4444;
	--chip: rgba(0, 0, 0, .04);
	--bar1-from: rgba(59, 130, 246, .8);
	--bar1-to: rgba(59, 130, 246, .35);
	--bar1-stroke: #1e3a8a;
	--input-bg: #f8fafc;
	--btn-bg: #0f172a;
	--btn-text: #ffffff;
}
:root[data-theme="dark"], body.dark {
	--bg: #0b1220;
	--surface: #0f172a;
	--panel: #0f172a;
	--text: #e5e7eb;
	--muted: #94a3b8;
	--ring: #1f2937;
	--accent: #60a5fa;
	--ok: #10b981;
	--warn: #f59e0b;
	--bad: #ef4444;
	--chip: rgba(255, 255, 255, .06);
	--bar1-from: rgba(59, 130, 246, .85);
	--bar1-to: rgba(59, 130, 246, .3);
	--bar1-stroke: #1e3a8a;
	--input-bg: #0b1220;
	--btn-bg: #111827;
	--btn-text: #e5e7eb;
}
@media (prefers-color-scheme: dark) {
	:root:not([data-theme="light"]) {
		color-scheme: dark;
	}
}
@media (prefers-color-scheme: light) {
	:root:not([data-theme="dark"]) {
		color-scheme: light;
	}
}

.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding: 16px 0
}
.brand {
	display: flex;
	align-items: center;
	gap: 10px
}
.logo {
	width: 36px;
	height: 36px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--accent), #22d3ee)
}
.title {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: .2px
}
.theme-btn {
	cursor: pointer;
	border: 1px solid var(--ring);
	background: var(--btn-bg);
	color: var(--btn-text);
	border-radius: 12px;
	padding: 10px 14px;
	font-weight: 700
}
/* Hero */

.hero {
	background: var(--surface);
	border: 1px solid var(--ring);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow)
}
.hero h1 {
	margin: 0 0 8px;
	font-size: 24px
}
.hero p {
	margin: 0;
	color: var(--muted)
}
/* KPI BLOCK (адаптация вашего блока) */

#kpi-summary {
	margin: 24px 0;
	background: var(--surface);
	color: var(--text);
	padding: 24px;
	border-radius: var(--radius-lg);
	border: 1px solid var(--ring);
	box-shadow: var(--shadow)
}
.kpi-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 16px
}
.kpi-card {
	grid-column: span 4;
	background: linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .00));
	border: 1px solid var(--ring);
	border-radius: 16px;
	padding: 16px
}
.kpi-card h3 {
	margin: 0 0 6px;
	font-size: 14px;
	color: var(--muted);
	font-weight: 600;
	letter-spacing: .3px
}
.kpi-value {
	font-size: 28px;
	font-weight: 800;
	line-height: 1.2
}
.kpi-sub {
	display: flex;
	gap: 10px;
	align-items: center;
	margin-top: 8px;
	font-size: 12px;
	color: var(--muted)
}
.pill2 {
	padding: 2px 8px;
	border-radius: 999px;
	border: 1px solid var(--ring);
	background: var(--chip)
}
.pill2.ok {
	color: var(--ok)
}
.pill2.warn {
	color: var(--warn)
}
.pill2.bad {
	color: var(--bad)
}
.kpi-flex {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	gap: 16px;
	margin-top: 16px
}
.flex > div:first-child:last-child,
.flex > div.fullw {
	width: 100%;
}
.panel {
	background: var(--panel);
	border: 1px solid var(--ring);
	border-radius: 16px;
	padding: 16px
}
.panel h4 {
	margin: 0 0 10px;
	font-size: 14px;
	color: var(--muted);
	font-weight: 700;
	letter-spacing: .2px
}
.bars {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 10px;
	align-items: end;
	height: 160px;
	margin-top: 8px
}
.bar {
	position: relative;
	background: linear-gradient(180deg, var(--bar1-from), var(--bar1-to));
	border: 1px solid var(--bar1-stroke);
	border-radius: 10px;
	min-height: 4px
}
.bar:hover {
	filter: brightness(1.05)
}
.bar span {
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translate(-50%, -6px);
	font-size: 11px;
	color: var(--muted)
}
.bar em {
	position: absolute;
	bottom: 6px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 12px;
	font-style: normal;
	font-weight: 700
}
.legend {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 10px;
	color: var(--muted);
	font-size: 12px
}
.legend .dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--accent);
	display: inline-block;
	margin-right: 6px
}
.kv {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-top: 8px
}
.kv div {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px dashed var(--ring);
	padding: 6px 0
}
.calcs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px
}
.field {
	display: flex;
	flex-direction: column;
	gap: 6px
}
.field input, .field select {
	background: var(--input-bg);
	border: 1px solid var(--ring);
	border-radius: 10px;
	padding: 10px 12px;
	color: var(--text);
	outline: none
}
.hint {
	color: var(--muted);
	font-size: 12px
}
@media(max-width:900px) {
	.kpi-card {
		grid-column: span 12
	}
	.kpi-flex {
		grid-template-columns: 1fr
	}
	.calcs {
		grid-template-columns: 1fr
	}
}
/* Информ-блоки ниже KPI */

.explain {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 16px;
	margin: 24px 0
}
.card3 {
	grid-column: span 4;
	background: var(--surface);
	border: 1px solid var(--ring);
	border-radius: var(--radius-md);
	padding: 16px
}
.card4 {
	background: var(--surface);
	border: 1px solid var(--ring);
	border-radius: var(--radius-md);
	padding: 16px
}
.review-head {
	display: flex;
	gap: 12px;
	align-items: center
}
.avatar {
	width: 44px;
	height: 44px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	margin:0 !important;
}
.who {
	display: grid
}
.who small {
	color: var(--muted)
}
.stars {
	display: inline-flex;
	gap: 2px
}
.stars {
	color:var(--chervoniy);
}
html[data-theme="dark"] .stars {
	color:yellow;
}
.stars svg {
	width: 16px;
	height: 16px;
	fill: var(--star)
}
.card3 h3 {
	margin: 0 0 8px;
	font-size: var(--text-lg);
}
.card3 p {
	margin: 0;
	color: var(--muted);
	font-size: var(--text-sm);
}
.kpi-flex .red, .kpi-flex .blue {
	font-size: 16px;
}
#profd {
	font-size: 18px;
}
@media screen and (max-width:767px) {
	#profd {
		font-size: 14px;
	}
	.gallery .slick-slide > img {
		font-size: 18px;
	}
	#profd .gallery .slick-slide > img {
		min-height: 65vw;
	}
	.explain {
		display: block;
	}
	#kpi-summary {
		padding: 16px;
	}
	.hero {
		padding: 16px;
	}
}


#profd :root {
	--bg: #0b0d12;
	/* фоновый, тёмный графит */
	--card: #121623;
	/* карточки */
	--muted: #8a93a6;
	/* вторичный текст */
	--text: #e8ecf5;
	/* основной текст */
	--acc: #5ee1ff;
	/* акцент */
	--acc-2: #9b8cff;
	/* доп. акцент */
	--ring: rgba(94, 225, 255, .35);
	--br: 16px;
	--shadow: 0 10px 30px rgba(0, 0, 0, .35), 0 2px 8px rgba(0, 0, 0, .25);
}
/* Светлая тема */

#profd :root[data-theme="light"] {
	--bg: #f6f8fc;
	--card: #ffffff;
	--muted: #5e6b85;
	--text: #0d1220;
	--acc: #3aa8c9;
	--acc-2: #7266e3;
	--ring: rgba(58, 168, 201, .25);
	--shadow: 0 10px 24px rgba(15, 18, 28, .08), 0 2px 8px rgba(15, 18, 28, .05);
}
[data-theme="light"] #profd .toc a,
[data-theme="light"] #profd .chip,
[data-theme="light"] #profd .pill {
    color: var(--text);
    border-color:rgba(0,0,0,0.2);
}
.topbar {
	position: sticky;
	top: 0;
	z-index: 30;
	backdrop-filter: blur(8px);
	background: linear-gradient(180deg, rgba(11, 13, 18, .85), rgba(11, 13, 18, .65));
	border-bottom: 1px solid rgba(255, 255, 255, .06)
}
.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 0
}
.brand {
	display: flex;
	gap: 10px;
	align-items: center;
	text-decoration: none;
}
.brand-logo {
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--acc), var(--acc-2));
	box-shadow: 0 6px 18px var(--ring)
}
.brand-title {
	font-weight: 700;
	letter-spacing: .3px
}
.back {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--text);
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, .08);
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .02)
}
.back:hover {
	border-color: rgba(255, 255, 255, .18)
}
:root[data-theme="light"] .topbar {
	background: linear-gradient(180deg, rgba(255, 255, 255, .80), rgba(255, 255, 255, .65));
	border-bottom-color: rgba(13, 18, 32, .08)
}
:root[data-theme="light"] .brand-title {
	color: var(--text)
}
:root[data-theme="light"] .card4 {
	background: linear-gradient(180deg, rgba(13, 18, 32, .02), rgba(13, 18, 32, .01));
	border-color: rgba(13, 18, 32, .08)
}
:root[data-theme="light"] .back {
	color: var(--text);
	background: rgba(13, 18, 32, .03);
	border-color: rgba(13, 18, 32, .10)
}
.eyebrow {
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: .18em;
	font-weight: 600;
	font-size: 12px
}
#profd h1 {
	font-size: clamp(28px, 4.2vw, 44px);
	line-height: 1.12;
	margin: 8px 0 12px
}
#caseSolution * + * {
	margin-top: 12px;
}
.meta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	color: var(--muted)
}
.meta > *:last-child {
	display: none;
}
.meta b {
	color: var(--text);
	font-weight: 600
}
#profd .grid {
	display: grid;
	gap: 18px;
	align-items: start
}
@media (min-width: 960px) {
	#profd .grid {
		grid-template-columns: 2fr 1fr
	}
}
.hrh {
	border:0; border-top:1px solid rgba(255,255,255,.08); 
	margin:20px 0
}
#profd .doc + .doc {
    margin-top: unset;
}
.card4 {
	background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .02));
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: var(--br);
	box-shadow: var(--shadow);
	    overflow: hidden;
	    border-radius: 18px;
}
.card4 .inner {
	padding: 18px
}
.pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .10);
	background: rgba(255, 255, 255, .03)
}
.pill .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
}
.section-titles {
	font-size: 18px;
	letter-spacing: .2px
}
.section-titles.ard {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}
.section-titles.ard:after {
	content:' ';;
	display: block;
	width: 30px;
	min-width: 30px;
	margin-left: 10px;
	transform:rotate(90deg);
	transition:all linear .25s;
	height: 30px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' height='16' style='opacity:.7' viewBox='0 0 24 24' width='16'%3E%3Cpath d='M9 18l6-6-6-6' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3C/path%3E%3C/svg%3E");
	background-position: center center;
	background-repeat:no-repeat;
}
.section-titles.ard.open:after {
	transform:rotate(-90deg);
}
.section-titles.ard + * {
	display: none;
}
.section-titles:not([class*="mt"]) {
	margin-top: 0;
}
#profd ul:not(.slick-dots) {
	list-style:disc;
	padding-left: 22px;
}
#profd ul:not(.slick-dots) li + li {
	margin-top: 4px;
}
.muted, .desc em {
	font-style:normal;
	color: var(--muted)
}
.gallery .item {
	grid-column: span 12;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .10);
	/*cursor: zoom-in;*/
	background: #0f1420
}
.gallery img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover
}
@media (min-width: 700px) {
	.gallery .item.sm-6 {
		grid-column: span 6
	}
	.gallery .item.sm-8 {
		grid-column: span 8
	}
	.gallery .item.sm-4 {
		grid-column: span 4
	}
}
.chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px
}
.chip {
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .10);
	font-size: 14px;
	color: var(--text);
}
.kpis {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(2, 1fr)
}
.kpi {
	padding: 14px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, .10);
	background: rgba(255, 255, 255, .03)
}
.kpi b {
	display: block;
	font-size: 22px
}
.toc {
	display: flex;
	gap: 10px;
	flex-wrap: wrap
}
.toc a {
	text-decoration: none;
	color: var(--text);
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .10)
}
.toc a:hover {
	border-color: rgba(255, 255, 255, .20)
}
/* Кнопки */

/* Отзыв */

.testimonial {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 12px;
	border: 1px solid rgba(255, 255, 255, .10);
	border-radius: 12px;
	background: rgba(255, 255, 255, .03)
}
.testimonial .ava {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #233;
	border: 1px solid rgba(255, 255, 255, .12);
	overflow: hidden;
	flex: 0 0 auto
}
.testimonial .ava img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}
.testimonial .q {
	font-style: italic
}
:root[data-theme="light"] .testimonial {
	background: rgba(13, 18, 32, .03);
	border-color: rgba(13, 18, 32, .08)
}
/* Быстрые факты */

.facts {
	display: grid;
	gap: 8px
}
.fact {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	padding: 10px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, .08)
}
.fact .l {
	color: var(--muted)
}
:root[data-theme="light"] .fact {
	border-color: rgba(13, 18, 32, .08)
}
/* Похожие кейсы */

.related {
	display: grid;
	gap: 10px
}
.related a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 12px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, .10);
	text-decoration: none;
	color: var(--text)
}
.related a:hover {
	border-color: rgba(255, 255, 255, .18)
}
:root[data-theme="light"] .related a {
	border-color: rgba(13, 18, 32, .10)
}
/* Логотипы технологий (мини-галерея) */

.tech-logos {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 8px
}
.tech-logos .logo {
	aspect-ratio: 1/1;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .10);
	background: rgba(255, 255, 255, .03);
	display: grid;
	place-items: center
}
.tech-logos img {
	max-width: 70%;
	max-height: 70%;
	display: block
}
:root[data-theme="light"] .tech-logos .logo {
	border-color: rgba(13, 18, 32, .10);
	background: rgba(13, 18, 32, .04)
}
/* Документы */

.docs {
	display: flex;
	flex-direction: column;
	gap: 8px
}
.dcs > * + * {
	margin-top: 8px !important;
}
.doc {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, .10)
}
:root[data-theme="light"] .doc {
	border-color: rgba(13, 18, 32, .10)
}
/* Модальное окно для просмотра скринов */

.lightbox {
	position: fixed;
	inset: 0;
	display: none;
	place-items: center;
	background: rgba(6, 8, 12, .85);
	z-index: 50
}
.lightbox.open {
	display: grid
}
.lightbox img {
	max-width: 92vw;
	max-height: 86vh;
	border-radius: 14px;
	box-shadow: var(--shadow);
	border: 1px solid rgba(255, 255, 255, .12)
}
.lightbox .close {
	position: absolute;
	top: 18px;
	right: 18px;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 999px;
	padding: 10px 14px;
	cursor: pointer
}
.exps-b {
	display:flex;gap:10px;margin-top:12px
}

:root {
	--ink: #0f1220;
}
.subtitle {
	font-size: clamp(16px, 2.2vw, 20px);
	color: #cbd3ff;
	max-width: 900px
}
.badge {
	display: inline-flex;
	gap: 10px;
	align-items: center;
	padding: 8px 12px;
	border-radius: 999px;
	background: #11173b;
	color: #cbd3ff;
	font-weight: 600;
	border: 1px solid rgba(255, 255, 255, .08)
}
.badge .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--ok);
	box-shadow: 0 0 0 3px rgba(24, 176, 130, .18)
}
/* Навигация-якоря */

.tabs {
	gap: 8px;
}

details {
	background: rgba(255, 255, 255, .03)
}
details+details {
	margin-top: 10px
}
summary {
	cursor: pointer;
	font-weight: 600;
}
summary::-webkit-details-marker {
	display: none
}
.summary-row {
	display: flex;
	align-items: center;
	gap: 10px
}
.chip {
	padding: 2px 10px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 999px;
	font-size: 12px;
	color: #cbd3ff
}
[data-theme="light"] .chip {
	    color: var(--text);
    border-color: rgba(0, 0, 0, 0.2);
    background: transparent;
}
/* Список */

ul.clean {
	margin: 10px 0 0 18px
}
/* CTA */

.cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 16px
}

.compliance {
	display: flex;
	gap: 8px;
	flex-wrap: wrap
}
.yur-card {
	transition:all linear .25s;
}
.yur-card:hover {
	transform:translate(0,-10px);
}
.yur-card + .yur-card {
	margin-top: 30px;
}
.quote, .desc blockquote {
    border-left: 4px solid var(--brand);
    padding: 8px 0 8px 12px;
    margin: 8px 0;
    background: rgba(91, 140, 255, .06);
    border-radius: 6px;
}
.desc ol {
	list-style:none;
	padding: 0;
	margin: 0;
	font-size: 1em;
}
.desc ol li {
	position: relative;
	padding-left: 20px;	
}
.desc ol li strong {
	margin:0 0 5px;
	display: inline-block;
	width: 100%;
	font-size: 1.1em;
}
.desc ol li:before {
	content: "";
	position: absolute;
	left: 0px;
	top: 5px;
	width: 10px;
	height: 10px;
	background: var(--brand);
	border-radius: 50%;
	box-shadow: 0 0 0 3px rgba(91, 140, 255, .25)
}
.desc ol li + li {
	margin-top: 1rem;
}
.desc p:not([class*="mb"]):not([class*="mt"]) {
	margin: 0;
}
.desc *+p:not([class*="mb"]):not([class*="mt"]) {
	margin-top: 12px;
}