:root {
	--t63-ink: #14213d;
	--t63-ink-strong: #0d172d;
	--t63-ink-soft: #566278;
	--t63-orange: #fc6702;
	--t63-orange-dark: #dc5500;
	--t63-orange-pale: #fff1e8;
	--t63-green: #168c52;
	--t63-red: #cf2e2e;
	--t63-line: #e4e8ee;
	--t63-line-dark: #d6dce5;
	--t63-surface: #fff;
	--t63-surface-soft: #f6f7f9;
	--t63-surface-dark: #101a30;
	--t63-radius-sm: 9px;
	--t63-radius: 14px;
	--t63-radius-lg: 24px;
	--t63-shadow-sm: 0 8px 22px rgba(20, 33, 61, .07);
	--t63-shadow: 0 20px 55px rgba(20, 33, 61, .11);
	--t63-shell: 1440px;
	--t63-transition: 180ms ease;
}

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

html {
	scroll-behavior: smooth;
}

body {
	max-width: 100%;
	margin: 0;
	overflow-x: clip;
	background: var(--t63-surface);
	color: var(--t63-ink);
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

body.has-open-panel {
	overflow: hidden;
}

[hidden] {
	display: none !important;
}

img {
	max-width: 100%;
	height: auto;
}

button,
input,
select,
textarea {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	color: inherit;
}

h1,
h2,
h3,
h4,
p {
	margin-top: 0;
}

h1,
h2,
h3,
h4 {
	color: var(--t63-ink-strong);
	line-height: 1.12;
	letter-spacing: -.035em;
}

h1 {
	font-size: clamp(38px, 4.3vw, 68px);
}

h2 {
	font-size: clamp(30px, 3vw, 46px);
}

h3 {
	font-size: clamp(21px, 2vw, 28px);
}

::selection {
	background: var(--t63-orange);
	color: #fff;
}

:focus-visible {
	outline: 3px solid rgba(252, 103, 2, .42);
	outline-offset: 3px;
}

.shell {
	width: min(var(--t63-shell), calc(100% - 48px));
	margin-inline: auto;
}

.section {
	padding: 88px 0;
}

.section--soft {
	background: var(--t63-surface-soft);
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	z-index: 100000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	background: #fff;
	color: var(--t63-ink);
}

.skip-link {
	position: fixed;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	margin-bottom: 13px;
	color: var(--t63-orange-dark);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.eyebrow--light {
	color: #ffb37f;
}

.button,
button.button,
input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 21px;
	border: 1px solid transparent;
	border-radius: var(--t63-radius-sm);
	gap: 9px;
	font-weight: 750;
	line-height: 1.1;
	cursor: pointer;
	transition: color var(--t63-transition), background var(--t63-transition), border-color var(--t63-transition), box-shadow var(--t63-transition), transform var(--t63-transition);
}

.button:hover {
	transform: translateY(-1px);
}

.button:active {
	transform: translateY(0);
}

.button--primary,
button.button--primary {
	background: var(--t63-orange);
	color: #fff;
	box-shadow: 0 9px 23px rgba(252, 103, 2, .2);
}

.button--primary:hover {
	background: var(--t63-orange-dark);
}

.button--dark {
	background: var(--t63-ink-strong);
	color: #fff;
}

.button--dark:hover {
	background: #202f4e;
}

.button--light {
	border-color: var(--t63-line);
	background: #fff;
	color: var(--t63-ink);
}

.button--light:hover {
	border-color: var(--t63-orange);
	color: var(--t63-orange-dark);
}

.button--wide {
	width: 100%;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--t63-ink);
	font-weight: 750;
	transition: color var(--t63-transition);
}

.text-link:hover {
	color: var(--t63-orange-dark);
}

.text-link svg {
	transition: transform var(--t63-transition);
}

.text-link:hover svg {
	transform: translateX(3px);
}

.icon-button {
	display: grid;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid var(--t63-line);
	border-radius: 10px;
	background: #fff;
	place-items: center;
	cursor: pointer;
}

.utility-bar {
	border-bottom: 1px solid var(--t63-line);
	background: #f8f9fb;
	color: #536078;
	font-size: 12px;
}

.utility-bar__inner,
.utility-bar__group,
.utility-bar__group span,
.utility-bar__group a {
	display: flex;
	align-items: center;
}

.utility-bar__inner {
	min-height: 36px;
	justify-content: space-between;
	gap: 22px;
}

.utility-bar__group {
	min-width: 0;
	gap: 26px;
}

.utility-bar__group:first-child {
	flex: 1 1 auto;
	overflow: hidden;
}

.utility-bar__group--right {
	flex: 0 0 auto;
}

.utility-bar__group span,
.utility-bar__group a {
	gap: 7px;
	white-space: nowrap;
}

.utility-bar svg {
	color: var(--t63-orange);
}

.utility-production-link {
	min-width: 0;
	overflow: hidden;
	color: var(--t63-ink);
	font-weight: 700;
	text-overflow: ellipsis;
}

.utility-production-link:hover {
	color: var(--t63-orange-dark);
}

.site-header {
	position: sticky;
	z-index: 70;
	top: 0;
	border-bottom: 1px solid rgba(220, 225, 233, .92);
	background: rgba(255, 255, 255, .95);
	backdrop-filter: blur(18px);
}

.site-header__row {
	display: flex;
	align-items: center;
	min-height: 76px;
	gap: 24px;
}

.site-logo {
	flex: 0 0 auto;
	line-height: 1;
}

.custom-logo {
	display: block;
	width: auto;
	max-width: 190px;
	max-height: 52px;
}

.site-logo__text {
	display: inline-flex;
	align-items: baseline;
	color: var(--t63-ink-strong);
	font-size: 31px;
	font-weight: 950;
	letter-spacing: -2.5px;
}

.site-logo__text span {
	color: var(--t63-orange);
}

.site-logo__text small {
	font-size: 13px;
	letter-spacing: -.4px;
}

.catalog-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border: 0;
	border-radius: var(--t63-radius-sm);
	background: var(--t63-orange);
	box-shadow: 0 8px 18px rgba(252, 103, 2, .2);
	color: #fff;
	gap: 9px;
	font-weight: 800;
	cursor: pointer;
}

.catalog-toggle:hover,
.catalog-toggle[aria-expanded="true"] {
	background: var(--t63-orange-dark);
}

.primary-nav {
	min-width: 0;
}

.primary-nav .menu,
.primary-nav ul,
.mobile-navigation ul,
.site-footer ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-nav > .menu,
.primary-nav > ul {
	display: flex;
	align-items: center;
	gap: 25px;
}

.primary-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
	transition: color var(--t63-transition);
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
	color: var(--t63-orange-dark);
}

.primary-nav .menu-item-has-children {
	position: relative;
}

.primary-nav .sub-menu {
	position: absolute;
	top: calc(100% - 2px);
	left: -16px;
	display: none;
	min-width: 230px;
	padding: 10px;
	border: 1px solid var(--t63-line);
	border-radius: 12px;
	background: #fff;
	box-shadow: var(--t63-shadow);
}

.primary-nav .menu-item-has-children:hover > .sub-menu,
.primary-nav .menu-item-has-children:focus-within > .sub-menu {
	display: block;
}

.primary-nav .sub-menu a {
	width: 100%;
	min-height: 40px;
	padding: 0 10px;
	border-radius: 7px;
}

.primary-nav .sub-menu a:hover {
	background: var(--t63-orange-pale);
}

.header-actions {
	display: flex;
	align-items: center;
	margin-left: auto;
	gap: 6px;
}

.header-phone {
	display: inline-flex;
	align-items: center;
	padding-right: 15px;
	margin-right: 6px;
	border-right: 1px solid var(--t63-line);
	gap: 8px;
	font-size: 14px;
	font-weight: 800;
	white-space: nowrap;
}

.header-phone svg {
	color: var(--t63-orange);
}

.header-action,
.mobile-menu-toggle {
	position: relative;
	display: grid;
	width: 41px;
	height: 41px;
	padding: 0;
	border: 1px solid transparent;
	border-radius: 10px;
	background: transparent;
	place-items: center;
	cursor: pointer;
	transition: background var(--t63-transition), border-color var(--t63-transition);
}

