.cpb-wrapper {
	--cpb-accent: #2878f0;
	--cpb-accent-soft: #edf5ff;
	--cpb-ink: #14213a;
	--cpb-muted: #657086;
	--cpb-line: #e4e9f1;
	--cpb-surface: #fff;
	--cpb-section-gap: 52px;
	--cpb-section-margin: 52px 0;
	--cpb-section-padding: 0;
	--cpb-radius: 16px;
	--cpb-shadow: 0 18px 50px rgba(20, 33, 58, .08);
	--cpb-container-width: 100%;
	clear: both;
	max-width: 100%;
	margin: 42px 0;
	color: var(--cpb-ink);
	font-family: inherit;
	overflow: clip;
}

.cpb-wrapper *,
.cpb-wrapper *:before,
.cpb-wrapper *:after {
	box-sizing: border-box;
}

.cpb-hide-desktop {
	display: none !important;
}

.cpb-section {
	position: relative;
	max-width: var(--cpb-custom-container-width, var(--cpb-container-width));
	margin: var(--cpb-custom-section-margin, var(--cpb-section-margin));
	padding: var(--cpb-custom-section-padding, var(--cpb-section-padding));
}

.cpb-wrapper > .cpb-section:first-child { margin-top: 0; }
.cpb-wrapper > .cpb-section:last-child { margin-bottom: 0; }

.cpb-section-head {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	margin-bottom: 24px;
}

.cpb-section-icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	color: var(--cpb-accent);
	background: var(--cpb-accent-soft);
	border-radius: 14px;
}