.header-action:hover,
.mobile-menu-toggle:hover {
	border-color: var(--t63-line);
	background: var(--t63-surface-soft);
}

.header-cart__count {
	position: absolute;
	top: -2px;
	right: -2px;
	display: grid;
	min-width: 19px;
	height: 19px;
	padding: 0 4px;
	border: 2px solid #fff;
	border-radius: 12px;
	background: var(--t63-orange);
	color: #fff;
	font-size: 10px;
	font-weight: 850;
	place-items: center;
}

.mobile-menu-toggle {
	display: none;
}

.catalog-panel {
	position: absolute;
	right: 0;
	left: 0;
	padding: 20px 0 26px;
	border-top: 1px solid var(--t63-line);
	background: rgba(255, 255, 255, .99);
	box-shadow: 0 26px 50px rgba(20, 33, 61, .14);
}

.catalog-panel__grid {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 28px;
}

.catalog-panel__intro {
	padding: 22px;
	border-radius: 14px;
	background: var(--t63-surface-dark);
	color: #fff;
}

.catalog-panel__intro strong {
	display: block;
	margin-bottom: 8px;
	font-size: 21px;
}

.catalog-panel__intro p {
	margin-bottom: 24px;
	color: #b9c2d4;
	font-size: 14px;
}

.catalog-panel__intro .text-link {
	color: #fff;
}

.catalog-panel__categories {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.catalog-panel__categories a {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	align-items: center;
	min-height: 54px;
	padding: 0 15px;
	border: 1px solid var(--t63-line);
	border-radius: 10px;
	gap: 8px;
	font-size: 14px;
	font-weight: 700;
	transition: border-color var(--t63-transition), background var(--t63-transition);
}

.catalog-panel__categories a:hover {
	border-color: var(--t63-orange);
	background: var(--t63-orange-pale);
}

.catalog-panel__categories small {
	color: var(--t63-ink-soft);
}

.catalog-panel__categories svg {
	color: var(--t63-orange);
}

.mobile-navigation {
	position: fixed;
	z-index: 100;
	top: 0;
	right: 0;
	width: min(420px, 92vw);
	height: 100dvh;
	padding: 22px;
	overflow-y: auto;
	background: #fff;
	box-shadow: -20px 0 60px rgba(15, 25, 45, .2);
}

.mobile-navigation__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--t63-line);
}

.mobile-navigation nav {
	margin: 22px 0;
}

.mobile-navigation .menu > li {
	border-bottom: 1px solid var(--t63-line);
}

.mobile-navigation .menu a {
	display: flex;
	align-items: center;
	min-height: 52px;
	font-weight: 750;
}

.mobile-navigation .sub-menu {
	padding: 0 0 10px 16px;
}

.mobile-navigation .sub-menu a {
	min-height: 40px;
	color: var(--t63-ink-soft);
	font-size: 14px;
}

.mobile-navigation__production {
	display: flex;
	min-height: 48px;
	margin: 0 0 12px;
	padding: 0 13px;
	align-items: center;
	border: 1px solid var(--t63-line);
	border-radius: 9px;
	color: var(--t63-ink);
	gap: 9px;
	font-size: 13px;
	font-weight: 750;
}

.mobile-navigation__production svg {
	flex: 0 0 auto;
	color: var(--t63-orange);
}

.site-overlay {
	position: fixed;
	z-index: 90;
	inset: 0;
	background: rgba(10, 18, 34, .48);
	backdrop-filter: blur(2px);
}

.search-overlay {
	position: fixed;
	z-index: 120;
	inset: 0;
	display: grid;
	align-items: start;
	padding-top: min(18vh, 170px);
}

.search-overlay__backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: rgba(10, 18, 34, .62);
	backdrop-filter: blur(5px);
	cursor: pointer;
}

.search-overlay__dialog {
	position: relative;
	width: min(760px, calc(100% - 32px));
	padding: 28px;
	margin: 0 auto;
	border-radius: 20px;
	background: #fff;
	box-shadow: var(--t63-shadow);
}

.search-overlay__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.search-overlay__head h2 {
	margin: 0;
	font-size: 28px;
}

.global-search {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	padding: 6px;
	border: 1px solid var(--t63-line-dark);
	border-radius: 12px;
	gap: 7px;
}

.global-search > svg {
	margin-left: 10px;
	color: var(--t63-orange);
}

.global-search input {
	width: 100%;
	height: 46px;
	border: 0;
	outline: 0;
	color: var(--t63-ink);
}

.search-overlay__dialog > p {
	margin: 12px 0 0;
	color: var(--t63-ink-soft);
	font-size: 13px;
}

[hidden] {
	display: none !important;
}

/* Approved catalog-first front page */
.t63-search-band {
	padding: 16px 0;
	background: #fff;
}

.tool63-home {
	overflow-x: clip;
}

.t63-search-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
}

.t63-search-actions {
	display: flex;
	gap: 8px;
}

.t63-global-search {
	display: flex;
	align-items: center;
	min-height: 54px;
	padding: 0 18px;
	border: 1px solid var(--t63-line-dark);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 5px 16px rgba(25, 36, 57, .03);
	gap: 12px;
}

.t63-global-search:focus-within {
	border-color: var(--t63-orange);
	box-shadow: 0 0 0 4px rgba(252, 103, 2, .09);
}

.t63-global-search svg {
	flex: 0 0 auto;
	color: #7d8799;
}

.t63-global-search input {
	width: 100%;
	min-width: 0;
	height: 52px;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--t63-ink);
	font-size: 15px;
}

.t63-request-button {
	display: inline-flex;
	min-height: 54px;
	padding: 0 24px;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: var(--t63-orange);
	color: #fff;
	box-shadow: 0 9px 23px rgba(252, 103, 2, .2);
	gap: 9px;
	font-weight: 800;
}

.t63-request-button:hover {
	background: var(--t63-orange-dark);
}

.t63-request-button--price {
	border: 1px solid var(--t63-orange);
	background: #fff;
	color: var(--t63-orange-dark);
	box-shadow: none;
}

.t63-request-button--price:hover {
	background: var(--t63-orange-pale);
	color: var(--t63-orange-dark);
}

.t63-hero {
	display: grid;
	grid-template-columns: minmax(340px, .78fr) minmax(580px, 1.22fr);
	padding-bottom: 20px;
	gap: 16px;
}

.t63-hero-copy,
.t63-filter-lab {
	min-height: 525px;
	border: 1px solid var(--t63-line);
	border-radius: 17px;
}

.t63-hero-copy {
	display: flex;
	overflow: hidden;
	padding: 39px 36px 26px;
	flex-direction: column;
	justify-content: space-between;
	background:
		radial-gradient(circle at 90% 8%, rgba(252, 103, 2, .1), transparent 27%),
		linear-gradient(135deg, #fff, #fbfcfd);
}

.t63-hero h1 {
	max-width: 570px;
	margin: 15px 0 16px;
	font-size: clamp(36px, 3.1vw, 55px);
	font-weight: 800;
	letter-spacing: -.05em;
	line-height: 1.04;
}

.t63-hero h1 em {
	display: block;
	color: var(--t63-orange);
	font-style: normal;
}

.t63-hero-copy > div > p {
	max-width: 520px;
	margin: 0;
	color: var(--t63-ink-soft);
	font-size: 16px;
	line-height: 1.65;
}

.t63-hero-actions {
	display: flex;
	margin-top: 26px;
	flex-wrap: wrap;
	gap: 10px;
}

.t63-trust-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding-top: 21px;
	border-top: 1px solid var(--t63-line);
	gap: 14px;
}

.t63-trust-row span {
	display: flex;
	align-items: center;
	gap: 8px;
}

.t63-trust-row svg {
	flex: 0 0 auto;
	color: var(--t63-orange);
}

.t63-trust-row small {
	color: #788397;
	font-size: 10px;
	line-height: 1.35;
}

.t63-filter-lab {
	position: relative;
	overflow: hidden;
	padding: 23px;
	background:
		linear-gradient(130deg, rgba(252, 103, 2, .04), transparent 34%),
		#fbfcfd;
}

.t63-filter-head,
.t63-filter-kicker {
	display: flex;
	align-items: center;
}

.t63-filter-head {
	position: relative;
	z-index: 2;
	justify-content: space-between;
	gap: 20px;
}

.t63-filter-kicker {
	color: var(--t63-orange-dark);
	gap: 6px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.t63-filter-head h2 {
	margin: 4px 0 0;
	font-size: 24px;
	font-weight: 520;
	letter-spacing: -.03em;
}

.t63-reset-button {
	display: inline-flex;
	padding: 9px 12px;
	align-items: center;
	border: 1px solid var(--t63-line);
	border-radius: 8px;
	background: rgba(255, 255, 255, .82);
	color: #6a7588;
	gap: 6px;
	font-size: 12px;
	cursor: pointer;
}

.t63-filter-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	margin-top: 18px;
	gap: 10px;
}

.t63-hero-field {
	position: relative;
	display: flex;
	min-height: 76px;
	padding: 10px 38px 10px 13px;
	flex-direction: column;
	justify-content: center;
	border: 1px solid var(--t63-line-dark);
	border-radius: 10px;
	background: rgba(255, 255, 255, .92);
}

.t63-hero-field > span {
	margin-bottom: 3px;
	color: #8992a3;
	font-size: 11px;
}

.t63-hero-field select {
	width: 100%;
	border: 0;
	outline: 0;
	appearance: none;
	background: transparent;
	color: var(--t63-ink);
	font-size: 14px;
	font-weight: 700;
}

.t63-hero-field > svg {
	position: absolute;
	right: 13px;
	bottom: 22px;
	color: #778195;
	pointer-events: none;
}

.t63-price-field {
	padding-right: 13px;
}

.t63-price-field strong {
	font-size: 14px;
}