.cpb-section-icon svg,
.cpb-feature-card__icon svg,
.cpb-service-card__icon svg,
.cpb-cta__icon svg {
	width: 23px;
	height: 23px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cpb-title {
	margin: 0;
	color: var(--cpb-ink);
	font-size: 25px;
	font-weight: 750;
	line-height: 1.2;
	letter-spacing: 0;
}

.cpb-subtitle {
	margin: 5px 0 0;
	color: var(--cpb-muted);
	font-size: 14px;
	line-height: 1.45;
}

.cpb-content {
	color: #4f5c70;
	font-size: 15px;
	line-height: 1.8;
}

.cpb-content p { margin: 0 0 16px; }
.cpb-content p:last-child { margin-bottom: 0; }
.cpb-content ul,
.cpb-content ol { margin: 18px 0; padding-left: 24px; }
.cpb-content li { margin: 7px 0; }
.cpb-content > ol {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 12px;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
	counter-reset: cpb-step;
}
.cpb-content > ol > li {
	position: relative;
	min-width: 0;
	min-height: 128px;
	margin: 0;
	padding: 44px 16px 16px;
	color: var(--cpb-muted);
	background: #fff;
	border: 1px solid var(--cpb-line);
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(27, 43, 70, .045);
	font-size: 13px;
	line-height: 1.55;
	overflow-wrap: anywhere;
}
.cpb-content > ol > li:before {
	position: absolute;
	top: 14px;
	left: 16px;
	color: var(--cpb-accent);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: .04em;
	counter-increment: cpb-step;
	content: counter(cpb-step, decimal-leading-zero);
}
.cpb-content > ol > li strong,
.cpb-content > ol > li b {
	display: block;
	margin-bottom: 6px;
	color: var(--cpb-ink);
	font-size: 14px;
	line-height: 1.35;
}
.cpb-content > ol > li p { margin: 0; }
.cpb-content blockquote {
	margin: 22px 0;
	padding: 16px 20px;
	color: #334155;
	background: #f7f9fc;
	border: 0;
	border-left: 3px solid var(--cpb-accent);
	border-radius: 0 12px 12px 0;
}
.cpb-content table { width: 100%; margin: 22px 0; border-collapse: separate; border-spacing: 0; border: 1px solid var(--cpb-line); border-radius: 12px; overflow: hidden; }
.cpb-content th,
.cpb-content td { padding: 12px 14px; border-right: 1px solid var(--cpb-line); border-bottom: 1px solid var(--cpb-line); text-align: left; }
.cpb-content tr:last-child td { border-bottom: 0; }
.cpb-content th:last-child,
.cpb-content td:last-child { border-right: 0; }

.cpb-card {
	background: var(--cpb-surface);
	border: 1px solid var(--cpb-line);
	border-radius: 16px;
	box-shadow: 0 7px 24px rgba(27, 43, 70, .045);
}

.cpb-hover {
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.cpb-hover:hover {
	transform: translateY(-5px);
	border-color: #c8d8ee;
	box-shadow: 0 18px 38px rgba(27, 43, 70, .11);
}

.cpb-chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.cpb-chip {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 39px;
	padding: 8px 14px;
	color: #246bc7;
	background: #fff;
	border: 1px solid #bcd5fa;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 650;
	line-height: 1.2;
	text-decoration: none;
	transition: transform .18s ease, color .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.cpb-chip > span { font-size: 16px; line-height: 0; }
.cpb-chip:hover,
.cpb-chip:focus {
	color: #fff;
	background: var(--cpb-accent);
	border-color: var(--cpb-accent);
	box-shadow: 0 8px 18px rgba(40, 120, 240, .22);
	text-decoration: none;
	transform: translateY(-2px) scale(1.015);
}

.cpb-feature-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.cpb-feature-card,
.cpb-service-card {
	display: flex;
	gap: 14px;
	min-width: 0;
	padding: 22px 20px;
}

.cpb-feature-card > div,
.cpb-service-card > div {
	display: block;
	min-width: 0;
}

.cpb-feature-card__icon,
.cpb-service-card__icon {
	display: grid;
	flex: 0 0 48px;
	place-items: center;
	width: 48px;
	height: 48px;
	color: var(--cpb-accent);
	background: var(--cpb-accent-soft);
	border-radius: 15px;
	transition: transform .22s ease;
}

.cpb-feature-card:hover .cpb-feature-card__icon,
.cpb-service-card:hover .cpb-service-card__icon { transform: scale(1.08); }
.cpb-feature-card h3,
.cpb-service-card h3 { display: block; margin: 2px 0 7px; color: var(--cpb-ink); font-size: 15px; font-weight: 750; line-height: 1.3; overflow-wrap: anywhere; }
.cpb-feature-card p,
.cpb-service-card p { display: block; margin: 0; color: var(--cpb-muted); font-size: 12px; line-height: 1.55; overflow-wrap: anywhere; }

.cpb-attributes { background: #fff; }
.cpb-attribute-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 14px;
}
.cpb-attribute-item {
	display: grid;
	grid-template-columns: minmax(120px, .9fr) minmax(0, 1.1fr);
	gap: 12px;
	align-items: center;
	min-height: 48px;
	padding: 12px 14px;
	background: #f8fafc;
	border: 1px solid var(--cpb-line);
	border-radius: 12px;
}
.cpb-attribute-item span { color: var(--cpb-muted); font-size: 13px; line-height: 1.45; overflow-wrap: anywhere; }
.cpb-attribute-item strong { color: var(--cpb-ink); font-size: 14px; line-height: 1.45; font-weight: 750; overflow-wrap: anywhere; text-align: right; }
.cpb-attribute-groups { display: grid; gap: 18px; }
.cpb-attribute-group h3 { margin: 0 0 10px; color: var(--cpb-ink); font-size: 16px; font-weight: 800; }
.cpb-attributes--table .cpb-attribute-list { display: block; overflow: hidden; border: 1px solid var(--cpb-line); border-radius: 14px; }
.cpb-attributes--table .cpb-attribute-item { border: 0; border-bottom: 1px solid var(--cpb-line); border-radius: 0; background: #fff; }
.cpb-attributes--table .cpb-attribute-item:last-child { border-bottom: 0; }
.cpb-attributes--list .cpb-attribute-list { grid-template-columns: 1fr; }
.cpb-attributes--list .cpb-attribute-item { grid-template-columns: minmax(130px, .45fr) minmax(0, 1fr); background: transparent; border-width: 0 0 1px; border-radius: 0; }
.cpb-attributes--cards .cpb-attribute-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cpb-attributes--cards .cpb-attribute-item { display: block; min-height: 96px; background: #fff; box-shadow: 0 10px 26px rgba(27,43,70,.06); }
.cpb-attributes--cards .cpb-attribute-item strong { display: block; margin-top: 8px; }

.cpb-service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.cpb-step-grid {
	display: grid;
	grid-template-columns: repeat(var(--cpb-structured-columns, 4), minmax(0, 1fr));
	gap: 14px;
}

.cpb-step-card {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 14px;
	min-height: 132px;
	padding: 18px;
}

.cpb-step-card__marker {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	color: var(--cpb-accent);
	background: var(--cpb-accent-soft);
	border-radius: 14px;
	font-size: 13px;
	font-weight: 850;
	line-height: 1;
}

.cpb-step-card h3 {
	margin: 1px 0 8px;
	color: var(--cpb-ink);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.cpb-step-card__text {
	color: var(--cpb-muted);
	font-size: 13px;
	line-height: 1.58;
	overflow-wrap: anywhere;
}

.cpb-step-card__text p { margin: 0 0 8px; }
.cpb-step-card__text p:last-child { margin-bottom: 0; }

.cpb-view-all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 39px;
	padding: 8px 14px;
	color: #246bc7;
	background: var(--cpb-accent-soft);
	border-radius: 11px;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.cpb-view-all:hover,
.cpb-view-all:focus { color: #fff; background: var(--cpb-accent); text-decoration: none; }

.cpb-product-showcase {
	position: relative;
	--cpb-card-height: 390px;
	--cpb-card-image-height: 218px;
}

.cpb-product-showcase.is-cpb-vertical-rotator .cpb-product-nav,
.cpb-product-showcase.is-cpb-vertical-rotator .cpb-product-dots {
	display: none !important;
}

.cpb-product-grid,
.cpb-product-track {
	display: grid !important;
	grid-template-columns: repeat(var(--cpb-product-columns, 4), minmax(0, 1fr));
	align-items: stretch;
	gap: 18px;
	padding: 6px 2px 4px;
	overflow: visible;
}

.cpb-product-nav {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 14px;
}

.cpb-product-nav__button {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	color: var(--cpb-accent);
	background: #fff;
	border: 1px solid var(--cpb-line);
	border-radius: 50%;
	box-shadow: 0 8px 20px rgba(27, 43, 70, .08);
	transition: transform .18s ease, color .18s ease, background-color .18s ease, opacity .18s ease;
}

.cpb-product-nav__button span {
	display: block;
	font-size: 24px;
	line-height: 1;
	transform: translateY(-1px);
}

.cpb-product-nav__button:hover,
.cpb-product-nav__button:focus {
	color: #fff;
	background: var(--cpb-accent);
	transform: translateY(-2px);
}

.cpb-product-nav__button:disabled {
	cursor: default;
	opacity: .38;
	transform: none;
}

.cpb-product-dots {
	display: flex;
	justify-content: center;
	gap: 7px;
	margin-top: 12px;
}

.cpb-product-dot {
	width: 8px;
	height: 8px;
	padding: 0;
	background: #cbd5e1;
	border: 0;
	border-radius: 999px;
	transition: width .18s ease, background-color .18s ease;
}

.cpb-product-dot.is-active {
	width: 22px;
	background: var(--cpb-accent);
}

.cpb-product-slot {
	position: relative;
	min-width: 0;
	height: var(--cpb-card-height);
	background: #fff;
	border: 1px solid var(--cpb-line);
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 7px 24px rgba(27, 43, 70, .05);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.cpb-product-slot .cpb-product-card {
	position: absolute;
	inset: 1px;
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	border: 0;
	border-radius: 15px;
	box-shadow: none;
}

.cpb-product-slot:hover,
.cpb-product-slot:focus-within {
	border-color: #c8d8ee;
	box-shadow: 0 20px 42px rgba(27, 43, 70, .14);
	transform: translateY(-5px);
}

.cpb-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: var(--cpb-card-height);
	min-width: 0;
	background: #fff;
	border: 1px solid var(--cpb-line);
	border-radius: 16px;
	box-shadow: 0 7px 24px rgba(27, 43, 70, .05);
	background-clip: padding-box;
	isolation: isolate;
	overflow: hidden;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, opacity .48s ease;
}

.cpb-product-card:hover,
.cpb-product-card:focus-within {
	border-color: #c8d8ee;
	box-shadow: 0 20px 42px rgba(27, 43, 70, .14);
	transform: translateY(-5px);
}

.cpb-product-slot .cpb-product-card:hover,
.cpb-product-slot .cpb-product-card:focus-within {
	transform: none;
}

.cpb-badge {
	position: absolute;
	z-index: 2;
	top: 14px;
	left: 14px;
	padding: 5px 9px;
	color: #fff;
	background: #ef4444;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 800;
}

.cpb-product-card__image {
	display: flex;
	align-items: center;
	justify-content: center;
	height: var(--cpb-card-image-height);
	padding: 22px 20px 14px;
	background: #fff;
	border-radius: 15px 15px 0 0;
	overflow: hidden;
}

.cpb-product-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
	transition: transform .3s ease;
}

.cpb-product-card:hover .cpb-product-card__image img { transform: scale(1.045); }

.cpb-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: 16px 18px 18px;
	background: #fff;
	border-radius: 0 0 15px 15px;
	min-height: 0;
}

.cpb-product-card__name {
	display: -webkit-box;
	min-height: 42px;
	margin-bottom: 14px;
	color: var(--cpb-ink);
	font-size: 14px;
	font-weight: 750;
	line-height: 1.4;
	overflow: hidden;
	text-decoration: none;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.cpb-product-card__name:hover { color: var(--cpb-accent); text-decoration: none; }
.cpb-product-card__price { display: flex; align-items: baseline; gap: 8px; margin-top: auto; color: #2167ca; font-size: 16px; font-weight: 800; min-height: 23px; }
.cpb-product-card__price-new { color: #e11d48; }
.cpb-product-card__price-old { color: #9aa4b2; font-size: 12px; font-weight: 500; text-decoration: line-through; }

.cpb-product-card__button {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 36px;
	margin-top: 14px;
	padding: 8px 13px;
	color: #2167ca !important;
	background: var(--cpb-accent-soft);
	border-radius: 10px;
	font-size: 12px;
	font-weight: 750;
	text-decoration: none;
	opacity: .9;
	transform: translateY(2px);
	transition: transform .2s ease, opacity .2s ease, color .2s ease, background-color .2s ease;
}

.cpb-product-card:hover .cpb-product-card__button { opacity: 1; transform: translateY(0); }
.cpb-product-card__button:hover,
.cpb-product-card__button:focus { color: #fff !important; background: var(--cpb-accent); text-decoration: none; }

.cpb-product-card.is-cpb-hidden { display: none; }
.cpb-product-card.is-cpb-entering { opacity: 0; transform: translateY(28px); pointer-events: none; }
.cpb-product-card.is-cpb-leaving { opacity: 0; transform: translateY(-28px); pointer-events: none; }
.cpb-product-card.is-cpb-active { opacity: 1; transform: translateY(0); }

.cpb-buttons { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.cpb-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 18px;
	color: #fff;
	background: var(--cpb-accent);
	border: 1px solid transparent;
	border-radius: 12px;
	font-size: 13px;
	font-weight: 750;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background-color .2s ease;
}
.cpb-button:hover,
.cpb-button:focus { color: #fff; box-shadow: 0 10px 22px rgba(40, 120, 240, .25); text-decoration: none; transform: translateY(-2px); }
.cpb-button + .cpb-button { color: #2167ca; background: #fff; border-color: #b9cff0; }
.cpb-button--secondary { color: var(--cpb-accent); background: #fff; border-color: #b9cff0; }
.cpb-button--outline { color: var(--cpb-accent); background: transparent; border-color: currentColor; }
.cpb-button--link { min-height: 0; padding: 0; color: var(--cpb-accent); background: transparent; border-color: transparent; border-radius: 0; }
.cpb-button--secondary:hover,
.cpb-button--outline:hover,
.cpb-button--link:hover,
.cpb-button--secondary:focus,
.cpb-button--outline:focus,
.cpb-button--link:focus { color: var(--cpb-accent); background: #fff; }
.cpb-buttons--block { margin-top: 18px; }
.cpb-html .cpb-section-head .cpb-view-all { display: none; }

.cpb-cta {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: center;
	min-height: 0;
	padding: var(--cpb-custom-section-padding, 24px 28px);
	color: var(--cpb-cta-color, var(--cpb-ink));
	background: var(--cpb-cta-bg, #edf5ff);
	border: 1px solid #dce8f8;
	border-radius: var(--cpb-custom-radius, 18px);
	box-shadow: var(--cpb-custom-shadow, 0 14px 34px rgba(27, 58, 105, .08));
	overflow: hidden;
}

.cpb-cta__content { display: grid; grid-template-columns: 58px minmax(0, 1fr) auto; gap: 18px; align-items: center; width: 100%; }
.cpb-cta__icon { display: grid; place-items: center; width: 58px; height: 58px; color: var(--cpb-accent); background: #fff; border-radius: 16px; box-shadow: 0 10px 24px rgba(40, 120, 240, .13); }
.cpb-cta__icon svg { width: 27px; height: 27px; }
.cpb-cta__copy { display: contents; }
.cpb-cta__copy .cpb-title { grid-column: 2; font-size: 23px; }
.cpb-cta__copy .cpb-subtitle { grid-column: 2; margin-top: 4px; }
.cpb-cta__copy .cpb-content { grid-column: 2; margin-top: 6px; max-width: 760px; font-size: 14px; line-height: 1.65; }
.cpb-cta .cpb-buttons { grid-column: 3; grid-row: 1 / span 3; justify-content: flex-end; margin-top: 0; }
.cpb-cta__art { display: none; }
.cpb-cta__art svg { width: 100%; height: 100%; }
.cpb-art-soft { fill: #dbeafe; }
.cpb-art-box { fill: #9cc2ff; stroke: #2878f0; stroke-width: 2; stroke-linejoin: round; }
.cpb-art-line { fill: none; stroke: #2878f0; stroke-width: 2; stroke-linejoin: round; }
.cpb-art-mark { fill: #17345f; }
.cpb-art-question { fill: none; stroke: #fff; stroke-width: 6; stroke-linecap: round; }

.cpb-cta.cpb-mode-commerce,
.cpb-cta.cpb-mode-accent,
.cpb-cta.cpb-preset-accent {
	--cpb-accent: #2dd4bf;
	color: #fff;
	background: linear-gradient(125deg, #0f3d91, #087f72);
	border-color: transparent;
}
.cpb-cta.cpb-mode-dark,
.cpb-cta.cpb-mode-luxury { --cpb-accent: #d6b25e; color: #fff; background: #111827; border-color: #283245; }
.cpb-cta.cpb-mode-commerce .cpb-title,
.cpb-cta.cpb-mode-commerce .cpb-subtitle,
.cpb-cta.cpb-mode-commerce .cpb-content,
.cpb-cta.cpb-mode-accent .cpb-title,
.cpb-cta.cpb-mode-accent .cpb-subtitle,
.cpb-cta.cpb-mode-accent .cpb-content,
.cpb-cta.cpb-preset-accent .cpb-title,
.cpb-cta.cpb-preset-accent .cpb-subtitle,
.cpb-cta.cpb-preset-accent .cpb-content,
.cpb-cta.cpb-mode-dark .cpb-title,
.cpb-cta.cpb-mode-dark .cpb-subtitle,
.cpb-cta.cpb-mode-dark .cpb-content,
.cpb-cta.cpb-mode-luxury .cpb-title,
.cpb-cta.cpb-mode-luxury .cpb-subtitle,
.cpb-cta.cpb-mode-luxury .cpb-content { color: #fff; }
.cpb-cta.cpb-mode-commerce .cpb-button,
.cpb-cta.cpb-mode-accent .cpb-button,
.cpb-cta.cpb-preset-accent .cpb-button { color: #063b34; background: #2dd4bf; }
.cpb-cta.cpb-mode-commerce .cpb-button + .cpb-button,
.cpb-cta.cpb-mode-accent .cpb-button + .cpb-button,
.cpb-cta.cpb-preset-accent .cpb-button + .cpb-button,
.cpb-cta.cpb-mode-dark .cpb-button + .cpb-button,
.cpb-cta.cpb-mode-luxury .cpb-button + .cpb-button { color: #fff; background: transparent; border-color: rgba(255,255,255,.42); }

.cpb-seo-text { margin-top: 78px; }
.cpb-seo-article { position: relative; max-width: 100%; padding-left: 22px; border-left: 3px solid var(--cpb-accent); }
.cpb-seo-article .cpb-title { margin-bottom: 20px; font-size: 27px; }
.cpb-seo-article .cpb-content { max-width: 82ch; }

.cpb-faq { padding: 0; background: transparent; border: 0; box-shadow: none; }
.cpb-faq-list { display: grid; gap: 10px; }
.cpb-faq-item { background: #fff; border: 1px solid var(--cpb-line); border-radius: 15px; box-shadow: 0 6px 20px rgba(27,43,70,.04); overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.cpb-faq-item:hover { border-color: #c8d8ee; }
.cpb-faq-item.is-open { border-color: #b9d3f7; box-shadow: 0 12px 28px rgba(27,43,70,.08); }
.cpb-faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	width: 100%;
	min-height: 62px;
	padding: 17px 20px;
	color: var(--cpb-ink);
	background: transparent;
	border: 0;
	font-size: 14px;
	font-weight: 750;
	line-height: 1.35;
	text-align: left;
}
.cpb-faq-question i { position: relative; flex: 0 0 26px; width: 26px; height: 26px; background: var(--cpb-accent-soft); border-radius: 50%; }
.cpb-faq-question i:before,
.cpb-faq-question i:after { position: absolute; top: 50%; left: 50%; width: 11px; height: 1.5px; background: var(--cpb-accent); content: ""; transform: translate(-50%,-50%); transition: transform .2s ease; }
.cpb-faq-question i:after { transform: translate(-50%,-50%) rotate(90deg); }
.cpb-faq-item.is-open .cpb-faq-question i:after { transform: translate(-50%,-50%) rotate(0); }
.cpb-faq-answer { max-height: 0; padding: 0 20px; color: var(--cpb-muted); font-size: 14px; line-height: 1.7; opacity: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease, opacity .22s ease; }
.cpb-faq-item.is-open .cpb-faq-answer { max-height: 600px; padding: 0 20px 19px; opacity: 1; }

.cpb-category-links { display: flex; flex-wrap: wrap; gap: 10px; }
.cpb-category-link { padding: 9px 14px; color: #2167ca; background: var(--cpb-accent-soft); border-radius: 10px; font-weight: 650; text-decoration: none; }
.cpb-category-link:hover { color: #fff; background: var(--cpb-accent); text-decoration: none; }

.cpb-mode-minimal { background: transparent; }
.cpb-mode-soft:not(.cpb-cta) { padding: var(--cpb-custom-section-padding, 28px); background: #f8fafc; border-radius: var(--cpb-custom-radius, 18px); box-shadow: var(--cpb-custom-shadow, none); }
.cpb-mode-glass:not(.cpb-cta) { padding: var(--cpb-custom-section-padding, 28px); background: rgba(255,255,255,.86); border: 1px solid rgba(210,221,235,.8); border-radius: var(--cpb-custom-radius, 18px); box-shadow: var(--cpb-custom-shadow, 0 18px 50px rgba(27,43,70,.08)); backdrop-filter: blur(8px); }
.cpb-mode-auto-parts { --cpb-accent: #df552f; --cpb-accent-soft: #fff0eb; }
.cpb-mode-luxury { --cpb-accent: #b8943e; --cpb-accent-soft: #f7f0df; }
.cpb-color-blue { --cpb-accent: #2878f0; --cpb-accent-soft: #edf5ff; }
.cpb-color-green { --cpb-accent: #16a34a; --cpb-accent-soft: #ecfdf3; }
.cpb-color-red { --cpb-accent: #ef4444; --cpb-accent-soft: #fff1f2; }
.cpb-color-orange { --cpb-accent: #f97316; --cpb-accent-soft: #fff7ed; }
.cpb-color-gray { --cpb-accent: #64748b; --cpb-accent-soft: #f1f5f9; }
.cpb-color-dark { --cpb-accent: #111827; --cpb-accent-soft: #eef2f7; }
.cpb-color-light { --cpb-accent: #60a5fa; --cpb-accent-soft: #f5f9ff; }
.cpb-color-brand { --cpb-accent: #7c3aed; --cpb-accent-soft: #f3edff; }

.cpb-animate { animation: cpb-fade-up .48s ease both; }
.cpb-no-animation,
.cpb-no-animation * { animation: none !important; transition: none !important; }
@keyframes cpb-fade-up { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
	.cpb-animate,
	.cpb-animate * { animation: none !important; transition: none !important; }
}

@media (max-width: 991px) {
	.cpb-section { margin: 44px 0; }
	.cpb-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.cpb-product-showcase {
		--cpb-card-height: 360px;
		--cpb-card-image-height: 196px;
	}
	.cpb-product-grid,
	.cpb-product-track { grid-template-columns: repeat(var(--cpb-product-columns-tablet, 2), minmax(0, 1fr)); gap: 16px; }
	.cpb-attributes--cards .cpb-attribute-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.cpb-content > ol { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.cpb-step-grid { grid-template-columns: repeat(var(--cpb-structured-columns-tablet, 2), minmax(0, 1fr)); }
	.cpb-cta { grid-template-columns: minmax(0, 1fr); padding: 24px 24px; }
}

@media (max-width: 767px) {
	.cpb-hide-desktop {
		display: block !important;
	}

	.cpb-hide-mobile {
		display: none !important;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.cpb-hide-desktop {
		display: block !important;
	}

	.cpb-hide-tablet {
		display: none !important;
	}
}

@media (min-width: 992px) {
	.cpb-hide-desktop {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.cpb-wrapper { margin: 28px 0; overflow: hidden; }
	.cpb-section { margin: 30px 0; }
	.cpb-section-head { grid-template-columns: 38px minmax(0, 1fr); gap: 11px; margin-bottom: 19px; }
	.cpb-section-icon { width: 38px; height: 38px; border-radius: 12px; }
	.cpb-section-head .cpb-view-all { grid-column: 1 / -1; width: max-content; margin-left: 49px; }
	.cpb-title { font-size: 21px; }
	.cpb-subtitle { font-size: 13px; }
	.cpb-feature-grid,
	.cpb-service-grid,
	.cpb-attribute-list,
	.cpb-attributes--cards .cpb-attribute-list { grid-template-columns: 1fr; }
	.cpb-product-showcase {
		--cpb-card-height: 334px;
		--cpb-card-image-height: 172px;
	}
	.cpb-product-grid,
	.cpb-product-track { grid-template-columns: repeat(var(--cpb-product-columns-mobile, 1), minmax(0, 1fr)); gap: 12px; padding: 4px 1px; }
	.cpb-attribute-item,
	.cpb-attributes--table .cpb-attribute-item,
	.cpb-attributes--list .cpb-attribute-item { grid-template-columns: minmax(96px, .42fr) minmax(0, 1fr); gap: 8px; min-height: 44px; padding: 10px 12px; }
	.cpb-attribute-item strong { text-align: right; font-size: 13px; }
	.cpb-attribute-item span { font-size: 12px; }
	.cpb-feature-card,
	.cpb-service-card { padding: 19px 17px; }
	.cpb-product-slot,
	.cpb-product-card { height: var(--cpb-card-height); }
	.cpb-product-card__image { height: var(--cpb-card-image-height); padding: 15px 15px 9px; }
	.cpb-product-card__body { padding: 14px 15px 15px; }
	.cpb-product-card__name { min-height: 38px; margin-bottom: 10px; font-size: 12px; line-height: 1.35; }
	.cpb-product-card__price { font-size: 13px; }
	.cpb-product-card__price-old { display: none; }
	.cpb-product-card__button { min-height: 32px; margin-top: 9px; padding: 7px 10px; border-radius: 9px; font-size: 11px; }
	.cpb-badge { top: 10px; left: 10px; padding: 4px 8px; font-size: 9px; }
	.cpb-cta { grid-template-columns: 1fr; min-height: 0; padding: 26px 20px; border-radius: 16px; }
	.cpb-cta__content { grid-template-columns: 48px minmax(0, 1fr); gap: 13px; align-items: start; }
	.cpb-cta__icon { width: 48px; height: 48px; border-radius: 14px; }
	.cpb-cta__copy { display: contents; }
	.cpb-cta__copy .cpb-title,
	.cpb-cta__copy .cpb-subtitle,
	.cpb-cta__copy .cpb-content { grid-column: 2; }
	.cpb-cta__copy .cpb-title { font-size: 21px; }
	.cpb-cta__art { display: none; }
	.cpb-cta .cpb-buttons { grid-column: 1 / -1; grid-row: auto; justify-content: stretch; margin-top: 8px; }
	.cpb-buttons { display: grid; grid-template-columns: 1fr; width: 100%; }
	.cpb-button { width: 100%; }
	.cpb-content > ol { grid-template-columns: 1fr; gap: 10px; }
	.cpb-content > ol > li { min-height: 0; padding: 38px 14px 14px; }
	.cpb-step-grid { grid-template-columns: repeat(var(--cpb-structured-columns-mobile, 1), minmax(0, 1fr)); gap: 10px; }
	.cpb-step-card { grid-template-columns: 42px minmax(0, 1fr); min-height: 0; padding: 14px; }
	.cpb-step-card__marker { width: 42px; height: 42px; border-radius: 12px; }
	.cpb-faq-list { gap: 8px; }
	.cpb-faq-question { min-height: 52px; padding: 13px 14px; font-size: 13px; }
	.cpb-faq-question i { flex-basis: 24px; width: 24px; height: 24px; }
	.cpb-faq-answer { padding: 0 14px; font-size: 13px; line-height: 1.6; }
	.cpb-faq-item.is-open .cpb-faq-answer { padding: 0 14px 14px; }
	.cpb-seo-article { padding-left: 16px; }
	.cpb-seo-article .cpb-title { font-size: 23px; }
	.cpb-mode-soft:not(.cpb-cta),
	.cpb-mode-glass:not(.cpb-cta) { padding: 20px 16px; }
	.cpb-chip { max-width: 100%; white-space: normal; }
}

@media (max-width: 360px) {
	.cpb-product-showcase {
		--cpb-card-height: 342px;
		--cpb-card-image-height: 178px;
	}
	.cpb-product-grid,
	.cpb-product-track { grid-template-columns: 1fr; }
	.cpb-product-slot,
	.cpb-product-card { height: var(--cpb-card-height); }
	.cpb-product-card__image { height: var(--cpb-card-image-height); }
	.cpb-attribute-item,
	.cpb-attributes--table .cpb-attribute-item,
	.cpb-attributes--list .cpb-attribute-item { grid-template-columns: 1fr; gap: 4px; }
	.cpb-attribute-item strong { text-align: left; }
}