.t63-price-field input[type="range"] {
	--range-progress: 9%;
	width: 100%;
	height: 4px;
	margin-top: 9px;
	border-radius: 4px;
	appearance: none;
	background: linear-gradient(to right, var(--t63-orange) 0, var(--t63-orange) var(--range-progress), #e6e9ee var(--range-progress), #e6e9ee 100%);
}

.t63-price-field input[type="range"]::-webkit-slider-thumb {
	width: 15px;
	height: 15px;
	border: 3px solid #fff;
	border-radius: 50%;
	appearance: none;
	background: var(--t63-orange);
	box-shadow: 0 0 0 1px var(--t63-orange);
	cursor: pointer;
}

.t63-filter-toggles {
	position: relative;
	z-index: 2;
	display: flex;
	margin-top: 10px;
	flex-wrap: wrap;
	gap: 8px;
}

.t63-filter-toggles label {
	display: inline-flex;
	min-height: 36px;
	padding: 0 12px;
	align-items: center;
	border: 1px solid var(--t63-line-dark);
	border-radius: 8px;
	background: rgba(255, 255, 255, .9);
	color: #556176;
	gap: 8px;
	font-size: 12px;
	cursor: pointer;
}

.t63-filter-toggles input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.t63-check-box {
	display: grid;
	width: 17px;
	height: 17px;
	border: 1px solid #b7beca;
	border-radius: 4px;
	background: #fff;
	color: transparent;
	place-items: center;
}

.t63-filter-toggles input:checked + .t63-check-box {
	border-color: var(--t63-orange);
	background: var(--t63-orange);
	color: #fff;
}

.t63-filter-toggles label:has(input:checked) {
	border-color: #ffc29a;
	background: var(--t63-orange-pale);
	color: var(--t63-orange-dark);
}

.t63-tool-stage {
	position: absolute;
	right: -1%;
	bottom: 55px;
	left: 4%;
	height: 235px;
	pointer-events: none;
}

.t63-stage-glow {
	position: absolute;
	right: 5%;
	bottom: 12px;
	width: 78%;
	height: 70px;
	border-radius: 50%;
	background: rgba(252, 103, 2, .08);
	filter: blur(25px);
}

.t63-tool-stage img {
	position: absolute;
	right: -2%;
	bottom: -3px;
	width: 94%;
	height: 235px;
	max-width: none;
	object-fit: cover;
	object-position: 63% center;
	mix-blend-mode: multiply;
	filter: contrast(1.04) saturate(.92);
}

.t63-stage-chip {
	position: absolute;
	z-index: 1;
	display: inline-flex;
	min-height: 28px;
	padding: 0 11px;
	align-items: center;
	border: 1px solid rgba(252, 103, 2, .22);
	border-radius: 20px;
	background: rgba(255, 255, 255, .88);
	color: var(--t63-orange-dark);
	box-shadow: 0 5px 15px rgba(20, 33, 61, .08);
	font-size: 10px;
	font-weight: 750;
}

.t63-chip-one { top: 35px; left: 7%; }
.t63-chip-two { top: 17px; left: 37%; }
.t63-chip-three { top: 54px; right: 8%; }

.t63-result-bar {
	position: absolute;
	z-index: 3;
	right: 20px;
	bottom: 18px;
	left: 20px;
	display: flex;
	min-height: 48px;
	padding: 7px 8px 7px 14px;
	align-items: center;
	justify-content: space-between;
	border: 1px solid var(--t63-line);
	border-radius: 10px;
	background: rgba(255, 255, 255, .93);
	box-shadow: 0 8px 25px rgba(20, 33, 61, .08);
	gap: 12px;
}

.t63-result-bar span,
.t63-result-bar button {
	display: inline-flex;
	align-items: center;
}

.t63-result-bar span {
	color: #657084;
	gap: 7px;
	font-size: 12px;
}

.t63-result-bar span svg {
	color: var(--t63-green);
}

.t63-result-bar button {
	min-height: 34px;
	padding: 0 13px;
	border: 0;
	border-radius: 7px;
	background: var(--t63-orange);
	color: #fff;
	gap: 7px;
	font-size: 12px;
	font-weight: 750;
	cursor: pointer;
}

.t63-quick-categories {
	padding-bottom: 10px;
}

.t63-quick-track {
	display: flex;
	padding: 10px;
	overflow-x: auto;
	border: 1px solid var(--t63-line);
	border-radius: 13px;
	gap: 7px;
	scrollbar-width: thin;
}

.t63-quick-track a {
	display: inline-flex;
	min-height: 42px;
	padding: 0 14px;
	flex: 0 0 auto;
	align-items: center;
	border: 1px solid var(--t63-line);
	border-radius: 8px;
	background: #fff;
	color: #5f6b7f;
	gap: 8px;
	font-size: 12px;
}

.t63-quick-track a:hover,
.t63-quick-track a.is-active {
	border-color: var(--t63-orange);
	background: var(--t63-orange);
	color: #fff;
}

.t63-quick-track small {
	display: grid;
	min-width: 21px;
	height: 21px;
	padding: 0 5px;
	border-radius: 12px;
	background: var(--t63-surface-soft);
	color: #7c8698;
	place-items: center;
	font-size: 9px;
}

.t63-quick-track a:hover small,
.t63-quick-track a.is-active small {
	background: rgba(255, 255, 255, .2);
	color: #fff;
}

.t63-products-section {
	min-width: 0;
	overflow-x: clip;
	padding-block: 60px 82px;
}

.t63-products-section > .woocommerce {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	margin-top: 27px;
}

.t63-products-section .woocommerce ul.products {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.t63-products-section .woocommerce ul.products li.product a img {
	aspect-ratio: 1.55 / 1;
}

.t63-promo-section {
	padding-bottom: 70px;
}

.t63-promo-panel {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	min-height: 225px;
	padding: 36px 42px;
	overflow: hidden;
	align-items: center;
	border-radius: 18px;
	background: var(--t63-orange);
	color: #fff;
	gap: 28px;
}

.t63-promo-icon {
	display: grid;
	z-index: 1;
	width: 64px;
	height: 64px;
	border: 1px solid rgba(255, 255, 255, .25);
	border-radius: 16px;
	background: rgba(255, 255, 255, .12);
	place-items: center;
}

.t63-promo-copy {
	position: relative;
	z-index: 1;
}

.t63-promo-copy > span {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.t63-promo-copy h2 {
	max-width: 760px;
	margin: 8px 0;
	color: #fff;
	font-size: clamp(27px, 3vw, 40px);
	letter-spacing: -.04em;
	line-height: 1.08;
}

.t63-promo-copy p {
	max-width: 760px;
	margin: 0;
	color: rgba(255, 255, 255, .82);
	font-size: 14px;
	line-height: 1.6;
}

.t63-light-button {
	position: relative;
	z-index: 1;
	display: inline-flex;
	min-height: 48px;
	padding: 0 20px;
	align-items: center;
	justify-content: center;
	border-radius: 9px;
	background: #fff;
	color: var(--t63-orange-dark);
	gap: 9px;
	font-weight: 800;
	white-space: nowrap;
}

.t63-promo-pattern {
	position: absolute;
	top: 7px;
	right: 15%;
	color: rgba(255, 255, 255, .12);
	transform: rotate(-13deg);
}

.t63-service-section {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding-bottom: 80px;
	gap: 14px;
}

.t63-service-section article {
	display: flex;
	min-height: 140px;
	padding: 26px;
	align-items: flex-start;
	border: 1px solid var(--t63-line);
	border-radius: 14px;
	gap: 15px;
}

.t63-service-section article > svg {
	flex: 0 0 auto;
	color: var(--t63-orange);
}

.t63-service-section h3 {
	margin: 0 0 6px;
	font-size: 17px;
}

.t63-service-section p {
	margin: 0;
	color: var(--t63-ink-soft);
	font-size: 13px;
	line-height: 1.55;
}

.t63-articles-section {
	padding: 74px 0 82px;
	background: var(--t63-surface-soft);
}

.t63-article-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 29px;
	gap: 14px;
}

.t63-article-grid > article {
	overflow: hidden;
	border: 1px solid var(--t63-line);
	border-radius: 14px;
	background: #fff;
	transition: transform .25s ease, box-shadow .25s ease;
}

.t63-article-grid > article:hover {
	box-shadow: var(--t63-shadow-sm);
	transform: translateY(-4px);
}

.t63-article-visual {
	position: relative;
	display: grid;
	height: 190px;
	overflow: hidden;
	background: #e9edf1;
	color: var(--t63-ink);
	place-items: center;
}

.t63-article-visual::before,
.t63-article-visual::after {
	position: absolute;
	width: 220px;
	height: 36px;
	border-radius: 30px;
	background: linear-gradient(90deg, #c7ccd2, #f2f3f5);
	content: "";
	transform: rotate(-16deg);
}

.t63-article-visual::after {
	height: 17px;
	transform: translate(28px, 46px) rotate(-16deg);
}

.t63-article-visual > svg {
	position: relative;
	z-index: 2;
	filter: drop-shadow(0 10px 14px rgba(20, 33, 61, .17));
}

.t63-article-visual > span {
	position: absolute;
	z-index: 2;
	top: 15px;
	left: 17px;
	color: rgba(20, 33, 61, .18);
	font-size: 30px;
	font-weight: 900;
}

.t63-article-2 { background: #e6e9ed; }
.t63-article-3 { background: #ece8e5; color: var(--t63-orange-dark); }

.t63-article-body {
	padding: 21px;
}

.t63-article-body > span {
	color: var(--t63-orange-dark);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.t63-article-body h3 {
	min-height: 52px;
	margin: 9px 0 13px;
	font-size: 19px;
	line-height: 1.35;
}

.t63-article-body p,
.t63-article-body > a {
	display: flex;
	align-items: center;
	gap: 6px;
}

.t63-article-body p {
	color: #8992a3;
	font-size: 11px;
}

.t63-article-body > a {
	margin-top: 16px;
	font-size: 12px;
	font-weight: 750;
}

.t63-help-section {
	display: grid;
	grid-template-columns: 1fr .8fr;
	padding-block: 74px;
	align-items: center;
	gap: 60px;
}

.t63-help-section h2 {
	margin: 9px 0 10px;
	font-size: clamp(30px, 3vw, 44px);
	letter-spacing: -.04em;
}

.t63-help-section p {
	max-width: 650px;
	margin: 0;
	color: var(--t63-ink-soft);
	line-height: 1.65;
}

.t63-help-form .tool63-form--compact {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	padding: 9px;
	border: 1px solid var(--t63-line-dark);
	border-radius: 12px;
	background: #fff;
	box-shadow: var(--t63-shadow);
	gap: 9px;
}

.t63-help-form .tool63-form__compact-field {
	display: flex;
	padding: 6px 10px;
	flex-direction: column;
}

.t63-help-form .tool63-form__compact-field span {
	color: #8992a3;
	font-size: 9px;
}

.t63-help-form .tool63-form__compact-field input {
	min-width: 0;
	min-height: 26px;
	padding: 0;
	margin-top: 3px;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--t63-ink);
	font-weight: 650;
}

.t63-help-form .tool63-form__consent,
.t63-help-form .tool63-form__message {
	grid-column: 1 / -1;
}

.t63-help-form .tool63-form__consent {
	padding: 2px 7px 4px;
	color: #748095 !important;
}

.t63-help-form .tool63-form__consent a {
	color: var(--t63-orange-dark);
}

.home .service-strip {
	display: none;
}

.home-hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 85% 20%, rgba(252, 103, 2, .11), transparent 30%),
		linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
}

.home-hero::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc(50% + 220px);
	width: 1px;
	background: linear-gradient(transparent, var(--t63-line), transparent);
	content: "";
}

.home-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(540px, 1.1fr);
	align-items: center;
	min-height: 670px;
	gap: 55px;
}

.home-hero__content {
	position: relative;
	z-index: 2;
	padding: 70px 0;
}

.home-hero h1 {
	max-width: 790px;
	margin-bottom: 22px;
}

.home-hero__content > p {
	max-width: 660px;
	margin-bottom: 29px;
	color: var(--t63-ink-soft);
	font-size: 18px;
}

.hero-search {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	max-width: 680px;
	padding: 6px;
	border: 1px solid var(--t63-line-dark);
	border-radius: 12px;
	background: #fff;
	box-shadow: var(--t63-shadow-sm);
	gap: 8px;
}

.hero-search > svg {
	margin-left: 10px;
	color: var(--t63-orange);
}

.hero-search input {
	width: 100%;
	height: 47px;
	border: 0;
	outline: none;
}

.home-hero__actions {
	display: flex;
	align-items: center;
	margin-top: 17px;
	gap: 22px;
}

.hero-benefits {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 27px 0 0;
	gap: 10px 18px;
	list-style: none;
	color: var(--t63-ink-soft);
	font-size: 13px;
}

.hero-benefits li {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.hero-benefits svg {
	color: var(--t63-green);
}

.home-hero__visual {
	position: relative;
	align-self: stretch;
	min-height: 540px;
}

.home-hero__visual img {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	width: 118%;
	max-width: none;
	transform: translate(-47%, -48%);
	filter: drop-shadow(0 34px 28px rgba(18, 26, 42, .17));
}

.home-hero__visual::after {
	position: absolute;
	z-index: 0;
	top: 50%;
	left: 50%;
	width: 390px;
	height: 390px;
	border: 1px solid rgba(252, 103, 2, .18);
	border-radius: 50%;
	background: rgba(255, 255, 255, .45);
	content: "";
	transform: translate(-50%, -50%);
}

.home-hero__visual-label {
	position: absolute;
	z-index: 2;
	top: 75px;
	right: 25px;
	padding: 9px 13px;
	border: 1px solid var(--t63-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, .84);
	color: var(--t63-ink-soft);
	font-size: 12px;
	font-weight: 700;
	backdrop-filter: blur(8px);
}

.hero-stat {
	position: absolute;
	z-index: 3;
	right: 35px;
	bottom: 66px;
	display: flex;
	align-items: center;
	padding: 15px 18px;
	border: 1px solid rgba(255, 255, 255, .75);
	border-radius: 14px;
	background: rgba(255, 255, 255, .88);
	box-shadow: var(--t63-shadow-sm);
	gap: 12px;
	backdrop-filter: blur(12px);
}

.hero-stat strong {
	color: var(--t63-orange-dark);
	font-size: 25px;
}

.hero-stat span {
	color: var(--t63-ink-soft);
	font-size: 12px;
}

.section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 32px;
	gap: 24px;
}

.section-heading h2 {
	margin-bottom: 0;
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	border-top: 1px solid var(--t63-line);
	border-left: 1px solid var(--t63-line);
}

.category-card {
	position: relative;
	display: flex;
	min-height: 190px;
	padding: 22px;
	flex-direction: column;
	border-right: 1px solid var(--t63-line);
	border-bottom: 1px solid var(--t63-line);
	background: #fff;
	transition: background var(--t63-transition), box-shadow var(--t63-transition), transform var(--t63-transition);
}

.category-card:hover {
	z-index: 2;
	background: var(--t63-orange-pale);
	box-shadow: var(--t63-shadow-sm);
	transform: translateY(-2px);
}

.category-card__number {
	margin-bottom: auto;
	color: #a1a9b6;
	font-size: 12px;
	font-weight: 800;
}

.category-card strong {
	margin-bottom: 6px;
	font-size: 18px;
	line-height: 1.2;
}

.category-card > span:not(.category-card__number) {
	color: var(--t63-ink-soft);
	font-size: 12px;
}

.category-card > svg {
	position: absolute;
	right: 20px;
	bottom: 20px;
	color: var(--t63-orange);
}

.selection-section {
	background:
		linear-gradient(120deg, rgba(252, 103, 2, .09), transparent 48%),
		var(--t63-surface-dark);
	color: #fff;
}

.selection-section__grid {
	display: grid;
	grid-template-columns: 1.05fr .8fr;
	align-items: center;
	gap: 90px;
}

.selection-section h2 {
	max-width: 720px;
	color: #fff;
}

.selection-section__grid > div > p {
	max-width: 690px;
	color: #b9c3d7;
	font-size: 17px;
}

.selection-section ul {
	display: grid;
	padding: 0;
	margin: 28px 0 0;
	gap: 10px;
	list-style: none;
}

.selection-section li {
	display: flex;
	align-items: center;
	gap: 9px;
}

.selection-section li svg {
	color: #ff9f5f;
}

.selection-section__form {
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 18px;
	background: rgba(255, 255, 255, .07);
	box-shadow: 0 25px 65px rgba(0, 0, 0, .19);
	backdrop-filter: blur(10px);
}

.selection-section__form h3 {
	color: #fff;
}

.selection-section__form p {
	color: #c7cede;
}

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

.article-card {
	overflow: hidden;
	border: 1px solid var(--t63-line);
	border-radius: var(--t63-radius);
	background: #fff;
	transition: border-color var(--t63-transition), box-shadow var(--t63-transition), transform var(--t63-transition);
}

.article-card:hover {
	border-color: #ccd2dd;
	box-shadow: var(--t63-shadow-sm);
	transform: translateY(-3px);
}

.article-card__image {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: var(--t63-surface-soft);
}

.article-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 350ms ease;
}

.article-card:hover .article-card__image img {
	transform: scale(1.035);
}

.article-card__placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	color: #9fa8b7;
	place-items: center;
}

.article-card__body {
	padding: 22px;
}

.article-card__meta {
	display: flex;
	margin-bottom: 12px;
	gap: 12px;
	color: var(--t63-ink-soft);
	font-size: 12px;
}

.article-card h2 {
	margin-bottom: 11px;
	font-size: 22px;
}

.article-card h2 a:hover {
	color: var(--t63-orange-dark);
}

.article-card p {
	color: var(--t63-ink-soft);
	font-size: 14px;
}

.article-card .text-link {
	font-size: 13px;
}

.service-strip {
	border-top: 1px solid var(--t63-line);
	background: #fff;
}

.service-strip__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.service-item {
	display: flex;
	align-items: center;
	min-height: 122px;
	padding: 22px 26px;
	border-right: 1px solid var(--t63-line);
	gap: 14px;
}

.service-item:first-child {
	border-left: 1px solid var(--t63-line);
}

.service-item__icon {
	display: grid;
	width: 48px;
	height: 48px;
	flex: 0 0 auto;
	border-radius: 12px;
	background: var(--t63-orange-pale);
	color: var(--t63-orange-dark);
	line-height: 0;
	place-items: center;
}

.service-item strong,
.service-item div > span {
	display: block;
}

.service-item__icon svg {
	display: block;
	width: 24px;
	height: 24px;
	margin: 0;
}

.service-item__icon .icon-check {
	transform: translateY(1px);
}

.service-item strong {
	margin-bottom: 3px;
	font-size: 14px;
}

.service-item div span {
	color: var(--t63-ink-soft);
	font-size: 12px;
}

.site-footer {
	padding: 64px 0 20px;
	background: #0d172b;
	color: #c2c9d7;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.35fr repeat(3, 1fr);
	padding-bottom: 48px;
	gap: 65px;
}

.site-logo--footer .site-logo__text {
	color: #fff;
}

.site-footer__brand > p {
	max-width: 370px;
	margin: 20px 0 0;
	color: #aeb8ca;
	font-size: 14px;
}

.site-footer__production {
	display: inline-flex;
	align-items: center;
	margin-top: 18px;
	color: #fff;
	gap: 8px;
	font-size: 13px;
	font-weight: 750;
}

.site-footer__production svg {
	color: var(--t63-orange);
}

.site-footer__production:hover span {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.site-footer__legal-note {
	font-size: 11px !important;
}

.footer-widget__title {
	margin-bottom: 20px;
	color: #fff;
	font-size: 16px;
	letter-spacing: -.015em;
}

.footer-widget ul {
	display: grid;
	gap: 10px;
}

.footer-widget a,
.footer-widget span {
	color: #b4bdcc;
	font-size: 13px;
	transition: color var(--t63-transition);
}

.footer-widget a:hover {
	color: #fff;
}

.footer-contacts {
	display: grid;
	align-content: start;
	gap: 10px;
}

.footer-contacts a:first-of-type {
	color: #fff;
	font-size: 18px;
	font-weight: 800;
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 64px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	gap: 24px;
	color: #8e99ac;
	font-size: 12px;
}

.site-footer__bottom nav {
	display: flex;
	align-items: center;
	gap: 18px;
}

.site-footer__bottom nav > ul {
	display: contents;
}

.site-footer__bottom a:hover {
	color: #fff;
}

.site-footer__bottom button {
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
}

.site-footer__bottom button[data-cookie-settings] {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.site-breadcrumbs {
	padding: 24px 0 10px;
	color: var(--t63-ink-soft);
	font-size: 12px;
}

.site-breadcrumbs nav,
.site-breadcrumbs .rank-math-breadcrumb p {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0;
	gap: 8px;
}

.site-breadcrumbs a:hover {
	color: var(--t63-orange-dark);
}

.page-header {
	padding: 42px 0 35px;
}

.page-header h1 {
	margin-bottom: 0;
	font-size: clamp(38px, 4vw, 60px);
}

.page-header > p,
.page-header .archive-description {
	max-width: 760px;
	margin: 16px 0 0;
	color: var(--t63-ink-soft);
}

.page-header--split {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
}

.page-header--split .search-form {
	flex: 0 1 360px;
}

.standard-page {
	padding-bottom: 80px;
}

.entry-content {
	color: #344159;
}

.entry-content--page {
	max-width: 1040px;
	padding: 5px 0 80px;
}

.entry-content--narrow {
	max-width: 980px;
}

.entry-content h2 {
	margin-top: 1.7em;
	margin-bottom: .65em;
	font-size: clamp(27px, 3vw, 38px);
}

.entry-content h3 {
	margin-top: 1.55em;
	margin-bottom: .6em;
}

.entry-content p,
.entry-content ul,
.entry-content ol {
	margin-bottom: 1.25em;
}

.entry-content a:not(.button) {
	color: var(--t63-orange-dark);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.tool63-legacy-elementor--contained {
	max-width: 100%;
	padding: 5px 0 80px;
	overflow: clip;
}

.tool63-legacy-elementor--contained .elementor,
.tool63-legacy-elementor--contained .elementor-section-wrap,
.tool63-legacy-elementor--contained .e-con {
	max-width: 100%;
}

.tool63-legacy-elementor--contained .elementor-section.elementor-section-stretched {
	left: auto !important;
	width: 100% !important;
	max-width: 100% !important;
}

.entry-content table {
	width: 100%;
	margin: 28px 0;
	border-collapse: collapse;
}

.entry-content th,
.entry-content td {
	padding: 14px;
	border: 1px solid var(--t63-line);
	text-align: left;
}

.entry-content th {
	background: var(--t63-surface-soft);
}

.entry-content blockquote {
	padding: 22px 25px;
	margin: 28px 0;
	border-left: 4px solid var(--t63-orange);
	border-radius: 0 12px 12px 0;
	background: var(--t63-orange-pale);
}

.legacy-elementor-page {
	overflow: clip;
}

.tool63-legacy-elementor {
	min-height: 300px;
}

.blog-index,
.single-post-page,
.search-results-page {
	padding-bottom: 90px;
}

.article-header {
	max-width: 1040px;
	padding: 38px 0 36px;
}

.article-header__meta {
	display: flex;
	margin-bottom: 16px;
	gap: 14px;
	color: var(--t63-orange-dark);
	font-size: 13px;
	font-weight: 700;
}

.article-header h1 {
	margin-bottom: 20px;
}

.article-header__lead {
	max-width: 850px;
	color: var(--t63-ink-soft);
	font-size: 20px;
}

.article-cover {
	overflow: hidden;
	margin: 0 0 44px;
	border-radius: var(--t63-radius-lg);
	background: var(--t63-surface-soft);
}

.article-cover img {
	display: block;
	width: 100%;
	max-height: 680px;
	object-fit: cover;
}

.article-layout {
	display: grid;
	grid-template-columns: minmax(0, 900px) 300px;
	align-items: start;
	justify-content: space-between;
	gap: 60px;
}

.article-content {
	font-size: 17px;
}

.article-content .wp-block-gallery,
.article-content .gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	padding: 0;
	margin: 30px 0;
	gap: 12px;
}

.article-content .gallery-columns-1 {
	grid-template-columns: 1fr;
}

.article-content .gallery-columns-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-content .gallery-columns-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.article-content .wp-block-gallery.has-nested-images figure.wp-block-image,
.article-content .gallery-item {
	width: auto !important;
	max-width: none;
	padding: 0;
	margin: 0 !important;
}

.article-content .wp-block-gallery a,
.article-content .gallery-item a,
.article-content .wp-block-image > a {
	display: block;
	overflow: hidden;
	border-radius: 11px;
	background: var(--t63-surface-soft);
	cursor: zoom-in;
}

.article-content .wp-block-gallery img,
.article-content .gallery-item img {
	display: block;
	width: 100% !important;
	height: auto;
	aspect-ratio: 4 / 3;
	border: 0 !important;
	object-fit: cover;
	transition: transform 240ms ease;
}

.article-content .wp-block-gallery a:hover img,
.article-content .gallery-item a:hover img {
	transform: scale(1.025);
}

.article-content .wp-block-gallery figcaption,
.article-content .gallery-caption {
	padding: 7px 4px 0;
	color: var(--t63-ink-soft);
	font-size: 11px;
	line-height: 1.45;
	text-align: left;
}

.tool63-lightbox[hidden] {
	display: none;
}

.tool63-lightbox {
	position: fixed;
	z-index: 1200;
	inset: 0;
	display: grid;
	padding: 24px;
	place-items: center;
}

.tool63-lightbox__backdrop {
	position: absolute;
	inset: 0;
	border: 0;
	background: rgba(7, 13, 25, .9);
	cursor: zoom-out;
	backdrop-filter: blur(8px);
}

.tool63-lightbox__dialog {
	position: relative;
	z-index: 1;
	display: grid;
	width: min(1260px, 100%);
	height: min(88vh, 900px);
	grid-template-columns: 54px minmax(0, 1fr) 54px;
	align-items: center;
	gap: 12px;
}

.tool63-lightbox figure {
	display: grid;
	min-width: 0;
	height: 100%;
	padding: 0;
	margin: 0;
	place-items: center;
}

.tool63-lightbox figure img {
	display: block;
	max-width: 100%;
	max-height: calc(88vh - 52px);
	border-radius: 8px;
	box-shadow: 0 24px 75px rgba(0, 0, 0, .38);
	object-fit: contain;
}

.tool63-lightbox figcaption {
	align-self: end;
	padding-top: 9px;
	color: #e0e5ee;
	font-size: 12px;
	text-align: center;
}

.tool63-lightbox__close,
.tool63-lightbox__nav {
	display: grid;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .24);
	border-radius: 50%;
	background: rgba(255, 255, 255, .1);
	color: #fff;
	font-size: 31px;
	line-height: 1;
	cursor: pointer;
	place-items: center;
	backdrop-filter: blur(8px);
}

.tool63-lightbox__nav svg {
	display: block;
	width: 22px;
	height: 22px;
	margin: 0;
}

.tool63-lightbox__close {
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
}

.tool63-lightbox__nav:hover,
.tool63-lightbox__close:hover {
	background: var(--t63-orange);
	border-color: var(--t63-orange);
}

.tool63-lightbox__nav--prev {
	grid-column: 1;
}

.tool63-lightbox figure {
	grid-column: 2;
}

.tool63-lightbox__nav--next {
	grid-column: 3;
}

.article-sidebar {
	position: sticky;
	top: 110px;
}

.article-help-card {
	padding: 24px;
	border: 1px solid var(--t63-line);
	border-radius: var(--t63-radius);
	background: var(--t63-surface-soft);
}

.article-help-card strong {
	display: block;
	margin-bottom: 10px;
	font-size: 18px;
}

.article-help-card p {
	color: var(--t63-ink-soft);
	font-size: 13px;
}

.post-navigation {
	margin-top: 60px;
	border-top: 1px solid var(--t63-line);
}

.post-navigation .nav-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.post-navigation a {
	display: flex;
	padding: 25px 0;
	flex-direction: column;
}

.post-navigation .nav-next {
	text-align: right;
}

.post-navigation span {
	color: var(--t63-ink-soft);
	font-size: 12px;
}

.post-navigation strong {
	font-size: 15px;
}

.search-form {
	position: relative;
}

.search-form label,
.search-form input {
	display: block;
	width: 100%;
}

.search-form input {
	height: 48px;
	padding: 0 48px 0 15px;
	border: 1px solid var(--t63-line-dark);
	border-radius: 10px;
	outline: 0;
}

.search-form input:focus {
	border-color: var(--t63-orange);
	box-shadow: 0 0 0 3px rgba(252, 103, 2, .11);
}

.search-submit {
	position: absolute;
	top: 4px;
	right: 4px;
	display: grid;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 8px;
	background: transparent;
	place-items: center;
	cursor: pointer;
}

.search-submit:hover {
	background: var(--t63-orange-pale);
	color: var(--t63-orange-dark);
}

.search-product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	padding: 0;
	margin: 0;
	gap: 18px;
	list-style: none;
}

.empty-state {
	display: grid;
	max-width: 620px;
	padding: 70px 24px 95px;
	margin: 0 auto;
	text-align: center;
	justify-items: center;
}

.empty-state__icon {
	display: grid;
	width: 78px;
	height: 78px;
	margin-bottom: 20px;
	border-radius: 50%;
	background: var(--t63-orange-pale);
	color: var(--t63-orange-dark);
	place-items: center;
}

.empty-state h2 {
	margin-bottom: 10px;
}

.empty-state p {
	max-width: 430px;
	color: var(--t63-ink-soft);
}

.error-page {
	background:
		radial-gradient(circle at center, rgba(252, 103, 2, .1), transparent 36%),
		var(--t63-surface-soft);
}

.error-page__inner {
	display: flex;
	min-height: 620px;
	padding: 80px 0;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.error-page__code {
	color: var(--t63-orange);
	font-size: clamp(100px, 18vw, 220px);
	font-weight: 950;
	letter-spacing: -.09em;
	line-height: .75;
}

.error-page h1 {
	margin: 35px 0 10px;
	font-size: 44px;
}

.error-page p {
	max-width: 560px;
	color: var(--t63-ink-soft);
}

.error-page__actions {
	display: flex;
	margin-top: 15px;
	gap: 10px;
}

.nav-links,
.woocommerce-pagination ul {
	display: flex;
	justify-content: center;
	padding: 30px 0 0;
	gap: 7px;
	list-style: none;
}

.page-numbers {
	display: grid;
	min-width: 42px;
	height: 42px;
	padding: 0 8px;
	border: 1px solid var(--t63-line);
	border-radius: 9px;
	background: #fff;
	place-items: center;
}

.page-numbers.current,
a.page-numbers:hover {
	border-color: var(--t63-orange);
	background: var(--t63-orange);
	color: #fff;
}

.tool63-form {
	display: grid;
	gap: 14px;
}

.tool63-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.tool63-form label {
	display: grid;
	gap: 6px;
	color: inherit;
	font-size: 13px;
	font-weight: 700;
}

.tool63-form input,
.tool63-form textarea,
.tool63-form select {
	width: 100%;
	min-height: 48px;
	padding: 10px 13px;
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 9px;
	background: rgba(255, 255, 255, .09);
	color: #fff;
	outline: 0;
}

.tool63-form textarea {
	min-height: 100px;
	resize: vertical;
}

.tool63-form input::placeholder,
.tool63-form textarea::placeholder {
	color: #aab4c7;
}

.tool63-form input:focus,
.tool63-form textarea:focus {
	border-color: #ff9f5f;
	box-shadow: 0 0 0 3px rgba(252, 103, 2, .14);
}

.tool63-form__consent {
	display: grid !important;
	grid-template-columns: auto 1fr;
	align-items: start;
	color: #bac4d6 !important;
	font-size: 11px !important;
	font-weight: 400 !important;
}

.tool63-form__consent input {
	width: 16px;
	min-height: 16px;
	margin-top: 2px;
}

.tool63-form__consent a {
	color: #fff;
	text-decoration: underline;
}

.tool63-form__message {
	padding: 11px 13px;
	border-radius: 8px;
	background: rgba(255, 255, 255, .1);
	font-size: 13px;
}

.t63-request-modal {
	position: fixed;
	z-index: 1300;
	inset: 0;
	display: grid;
	padding: 22px;
	overflow-y: auto;
	place-items: center;
}

.t63-request-modal__backdrop {
	position: fixed;
	inset: 0;
	border: 0;
	background: rgba(7, 13, 25, .76);
	cursor: default;
	backdrop-filter: blur(7px);
}

.t63-request-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(720px, 100%);
	padding: 34px;
	border: 1px solid var(--t63-line);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 30px 90px rgba(7, 13, 25, .35);
}

.t63-request-modal__dialog h2 {
	margin: 7px 42px 8px 0;
	font-size: clamp(29px, 4vw, 42px);
}

.t63-request-modal__dialog > p {
	max-width: 620px;
	margin-bottom: 23px;
	color: var(--t63-ink-soft);
	font-size: 14px;
}

.t63-request-modal__close {
	position: absolute;
	top: 18px;
	right: 18px;
	display: grid;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid var(--t63-line-dark);
	border-radius: 50%;
	background: #fff;
	color: var(--t63-ink);
	font-size: 25px;
	line-height: 1;
	cursor: pointer;
	place-items: center;
}

.t63-request-modal__close:hover {
	border-color: var(--t63-orange);
	color: var(--t63-orange-dark);
}

.t63-request-modal .tool63-form {
	gap: 12px;
}

.t63-request-modal .tool63-form label {
	color: var(--t63-ink);
}

.t63-request-modal .tool63-form input,
.t63-request-modal .tool63-form textarea,
.t63-request-modal .tool63-form select {
	min-height: 46px;
	border-color: var(--t63-line-dark);
	background: #fff;
	color: var(--t63-ink);
}

.t63-request-modal .tool63-form textarea {
	min-height: 88px;
}

.t63-request-modal .tool63-form input::placeholder,
.t63-request-modal .tool63-form textarea::placeholder {
	color: #9aa3b2;
}

.t63-request-modal .tool63-form__consent {
	color: var(--t63-ink-soft) !important;
}

.t63-request-modal .tool63-form__consent a {
	color: var(--t63-orange-dark);
}

.t63-request-modal .tool63-form__message {
	background: var(--t63-surface-soft);
	color: var(--t63-ink);
}

.tool63-cookie-banner {
	position: fixed;
	z-index: 200;
	right: 22px;
	bottom: 22px;
	display: grid;
	width: min(560px, calc(100% - 44px));
	padding: 22px;
	border: 1px solid var(--t63-line);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 22px 70px rgba(10, 18, 34, .24);
	gap: 16px;
}

.tool63-cookie-banner__content {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 13px;
}

.tool63-cookie-banner__icon {
	display: grid;
	width: 42px;
	height: 42px;
	border-radius: 11px;
	background: var(--t63-orange-pale);
	color: var(--t63-orange-dark);
	font-weight: 900;
	place-items: center;
}

.tool63-cookie-banner strong {
	display: block;
	margin-bottom: 5px;
}

.tool63-cookie-banner p {
	margin: 0;
	color: var(--t63-ink-soft);
	font-size: 12px;
}

.tool63-cookie-banner p a {
	color: var(--t63-orange-dark);
	text-decoration: underline;
}

.tool63-cookie-banner__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tool63-cookie-banner__actions .button {
	min-height: 40px;
	padding: 0 14px;
	font-size: 12px;
}

.tool63-cookie-modal {
	position: fixed;
	z-index: 220;
	inset: 0;
	display: grid;
	padding: 20px;
	background: rgba(10, 18, 34, .6);
	place-items: center;
	backdrop-filter: blur(4px);
}

.tool63-cookie-modal__dialog {
	width: min(580px, 100%);
	padding: 26px;
	border-radius: 18px;
	background: #fff;
	box-shadow: var(--t63-shadow);
}

.tool63-cookie-modal__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.tool63-cookie-modal__head h2 {
	margin: 0;
	font-size: 27px;
}

.tool63-cookie-option {
	display: grid;
	grid-template-columns: 1fr auto;
	padding: 17px 0;
	border-top: 1px solid var(--t63-line);
	gap: 20px;
}

.tool63-cookie-option strong,
.tool63-cookie-option span {
	display: block;
}

.tool63-cookie-option span {
	margin-top: 4px;
	color: var(--t63-ink-soft);
	font-size: 12px;
}

.tool63-cookie-option input {
	width: 20px;
	height: 20px;
	accent-color: var(--t63-orange);
}

@media (max-width: 1240px) {
	.primary-nav {
		display: none;
	}

	.mobile-menu-toggle {
		display: grid;
	}

	.header-actions {
		margin-left: auto;
	}

	.home-hero__grid {
		grid-template-columns: 1fr 1fr;
	}

	.t63-hero {
		grid-template-columns: minmax(320px, .9fr) minmax(520px, 1.1fr);
	}

	.category-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.site-footer__grid {
		gap: 35px;
	}
}

@media (max-width: 1024px) {
	.utility-bar__group span:nth-child(2),
	.utility-bar__group span:nth-child(3),
	.utility-production-link,
	.utility-bar__group--right {
		display: none;
	}

	.header-phone span {
		display: none;
	}

	.header-phone {
		padding-right: 8px;
		margin-right: 0;
		border: 0;
	}

	.home-hero__grid {
		grid-template-columns: 1fr;
		min-height: 0;
		gap: 0;
	}

	.t63-hero {
		grid-template-columns: 1fr;
	}

	.t63-hero-copy,
	.t63-filter-lab {
		min-height: 510px;
	}

	.t63-products-section .woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.t63-promo-panel {
		grid-template-columns: auto 1fr;
	}

	.t63-promo-panel .t63-light-button {
		grid-column: 2;
		justify-self: start;
	}

	.t63-service-section {
		grid-template-columns: 1fr;
	}

	.t63-article-grid {
		grid-template-columns: 1fr;
	}

	.t63-article-grid > article {
		display: grid;
		grid-template-columns: .9fr 1.1fr;
	}

	.t63-help-section {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.home-hero__content {
		padding-bottom: 28px;
	}

	.home-hero__visual {
		min-height: 430px;
	}

	.home-hero__visual img {
		width: 96%;
	}

	.home-hero::before {
		display: none;
	}

	.category-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.selection-section__grid {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.service-strip__grid {
		grid-template-columns: 1fr 1fr;
	}

	.service-item:nth-child(2) {
		border-right: 1px solid var(--t63-line);
	}

	.service-item:nth-child(n+3) {
		border-top: 1px solid var(--t63-line);
	}

	.site-footer__grid {
		grid-template-columns: 1.25fr 1fr 1fr;
	}

	.footer-widget:last-child {
		grid-column: 2 / -1;
	}

	.article-layout {
		grid-template-columns: 1fr;
	}

	.article-sidebar {
		position: static;
	}

	.article-help-card {
		max-width: 520px;
	}
}

@media (max-width: 760px) {
	.shell {
		width: min(100% - 30px, var(--t63-shell));
	}

	.section {
		padding: 60px 0;
	}

	.t63-search-band {
		padding: 10px 0;
	}

	.t63-search-row {
		grid-template-columns: 1fr;
	}

	.t63-search-actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.t63-request-button {
		min-height: 46px;
		padding: 0 12px;
		font-size: 12px;
	}

	.t63-global-search {
		min-height: 48px;
	}

	.t63-global-search input {
		height: 46px;
	}

	.t63-hero {
		gap: 10px;
	}

	.t63-hero-copy,
	.t63-filter-lab {
		min-height: auto;
		border-radius: 13px;
	}

	.t63-hero-copy {
		padding: 27px 21px 20px;
	}

	.t63-hero h1 {
		font-size: 37px;
	}

	.t63-hero-copy > div > p {
		font-size: 14px;
	}

	.t63-hero-actions {
		flex-direction: column;
	}

	.t63-hero-actions .button {
		width: 100%;
	}

	.t63-trust-row {
		grid-template-columns: 1fr;
		margin-top: 28px;
	}

	.t63-filter-lab {
		min-height: 545px;
		padding: 19px 16px;
	}

	.t63-filter-head h2 {
		font-size: 20px;
	}

	.t63-reset-button {
		padding: 9px;
		font-size: 0;
	}

	.t63-filter-grid {
		grid-template-columns: 1fr;
	}

	.t63-tool-stage {
		right: -12%;
		bottom: 57px;
		left: -7%;
		height: 178px;
	}

	.t63-tool-stage img {
		width: 110%;
		height: 175px;
	}

	.t63-stage-chip {
		display: none;
	}

	.t63-result-bar {
		right: 13px;
		bottom: 13px;
		left: 13px;
	}

	.t63-result-bar span {
		max-width: 130px;
		line-height: 1.3;
	}

	.t63-products-section {
		padding-block: 43px 58px;
	}

	.t63-products-section .woocommerce ul.products {
		grid-template-columns: 1fr 1fr;
		gap: 9px;
	}

	.t63-promo-section {
		width: 100%;
		padding-bottom: 48px;
	}

	.t63-promo-panel {
		grid-template-columns: 1fr;
		padding: 28px 23px;
		border-radius: 0;
		gap: 17px;
	}

	.t63-promo-panel .t63-light-button {
		grid-column: auto;
	}

	.t63-service-section {
		padding-bottom: 55px;
	}

	.t63-articles-section {
		padding-block: 52px;
	}

	.t63-article-grid > article {
		display: block;
	}

	.t63-article-visual {
		height: 180px;
	}

	.t63-help-section {
		padding-block: 55px;
	}

	.t63-help-form .tool63-form--compact {
		grid-template-columns: 1fr;
	}

	.t63-help-form .tool63-form--compact .button {
		width: 100%;
	}

	.article-content .wp-block-gallery,
	.article-content .gallery,
	.article-content .gallery-columns-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}

	.tool63-lightbox {
		padding: 12px;
	}

	.tool63-lightbox__dialog {
		height: 92vh;
		grid-template-columns: 42px minmax(0, 1fr) 42px;
		gap: 4px;
	}

	.tool63-lightbox__close,
	.tool63-lightbox__nav {
		width: 38px;
		height: 38px;
	}

	.utility-bar__inner {
		min-height: 32px;
	}

	.site-header__row {
		min-height: 66px;
		gap: 10px;
	}

	.site-logo__text {
		font-size: 27px;
	}

	.custom-logo {
		max-width: 150px;
		max-height: 44px;
	}

	.catalog-toggle {
		width: 42px;
		min-height: 42px;
		padding: 0;
	}

	.catalog-toggle span {
		display: none;
	}

	.header-account,
	.header-phone {
		display: none;
	}

	.header-action,
	.mobile-menu-toggle {
		width: 38px;
		height: 38px;
	}

	.catalog-panel {
		display: none;
	}

	.home-hero__content {
		padding-top: 52px;
	}

	.home-hero h1 {
		font-size: clamp(39px, 12vw, 58px);
	}

	.home-hero__content > p {
		font-size: 16px;
	}

	.hero-search {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.hero-search .button {
		grid-column: 1 / -1;
		width: 100%;
	}

	.home-hero__actions {
		align-items: stretch;
		flex-direction: column;
		gap: 13px;
	}

	.home-hero__actions .text-link {
		justify-content: center;
	}

	.hero-benefits {
		display: grid;
	}

	.home-hero__visual {
		min-height: 300px;
	}

	.home-hero__visual img {
		width: 116%;
		transform: translate(-50%, -52%);
	}

	.home-hero__visual::after {
		width: 240px;
		height: 240px;
	}

	.home-hero__visual-label {
		display: none;
	}

	.hero-stat {
		right: 8px;
		bottom: 25px;
	}

	.section-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.category-grid {
		grid-template-columns: 1fr 1fr;
	}

	.category-card {
		min-height: 155px;
		padding: 17px;
	}

	.category-card strong {
		padding-right: 20px;
		font-size: 16px;
	}

	.article-grid {
		grid-template-columns: 1fr;
	}

	.selection-section__form {
		padding: 21px;
	}

	.service-strip__grid {
		grid-template-columns: 1fr;
	}

	.service-item,
	.service-item:first-child,
	.service-item:nth-child(2) {
		min-height: 98px;
		border-right: 1px solid var(--t63-line);
		border-bottom: 1px solid var(--t63-line);
		border-left: 1px solid var(--t63-line);
	}

	.site-footer {
		padding-top: 48px;
	}

	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 35px 24px;
	}

	.site-footer__brand {
		grid-column: 1 / -1;
	}

	.footer-widget:last-child {
		grid-column: 1 / -1;
	}

	.site-footer__bottom {
		align-items: flex-start;
		padding: 22px 0;
		flex-direction: column;
	}

	.site-footer__bottom nav {
		align-items: flex-start;
		flex-direction: column;
		gap: 9px;
	}

	.page-header--split {
		align-items: stretch;
		flex-direction: column;
	}

	.page-header--split .search-form {
		flex-basis: auto;
	}

	.article-header__lead {
		font-size: 17px;
	}

	.article-cover {
		margin-right: -15px;
		margin-left: -15px;
		border-radius: 0;
	}

	.post-navigation .nav-links {
		grid-template-columns: 1fr;
	}

	.post-navigation .nav-next {
		text-align: left;
	}

	.global-search {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.global-search .button {
		grid-column: 1 / -1;
	}

	.tool63-form__row {
		grid-template-columns: 1fr;
	}

	.t63-request-modal {
		padding: 12px;
		place-items: start center;
	}

	.t63-request-modal__dialog {
		padding: 27px 19px 21px;
		margin: 12px 0;
		border-radius: 14px;
	}

	.t63-request-modal__close {
		top: 12px;
		right: 12px;
	}

	.tool63-cookie-banner {
		right: 12px;
		bottom: 12px;
		width: calc(100% - 24px);
		padding: 17px;
	}

	.tool63-cookie-banner__actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.tool63-cookie-banner__actions .button:first-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 430px) {
	.t63-search-actions {
		grid-template-columns: 1fr;
	}

	.header-actions {
		gap: 1px;
	}

	.header-action {
		display: none;
	}

	.header-cart,
	.mobile-menu-toggle {
		display: grid;
	}

	.category-grid {
		grid-template-columns: 1fr;
	}

	.category-card {
		min-height: 128px;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.site-footer__brand,
	.footer-widget:last-child {
		grid-column: auto;
	}

	.error-page__actions {
		width: 100%;
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}
