/* It-matyzacje — wygląd 1:1 z oryginału (Engitech + custom) */

:root {
	--itm-cyan: #43baff;
	--itm-purple: #7141b1;
	--itm-navy: #201c3d;
	--itm-heading: #1b1d21;
	--itm-body: #6d6d6d;
	--itm-muted: #8e88b8;
	--itm-light: #f8f8f8;
	--itm-white: #fff;
	--itm-container: 1170px;
}

html { scroll-behavior: smooth; overflow-x: clip; }

body.itm-theme {
	margin: 0;
	color: var(--itm-body);
	font-family: "Nunito Sans", sans-serif;
	font-size: 16px;
	line-height: 1.875;
	background: var(--itm-white);
	overflow-x: clip;
}

.itm-theme img { max-width: 100%; height: auto; }
.itm-theme a { text-decoration: none; }
.itm-theme h1, .itm-theme h2, .itm-theme h3, .itm-theme h4, .itm-theme h5, .itm-theme h6 {
	font-family: "Montserrat", sans-serif;
	font-weight: 800;
	color: var(--itm-heading);
	line-height: 1.2;
}

.itm-theme .wp-site-blocks > header.wp-block-template-part,
.itm-theme .wp-site-blocks > footer.wp-block-template-part,
.itm-theme header.wp-block-template-part,
.itm-theme footer.wp-block-template-part {
	margin: 0;
}

.itm-theme .wp-site-blocks { padding: 0; }
.itm-theme .wp-site-blocks > * { margin-block: 0; }
.itm-theme .wp-block-group.itm-editor-section,
.itm-theme .wp-block-group.alignfull.itm-editor-section,
.itm-theme .wp-block-post-content > .wp-block-group.itm-editor-section,
.editor-styles-wrapper .wp-block-group.itm-editor-section {
	margin: 0;
	margin-block-start: 0;
	padding: 0;
	max-width: none;
}
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

/* Buttons */
.octf-btn,
.itm-btn,
.itm-theme .wp-element-button,
.itm-theme .wp-block-button__link {
	transition: all 0.3s linear;
	font-size: 14px;
	padding: 14px 30px;
	line-height: 1.43;
	display: inline-block;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	vertical-align: middle;
	font-weight: 800;
	text-align: center;
	background: var(--itm-cyan);
	cursor: pointer;
	border: 1px solid transparent;
	color: #fff !important;
	border-radius: 0;
	letter-spacing: 0.3px;
	font-family: "Nunito Sans", sans-serif;
}
.octf-btn:hover,
.octf-btn:focus,
.itm-btn:hover,
.itm-theme .wp-element-button:hover,
.itm-theme .wp-block-button__link:hover {
	background: var(--itm-purple);
	color: #fff !important;
}
.octf-btn-light {
	background: #fff;
	color: #1b1d21 !important;
}
.octf-btn-light:hover {
	background: #393463 !important;
	color: #fff !important;
	border-color: #393463;
}
.itm-btn--outline {
	background: transparent;
	border-color: #fff;
	color: #fff !important;
}

.itm-wrap {
	max-width: var(--itm-container);
	margin: 0 auto;
	padding: 0 15px;
}
.itm-center { text-align: center; }

/* ========== HEADER ========== */
.site-header,
header.wp-block-template-part {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: #fff;
}
.admin-bar .site-header,
.admin-bar header.wp-block-template-part { top: 32px; }

.header-desktop {
	background: #fff;
	border-bottom: 1px solid #141d3826;
}
.header-desktop-inner {
	display: flex;
	align-items: center;
	padding: 0 50px 0 92px;
	min-height: 100px;
}

.the-logo {
	flex: 0 0 auto;
	min-width: 0;
	margin-right: 12px;
}
.the-logo img {
	display: block;
	width: 264px;
	height: auto;
	max-width: 264px;
}

.main-navigation {
	flex: 1 1 auto;
	min-width: 0;
	height: 100px;
}
.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	font-weight: 700;
}
.main-navigation > .menu {
	display: flex;
	align-items: stretch;
	justify-content: center;
	height: 100%;
}
.main-navigation > ul > li {
	position: relative;
	display: flex;
	align-items: center;
	margin: 0 16px;
	height: 100%;
	padding: 0;
}
.main-navigation > ul > li:before {
	position: absolute;
	height: 3px;
	width: 0;
	bottom: -1px;
	right: 0;
	background: var(--itm-cyan);
	content: "";
	display: block;
	transition: all 0.3s linear;
}
.main-navigation > ul > li:hover:before,
.main-navigation > ul > li.current-menu-item:before,
.main-navigation > ul > li.current-menu-ancestor:before {
	left: 0;
	right: auto;
	width: 100%;
}
.main-navigation > ul > li > a {
	display: inline-block;
	padding: 32px 0;
	line-height: 35px;
	color: #1a1b1e;
	white-space: nowrap;
	position: relative;
	font-size: 17px;
	font-weight: 800;
	font-family: "Nunito Sans", sans-serif;
}
.main-navigation > ul > li.menu-item-has-children > a {
	padding-right: 14px;
}
.main-navigation > ul > li.menu-item-has-children > a:after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 6px;
	height: 6px;
	margin-top: -4px;
	border-right: 1.5px solid #c3c7c9;
	border-bottom: 1.5px solid #c3c7c9;
	transform: rotate(45deg);
}
.main-navigation > ul > li:hover > a,
.main-navigation > ul > li.current-menu-item > a {
	color: var(--itm-cyan);
}
.main-navigation > ul > li:hover > a:after {
	border-color: var(--itm-cyan);
}

.main-navigation ul ul.sub-menu {
	min-width: 420px;
	padding: 25px 0;
	position: absolute;
	top: calc(100% + 1px);
	left: 0;
	z-index: 20;
	background: #fff;
	box-shadow: 15px 15px 38px 0 rgba(0, 0, 0, 0.1);
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transform: translateY(20px);
	transition: all 0.3s ease;
}
.main-navigation ul li:hover > ul,
.main-navigation ul li:focus-within > ul {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	transform: none;
}
.main-navigation ul li li {
	display: block;
	position: relative;
	padding: 0 40px;
}
.main-navigation ul li li a {
	display: block;
	font-size: 14px;
	line-height: 30px;
	font-weight: 700;
	color: #1a1b1e;
	text-align: left;
	padding: 5px 18px 5px 0;
	text-transform: uppercase;
	position: relative;
	white-space: nowrap;
}
.main-navigation ul li li a:hover {
	color: var(--itm-cyan);
	padding-left: 12px;
}
.main-navigation ul li li a:before {
	content: "//";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	color: var(--itm-cyan);
	opacity: 0;
	visibility: hidden;
}
.main-navigation ul li li a:hover:before {
	opacity: 1;
	visibility: visible;
}
.main-navigation ul ul ul.sub-menu {
	left: 100%;
	top: -25px;
	min-width: 460px;
}
.main-navigation ul li li.menu-item-has-children > a:after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 6px;
	height: 6px;
	margin-top: -3px;
	border-right: 1.5px solid #c3c7c9;
	border-bottom: 1.5px solid #c3c7c9;
	transform: rotate(-45deg);
}

.header-tools {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	min-width: 445px;
	margin-left: auto;
	justify-content: flex-end;
}
.octf-search {
	position: relative;
	display: flex;
	align-items: center;
	height: 100px;
	margin: 0 10px 0 28px;
}
.toggle-search {
	background: none;
	border: 0;
	padding: 8px;
	cursor: pointer;
	color: #1b1d21;
	line-height: 1;
}
.h-search-form-field {
	display: none;
	position: absolute;
	z-index: 99;
	top: calc(100% + 8px);
	right: 0;
	width: 330px;
}
.h-search-form-field.is-open { display: block; }
.h-search-form-inner {
	padding: 24px;
	background: #fff;
	box-shadow: 15px 15px 34px 0 rgba(0, 0, 0, 0.1);
}
.search-form {
	display: flex;
	gap: 8px;
}
.search-field {
	flex: 1;
	border: 1px solid #e5e5e5;
	padding: 10px 12px;
	font-family: inherit;
}
.search-submit {
	background: var(--itm-cyan);
	color: #fff;
	border: 0;
	padding: 0 12px;
	cursor: pointer;
}

.header-tools-divider {
	display: block;
	width: 1px;
	height: 44px;
	background: #141d383b;
	margin: 0 4px 0 2px;
	flex-shrink: 0;
}
.itm-header-contact {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 0 16px 0 18px;
	margin-right: 8px;
	color: inherit;
	line-height: 1.15;
}
.itm-header-phone-icon {
	display: flex;
	width: 22px;
	flex-shrink: 0;
}
.itm-header-q {
	display: block;
	font-family: "Nunito", "Nunito Sans", sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.6;
	color: #6d6d6d;
}
.itm-header-n {
	display: block;
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #1b1d21;
}
.header-tools .octf-btn {
	flex-shrink: 0;
	padding: 14px 30px;
	font-size: 14px;
}

.header-mobile { display: none; }
.header-mobile-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 20px;
	border-bottom: 1px solid rgba(20, 29, 56, 0.15);
}
.header-mobile .the-logo img { width: 192px; max-width: 192px; }
.header-mobile-tools { display: flex; align-items: center; gap: 8px; }
.mmenu-toggle {
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	position: relative;
	cursor: pointer;
}
.mmenu-toggle span,
.mmenu-toggle:before,
.mmenu-toggle:after {
	content: "";
	position: absolute;
	left: 10px;
	right: 10px;
	height: 2px;
	background: #1b1d21;
}
.mmenu-toggle:before { top: 14px; }
.mmenu-toggle span { top: 21px; }
.mmenu-toggle:after { bottom: 14px; }
.mmenu-overlay {
	position: fixed;
	inset: 0;
	background: rgba(32, 28, 61, 0.45);
	z-index: 1001;
}
.mmenu-wrapper {
	position: fixed;
	top: 0;
	right: 0;
	width: min(320px, 88vw);
	height: 100%;
	background: #fff;
	z-index: 1002;
	padding: 56px 24px 32px;
	overflow: auto;
	transform: translateX(105%);
	transition: transform 0.3s ease;
	box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
	visibility: hidden;
	pointer-events: none;
}
.mmenu-wrapper.is-open {
	transform: translateX(0);
	visibility: visible;
	pointer-events: auto;
}
.mmenu-close {
	position: absolute;
	top: 12px;
	right: 16px;
	border: 0;
	background: none;
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
	color: #1b1d21;
}
.mobile_mainmenu {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
}
.mobile_mainmenu a {
	display: block;
	padding: 10px 0;
	color: #1b1d21;
	font-weight: 700;
	border-bottom: 1px solid #f0f0f0;
}
.mobile_mainmenu .sub-menu {
	display: none;
	list-style: none;
	padding: 0 0 0 14px;
	margin: 0;
}
.mobile_mainmenu .is-open > .sub-menu { display: block; }
.mobile_mainmenu .menu-item-has-children > a:after {
	content: "▾";
	float: right;
	color: #c3c7c9;
}
.itm-mobile-phone {
	display: block;
	margin-top: 16px;
	font-weight: 800;
	color: #1b1d21;
}

@media (max-width: 1280px) {
	.header-desktop-inner { padding: 0 24px 0 40px; }
	.the-logo { flex-basis: auto; min-width: 0; }
	.the-logo img { width: 202px; max-width: 202px; }
	.main-navigation > ul > li { margin: 0 10px; }
	.header-tools { min-width: 0; }
	.octf-search { display: none; }
	.itm-header-contact { padding-left: 18px; }
}
@media (max-width: 1024px) {
	.header-desktop { display: none; }
	.header-mobile { display: block; }
}

/* ========== HERO ========== */
.itm-hero {
	position: relative;
	min-height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	background: #201c3d url("/wp-content/uploads/2026/09/IMG_5371.webp") center / cover no-repeat;
	padding: 100px 24px;
}
.itm-hero-overlay {
	position: absolute;
	inset: 0;
	background: #000;
	opacity: 0.4;
}
.itm-hero-inner { position: relative; z-index: 1; }
.itm-hero .ot-heading > span {
	display: block;
	color: #fff;
	font-family: "Nunito Sans", sans-serif;
	font-size: 2.4rem;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 8px;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.itm-hero .main-heading,
.itm-hero h1 {
	color: #fff;
	font-size: 3.15rem;
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1.12;
	margin: 0 0 24px;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.itm-hero-lead {
	color: #fff;
	font-size: 1.2rem;
	font-weight: 700;
	max-width: 860px;
	margin: 0 auto;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.ot-heading > span {
	display: inline-block;
	font-size: 14px;
	font-weight: 800;
	color: var(--itm-purple);
	text-transform: uppercase;
	margin-bottom: 8px;
}
.ot-heading .main-heading {
	margin: 0 0 24px;
	font-size: 36px;
	line-height: 48px;
}
.itm-section--navy .ot-heading > span { color: var(--itm-muted); font-size: 1.05rem; }
.itm-section--navy .ot-heading .main-heading {
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.35;
}

/* Sections */
.itm-section { padding: 90px 0; }
.itm-section--light { background: #f8f8f8; }
.itm-section--tight { padding: 50px 0 60px; }
.itm-section--white { background: #fff; }
.itm-section--navy {
	background-color: var(--itm-navy);
	background-image: url("/wp-content/uploads/2020/03/bg-s2-home3.jpg");
	background-size: cover;
	background-position: bottom center;
	color: #fff;
	padding: 130px 0;
}
.itm-section--navy h2, .itm-section--navy h3, .itm-section--navy p { color: #fff; }
.itm-section--blue { background: #2563eb; color: #fff; }
.itm-section--blue h2, .itm-section--blue p { color: #fff; }
.itm-lead {
	max-width: 760px;
	margin: 0 auto 48px;
	color: #000;
	font-size: 18px;
}
.itm-sub {
	color: var(--itm-cyan);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.itm-page-hero {
	background: var(--itm-light);
	padding: 90px 24px 50px;
	text-align: center;
}
.itm-page-hero h1 { margin-bottom: 16px; }
.itm-page-hero p { max-width: 760px; margin: 0 auto; color: var(--itm-heading); }

.page-header {
	width: 100%;
	min-height: 350px;
	color: var(--itm-cyan);
	background: #262051 url("/wp-content/uploads/2025/07/bg-pheader-1.jpg") center / cover no-repeat;
	display: flex;
	align-items: center;
}
.page-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
	min-height: 350px;
}
.page-header .page-title {
	color: #fff;
	margin: 0;
	flex: 1;
	font-size: 42px;
}
.page-header .breadcrumbs {
	margin: 0;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 800;
	white-space: nowrap;
}
.page-header .breadcrumbs a {
	color: #aeaacb;
}
.page-header .breadcrumbs a:hover { color: #fff; }
.page-header .breadcrumbs span {
	color: #fff;
}
.page-header .breadcrumbs span::before {
	content: "›";
	color: var(--itm-cyan);
	margin: 0 8px;
	font-weight: 400;
}

/* Challenge cards */
.itm-serv-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	text-align: left;
}
.serv-box {
	overflow: hidden;
	position: relative;
	padding: 40px 40px 35px;
	background: #fff;
	border: 1px solid transparent;
	box-shadow: 15px 15px 38px 0 rgba(0, 0, 0, 0.1);
	min-height: 220px;
	transition: transform 0.3s linear, box-shadow 0.3s linear;
}
.serv-box:hover {
	transform: translateY(-4px);
	box-shadow: 18px 22px 48px 0 rgba(0, 0, 0, 0.16);
}
.serv-box .icon-main {
	position: absolute;
	top: -88px;
	right: -88px;
	width: 188px;
	height: 188px;
	color: #fff;
	background-image: linear-gradient(125deg, #00deff, #502a71);
	border-radius: 50%;
}
.serv-box .icon-main svg {
	position: absolute;
	bottom: 42px;
	left: 40px;
	width: 35px;
	height: 35px;
}
.serv-box .content-box h5 {
	font-size: 22px;
	line-height: 36px;
	font-weight: 800;
	padding-right: 60px;
	margin: 0 0 10px;
	color: var(--itm-heading);
}
.serv-box .content-box div { color: var(--itm-body); }

/* Support graphic + 01/02/03 cards */
.itm-support-visual { margin: 20px auto 50px; max-width: 920px; }
.it-features-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}
.it-feat-card {
	flex: 1;
	min-width: 280px;
	background: #fff;
	border: 2px solid;
	border-radius: 8px;
	padding: 32px 25px;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
	text-align: left;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.it-feat-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.09);
}
.feat-purple { border-color: #d1b8de; }
.feat-teal { border-color: #b7dbd1; }
.feat-gold { border-color: #e0cea6; }
.feat-icon {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	margin-right: 18px;
	z-index: 2;
}
.feat-icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.feat-purple .feat-icon svg { stroke: #d1b8de; }
.feat-teal .feat-icon svg { stroke: #b7dbd1; }
.feat-gold .feat-icon svg { stroke: #e0cea6; }
.feat-content { z-index: 2; }
.feat-content h3 {
	font-size: 19px;
	font-weight: 800;
	text-transform: uppercase;
	color: #0f172a;
	margin: 0 0 6px;
	letter-spacing: 0.5px;
}
.feat-content p {
	font-size: 13px;
	font-weight: 500;
	color: #334155;
	margin: 0;
	line-height: 1.4;
}
.feat-number {
	position: absolute;
	bottom: -15px;
	right: 10px;
	font-size: 85px;
	font-weight: 800;
	line-height: 1;
	z-index: 1;
	letter-spacing: -3px;
	font-family: "Montserrat", sans-serif;
}
.feat-purple .feat-number { color: rgba(209, 184, 222, 0.35); }
.feat-teal .feat-number { color: rgba(183, 219, 209, 0.35); }
.feat-gold .feat-number { color: rgba(224, 206, 166, 0.35); }

/* Process */
.itm-process {
	display: grid;
	grid-template-columns: 1fr auto 1fr auto 1fr;
	gap: 12px;
	align-items: start;
	max-width: 980px;
	margin: 0 auto;
}
.itm-step { text-align: center; perspective: 240px; }
.itm-step h3 { font-size: 22px; margin: 0 0 10px; }
.number-circle {
	height: 64px;
	width: 64px;
	background: rgb(219 234 254);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 16px;
	font-family: "Montserrat", sans-serif;
	font-weight: 800;
	font-size: 24px;
	color: #1e3a8a;
	transition: transform 0.7s ease;
	transform-style: preserve-3d;
	cursor: default;
}
.itm-step:hover .number-circle,
.number-circle:hover {
	transform: rotateY(360deg);
}
.itm-arrow {
	color: #d1d5db;
	font-size: 32px;
	padding-top: 16px;
}

/* Photo CTA */
.itm-cta-photo {
	position: relative;
	text-align: center;
	color: #fff;
	padding: 68px 24px 62px;
	background: #111 url("/wp-content/uploads/2026/09/IMG_5373-k2.webp") center / cover no-repeat;
}
.itm-cta-photo-overlay {
	position: absolute;
	inset: 0;
	background: #000;
	opacity: 0.15;
}
.itm-cta-photo .itm-wrap { position: relative; z-index: 1; }
.itm-cta-kicker {
	font-family: "Nunito Sans", sans-serif;
	font-size: 24px;
	font-weight: 400;
	color: #fff;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	margin: 0 0 13px;
}
.itm-cta-photo h2 {
	color: #fff;
	font-size: 72px;
	font-weight: 900;
	line-height: 80px;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	margin: 0 0 28px;
}
.itm-cta-photo .octf-btn-cta-photo {
	font-size: 16px;
	padding: 18px 42px;
	border-radius: 50px;
	background: #2563eb;
	letter-spacing: 0.4px;
}
.itm-cta-photo .octf-btn-cta-photo:hover,
.itm-cta-photo .octf-btn-cta-photo:focus {
	background: #2563eb;
	color: #fff !important;
	transform: scale(1.08);
}

.itm-cta-banner {
	text-align: center;
	color: #fff;
	padding: 110px 24px;
	background: #201c3d url("/wp-content/uploads/2020/03/bg-cta-home2.jpg") center / cover no-repeat;
}
.itm-cta-banner h2 {
	color: #fff;
	font-size: 48px;
	font-weight: 900;
	text-transform: uppercase;
	margin: 0 0 32px;
	line-height: 1.15;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
}
.itm-cta-banner__kicker {
	font-family: "Nunito Sans", sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #fff;
	margin: 0 0 12px;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
}

/* Mission */
.itm-mission-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}
.itm-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 36px;
}
.ot-counter {
	font-family: "Montserrat", sans-serif;
	font-weight: 800;
	color: #fff;
	text-align: left;
}
.ot-counter span { font-size: 36px; line-height: 1; color: var(--itm-cyan); }
.ot-counter h6 {
	font-family: "Nunito Sans", sans-serif;
	font-size: 12px;
	text-transform: uppercase;
	color: var(--itm-cyan);
	margin: 10px 0 0;
	letter-spacing: 1px;
	padding-left: 16px;
	position: relative;
}
.ot-counter h6:before {
	content: "";
	position: absolute;
	width: 7px;
	height: 7px;
	left: 0;
	top: 50%;
	margin-top: -4px;
	background: var(--itm-cyan);
	border-radius: 50%;
}
.itm-mission-tiles {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.ot-image-box {
	display: block;
	position: relative;
	overflow: hidden;
	min-height: 180px;
}
.ot-image-box img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	filter: grayscale(90%);
	display: block;
	transition: filter 0.3s linear;
}
.ot-image-box .overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(16, 120, 165, 0.2);
}
.ot-image-box h4 {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	font-size: 22px;
	color: #fff;
	transform: translateY(-50%);
	z-index: 2;
	margin: 0;
	text-align: center;
}
.ot-image-box:after {
	position: absolute;
	content: "";
	width: 30px;
	height: 30px;
	top: -15px;
	right: -15px;
	z-index: 2;
	transform: rotate(45deg);
	background: var(--itm-cyan);
}
.ot-image-box:hover img { filter: none; }
.ot-image-box:hover .overlay { background: transparent; }

/* Logos */
.itm-logos {
	background: #fff;
	padding: 40px 0;
	overflow: hidden;
	border-bottom: 1px solid #f0f0f0;
}
.itm-logo-track {
	display: flex;
	align-items: center;
	gap: 56px;
	width: max-content;
}
.itm-logos.is-live .itm-logo-track {
	animation: itm-marquee 28s linear infinite;
}
.itm-logo-track img {
	height: 42px;
	width: auto;
	max-width: 140px;
	object-fit: contain;
	filter: grayscale(0.2);
	opacity: 0.85;
}
@keyframes itm-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* Services icons */
.itm-section--services {
	padding: 110px 0 32px;
	background-color: #fff;
	position: relative;
	overflow: hidden;
}
.itm-section--services::before,
.itm-section--services::after {
	content: "";
	position: absolute;
	pointer-events: none;
	z-index: 0;
}
.itm-section--services::before {
	left: 0;
	top: 0;
	width: 420px;
	height: 100%;
	background: url("/wp-content/uploads/2020/03/bg-art2-home4.png") no-repeat left top;
	background-size: auto;
}
.itm-section--services::after {
	right: 0;
	bottom: 0;
	width: 480px;
	height: 100%;
	background: url("/wp-content/uploads/2020/03/bg-art3-home4.png") no-repeat bottom right;
	background-size: auto;
}
.itm-section--services .itm-wrap { position: relative; z-index: 1; }
.itm-section--services .ot-heading { text-align: center; margin-bottom: 40px; }
.itm-iconbox-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px 20px;
}
.itm-process-boxes {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -11px;
}
.itm-process-boxes .icon-box-s2.s1 {
	display: flex;
	align-items: center;
	gap: 16px;
	box-sizing: border-box;
	flex: 0 0 calc(33.333% - 22px);
	width: calc(33.333% - 22px);
	margin: 0 11px 28px;
	padding: 28px 22px;
	text-align: left;
	min-height: 0;
	height: auto;
	background: #fff;
	border: 1px solid #ece8f4;
	box-shadow: 0 6px 18px rgba(32, 28, 61, 0.04);
	transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}
.itm-process-boxes .icon-box-s2.s1:hover {
	box-shadow: 16px 18px 40px rgba(32, 28, 61, 0.14);
	border-color: transparent;
	transform: translateY(-3px);
}
.itm-process-boxes .icon-box-s2.s1 .icon-main {
	flex: 0 0 44px;
	color: var(--itm-purple);
	line-height: 1;
	margin: 0;
	position: static;
	width: auto;
	height: auto;
	background: none;
	border-radius: 0;
}
.itm-process-boxes .icon-box-s2.s1 .icon-main svg { width: 36px; height: 36px; }
.itm-process-boxes .icon-box-s2.s1 .content-box { padding: 0; }
.itm-process-boxes .icon-box-s2.s1 .content-box h5 {
	margin: 0;
	font-family: "Nunito Sans", sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	color: #1b1d21;
}
.itm-process-boxes .icon-box-s2.s1 .content-box h5 a {
	color: inherit;
	text-decoration: none;
}
.itm-process-boxes .icon-box-s2.s1 .content-box h5 a:hover {
	color: var(--itm-purple);
}
.itm-process-boxes .icon-box-s2.s1 .content-box p {
	margin: 8px 0 0;
	font-size: 14px;
	line-height: 1.65;
	color: var(--itm-body);
	font-weight: 400;
}
.icon-box-s2.s1 {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 8px 8px 48px;
	text-align: left;
	min-height: 0;
}
.icon-box-s2.s1 .icon-main {
	flex: 0 0 45px;
	color: var(--itm-purple);
	line-height: 1;
	margin: 0;
	position: static;
	width: auto;
	height: auto;
	background: none;
	border-radius: 0;
}
.icon-box-s2.s1 .icon-main svg { width: 40px; height: 40px; }
.icon-box-s2.s1 .content-box { padding: 0; }
.icon-box-s2.s1 .content-box h5 {
	margin: 4px 0 0;
	font-size: 18px;
	line-height: 1.35;
	color: #1b1d21;
}
.icon-box-s2.s2 {
	padding: 40px 30px;
	position: relative;
	overflow: hidden;
	min-height: 300px;
	text-align: center;
	background: transparent;
	transition: box-shadow 0.3s linear, background 0.3s linear;
}
.icon-box-s2.s2 * { transition: color 0.2s linear; }
.icon-box-s2.s2::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: #fff;
	opacity: 0;
	transition: opacity 0.3s linear;
}
.icon-box-s2.s2::after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	top: -15px;
	right: -15px;
	z-index: 1;
	opacity: 0;
	background: #43baff;
	transform: rotate(45deg);
	transition: all 0.3s linear;
}
.icon-box-s2.s2:hover {
	background: #fff;
	box-shadow: 15px 15px 38px 0 rgba(0, 0, 0, 0.1);
}
.icon-box-s2.s2:hover::before { opacity: 1; }
.icon-box-s2.s2:hover::after {
	opacity: 1;
	width: 30px;
	height: 30px;
}
.icon-box-s2.s2 .icon-main {
	position: relative;
	z-index: 2;
	color: var(--itm-purple);
	margin-bottom: 24px;
	line-height: 1;
}
.icon-box-s2.s2 .icon-main svg { width: 40px; height: 40px; }
.icon-box-s2 .content-box { position: relative; z-index: 2; }
.icon-box-s2 .content-box h5 {
	margin: 0 0 14px;
	font-size: 20px;
}
.icon-box-s2 .content-box h5 a { color: #1b1d21; }
.icon-box-s2 .content-box h5 a:hover { color: var(--itm-cyan); }
.icon-box-s2 .content-box p { margin: 0; color: var(--itm-body); }

/* Testimonials */
.itm-section--testimonials {
	background: #f8f8f8 url("/wp-content/uploads/2020/01/bg-maps-dots.jpg") bottom center no-repeat;
	padding: 0 0 110px;
}
.itm-section--testimonials .ot-heading { padding: 40px 0 50px; }
.ot-testimonials {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
}
.ot-testimonials-slider {
	display: grid;
	grid-template-columns: 1fr 1fr;
	flex: 1;
	min-width: 0;
}
.testi-item {
	padding: 0 15px;
	box-sizing: border-box;
	display: none;
}
.testi-item.is-active { display: block; }
.ot-testimonials .layer2 {
	background: #fff;
	padding: 40px;
	margin-bottom: 40px;
	box-shadow: 3px 3px 13px 0 rgba(0, 0, 0, 0.1);
	min-height: 250px;
	text-align: left;
}
.ot-testimonials .t-head h6 {
	font-size: 20px;
	margin: 0;
	color: var(--itm-heading);
}
.ot-testimonials .ttext {
	margin-top: 16px;
	color: var(--itm-body);
}
.itm-slider-prev,
.itm-slider-next {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border: 0;
	background: transparent;
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
	color: #1b1d21;
}

/* Home form — kompaktowa karta */
.itm-home-form-section {
	background: #f8f8f8;
	padding: 24px 15px 80px;
}
.itm-contact-card {
	display: grid;
	grid-template-columns: 260px 1fr;
	max-width: 900px;
	margin: 0 auto;
	background: #fff;
	box-shadow: 0 12px 36px rgba(32, 28, 61, 0.08);
}
.itm-contact-card__aside {
	background: var(--itm-navy);
	color: #fff;
	padding: 28px 24px;
}
.itm-contact-card__aside span {
	display: block;
	color: var(--itm-cyan);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.itm-contact-card__aside h2 {
	color: #fff;
	font-size: 24px;
	margin: 0 0 10px;
	line-height: 1.25;
}
.itm-contact-card__aside p {
	color: #c8c5d8;
	font-size: 14px;
	line-height: 1.55;
	margin: 0 0 18px;
}
.itm-contact-card__link {
	display: block;
	color: #fff;
	font-weight: 700;
	margin-bottom: 6px;
	font-size: 15px;
}
.itm-contact-card__link:hover { color: var(--itm-cyan); }
.itm-contact-card__form {
	padding: 28px 30px 24px;
	background: #fff;
}
.itm-contact-card__note {
	margin: 0 0 16px;
	font-size: 13px;
	color: #6d6d6d;
}
.itm-cf7 .itm-cf7__row {
	display: flex;
	gap: 12px;
	margin-bottom: 12px;
}
.itm-cf7 .itm-cf7__row p {
	display: flex;
	gap: 12px;
	flex: 1;
	margin: 0;
	width: 100%;
}
.itm-cf7 .itm-cf7__row .wpcf7-form-control-wrap {
	flex: 1;
	min-width: 0;
	display: block;
}
.itm-cf7 p { margin: 0 0 12px; }
.itm-contact-card__form .wpcf7-form p { margin: 0 0 12px; }
.itm-contact-card__form input[type="text"],
.itm-contact-card__form input[type="email"],
.itm-contact-card__form input[type="tel"],
.itm-contact-card__form textarea,
.itm-cf7 input[type="text"],
.itm-cf7 input[type="email"],
.itm-cf7 input[type="tel"],
.itm-cf7 textarea {
	width: 100%;
	background: #fff;
	border: 1px solid #d5dbe3;
	border-radius: 6px;
	color: #1b1d21;
	padding: 12px 14px;
	font-size: 14px;
	font-family: inherit;
	box-sizing: border-box;
	box-shadow: none;
}
.itm-contact-card__form input:focus,
.itm-contact-card__form textarea:focus,
.itm-cf7 input:focus,
.itm-cf7 textarea:focus {
	outline: none;
	border-color: var(--itm-cyan);
	box-shadow: 0 0 0 3px rgba(67, 186, 255, 0.18);
}
.itm-contact-card__form input::placeholder,
.itm-contact-card__form textarea::placeholder,
.itm-cf7 input::placeholder,
.itm-cf7 textarea::placeholder { color: #9aa3ae; }
.itm-contact-card__form textarea,
.itm-cf7 textarea { min-height: 88px; height: 88px; resize: vertical; }
.itm-contact-card__form input[type="submit"],
.itm-contact-card__form .wpcf7-submit,
.itm-cf7 input[type="submit"],
.itm-cf7 .wpcf7-submit {
	background: var(--itm-cyan);
	color: #fff;
	border: 0;
	border-radius: 6px;
	padding: 13px 26px;
	font-weight: 800;
	text-transform: uppercase;
	cursor: pointer;
	font-size: 13px;
	font-family: inherit;
	width: 100%;
}
.itm-contact-card__form input[type="submit"]:hover,
.itm-contact-card__form .wpcf7-submit:hover,
.itm-cf7 input[type="submit"]:hover,
.itm-cf7 .wpcf7-submit:hover {
	background: var(--itm-purple);
}

/* Inner page grids */
.itm-grid-3, .itm-grid-2, .itm-grid-6 { display: grid; gap: 28px; }
.itm-grid-3 { grid-template-columns: repeat(3, 1fr); }
.itm-grid-2 { grid-template-columns: repeat(2, 1fr); }
.itm-grid-6 { grid-template-columns: repeat(3, 1fr); }
.itm-card {
	background: #fff;
	padding: 36px 28px;
	box-shadow: 0 10px 30px rgba(32, 28, 61, 0.06);
	height: 100%;
}
.itm-card h3 { font-size: 20px; margin: 0 0 12px; }
.itm-card a { color: var(--itm-heading); }
.itm-card a:hover { color: var(--itm-cyan); }
.itm-checks {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 24px;
}
.itm-checks li { position: relative; padding-left: 28px; }
.itm-checks li::before { content: "✓"; position: absolute; left: 0; color: var(--itm-cyan); font-weight: 800; }
.itm-why { display: grid; gap: 16px; max-width: 860px; margin: 0 auto; text-align: left; padding: 0; }
.itm-why li {
	background: #fff;
	padding: 16px 20px;
	list-style: none;
	border-left: 3px solid var(--itm-cyan);
}
.itm-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px 60px;
	align-items: center;
}
.itm-contact-page { padding: 90px 0; }
.itm-contact-page__info .ot-heading { text-align: left; }
.itm-contact-page__lead {
	margin: 0 0 28px;
	color: var(--itm-body);
	max-width: 520px;
}
.itm-contact-page .contact-info.box-style1 {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 14px 0;
	color: var(--itm-cyan);
}
.itm-contact-page .contact-info.box-style1 svg { flex-shrink: 0; }
.itm-contact-page .contact-info.box-style1 .info-text p {
	margin: 0;
	color: #3b3b3b;
	font-size: 18px;
	font-weight: 700;
}
.itm-contact-page .contact-info.box-style1 a { color: #3b3b3b; }
.itm-contact-page .contact-info.box-style1 a:hover { color: var(--itm-cyan); }

.itm-main-form {
	background: var(--itm-navy);
	color: #fff;
	padding: 48px 42px 42px;
	box-shadow: 18px 18px 40px rgba(32, 28, 61, 0.18);
}
.itm-main-form h2 {
	color: #fff;
	margin: 0 0 10px;
	font-size: 32px;
}
.itm-main-form .itm-form-note {
	color: #c8c5d8;
	font-size: 14px;
	margin: 0 0 24px;
}
.itm-main-form .itm-cf7__row { margin-bottom: 14px; }
.itm-main-form input[type="text"],
.itm-main-form input[type="email"],
.itm-main-form input[type="tel"],
.itm-main-form textarea,
.itm-main-form .itm-cf7 input[type="text"],
.itm-main-form .itm-cf7 input[type="email"],
.itm-main-form .itm-cf7 input[type="tel"],
.itm-main-form .itm-cf7 textarea {
	background: #fff;
	color: #1b1d21;
	border: 1px solid transparent;
	border-radius: 0;
}
.itm-main-form input:focus,
.itm-main-form textarea:focus,
.itm-main-form .itm-cf7 input:focus,
.itm-main-form .itm-cf7 textarea:focus {
	border-color: var(--itm-cyan);
	box-shadow: 0 0 0 3px rgba(67, 186, 255, 0.25);
}
.itm-main-form textarea,
.itm-main-form .itm-cf7 textarea {
	min-height: 140px;
	height: 140px;
}
.itm-main-form input[type="submit"],
.itm-main-form .wpcf7-submit,
.itm-main-form .itm-cf7 .wpcf7-submit {
	background: var(--itm-cyan);
	color: #fff;
	width: auto;
	border-radius: 0;
	padding: 14px 32px;
}
.itm-main-form input[type="submit"]:hover,
.itm-main-form .wpcf7-submit:hover,
.itm-main-form .itm-cf7 .wpcf7-submit:hover {
	background: #43a4e0;
}

.itm-map { overflow: hidden; }
.itm-map iframe {
	width: 100%;
	height: 500px;
	border: 0;
	display: block;
	filter: grayscale(1);
}

.itm-optima-intro {
	padding: 90px 0 70px;
	background: #f4f7fb;
}
.itm-optima-intro__grid {
	display: grid;
	grid-template-columns: 0.9fr 1.2fr;
	gap: 48px;
	align-items: center;
}
.itm-optima-intro__aside h2 {
	font-size: 32px;
	line-height: 1.25;
	margin: 0 0 22px;
}
.itm-optima-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.itm-optima-tags li {
	background: #fff;
	border: 1px solid #dce7f2;
	color: var(--itm-navy);
	font-size: 13px;
	font-weight: 700;
	padding: 6px 12px;
	letter-spacing: 0.2px;
}
.itm-optima-intro__copy {
	display: grid;
	gap: 16px;
}
.itm-optima-point {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 16px;
	align-items: start;
	background: #fff;
	padding: 24px 26px 22px;
	box-shadow: 8px 12px 28px rgba(32, 28, 61, 0.06);
}
.itm-optima-point__num {
	font-family: "Montserrat", sans-serif;
	font-size: 22px;
	font-weight: 800;
	color: var(--itm-cyan);
	line-height: 1.2;
}
.itm-optima-point--plain {
	grid-template-columns: 1fr;
}
.itm-optima-point h3 {
	margin: 0 0 8px;
	font-size: 18px;
	line-height: 1.3;
	font-weight: 800;
}
.itm-optima-point p {
	margin: 0;
	color: var(--itm-body);
	font-size: 15px;
	line-height: 1.75;
}
.itm-optima-process { padding-top: 70px; padding-bottom: 70px; }
.itm-optima-process .ot-heading { text-align: left; margin-bottom: 28px; }
.itm-optima-process .main-heading { font-size: 24px; line-height: 1.35; margin-bottom: 8px; }

.itm-optima-benefits {
	background: #f8f8f8 url("/wp-content/uploads/2020/01/bg-maps-dots.jpg") bottom center no-repeat;
	padding: 90px 0;
}
.itm-benefit-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 22px;
	margin-top: 8px;
}
.itm-benefit-card {
	position: relative;
	grid-column: span 2;
	background: #fff;
	padding: 32px 26px 28px;
	min-height: 220px;
	box-shadow: 0 8px 24px rgba(32, 28, 61, 0.05);
	transition: box-shadow 0.28s ease, transform 0.28s ease;
}
.itm-benefit-card:nth-child(4) { grid-column: 2 / span 2; }
.itm-benefit-card:nth-child(5) { grid-column: 4 / span 2; }
.itm-benefit-card:hover {
	box-shadow: 16px 20px 42px rgba(32, 28, 61, 0.14);
	transform: translateY(-4px);
}
.itm-benefit-card__num {
	position: absolute;
	top: 18px;
	right: 20px;
	font-family: "Montserrat", sans-serif;
	font-size: 28px;
	font-weight: 800;
	color: rgba(67, 186, 255, 0.28);
	line-height: 1;
}
.itm-benefit-card__icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--itm-purple);
	background: linear-gradient(135deg, rgba(67, 186, 255, 0.12), rgba(113, 65, 177, 0.1));
	margin-bottom: 16px;
}
.itm-benefit-card__icon svg { width: 26px; height: 26px; }
.itm-benefit-card h3 {
	font-size: 18px;
	line-height: 1.35;
	margin: 0 0 10px;
	padding-right: 36px;
	font-weight: 800;
}
.itm-benefit-card p {
	margin: 0;
	font-size: 15px;
	line-height: 1.65;
	color: var(--itm-body);
}
.itm-optima-close {
	display: flex;
	align-items: center;
	gap: 28px;
	max-width: none;
	margin: 40px 0 0;
	padding: 36px 40px;
	background: var(--itm-navy);
	color: #fff;
	box-shadow: 16px 20px 42px rgba(32, 28, 61, 0.18);
}
.itm-optima-close__mark {
	flex: 0 0 auto;
	font-family: "Montserrat", sans-serif;
	font-size: 92px;
	font-weight: 800;
	line-height: 0.7;
	color: var(--itm-cyan);
}
.itm-optima-close__body {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	flex: 1;
	min-width: 0;
}
.itm-optima-close p {
	margin: 0;
	text-align: left;
	color: #fff;
	font-size: 18px;
	line-height: 1.6;
	max-width: 720px;
}
.itm-optima-close strong { color: #fff; }
.itm-optima-close .octf-btn { flex-shrink: 0; }

.itm-web-intro { padding: 90px 0 50px; }
.itm-web-intro__grid {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 48px;
	align-items: center;
}
.itm-web-intro__visual img {
	width: 100%;
	height: auto;
	display: block;
}
.itm-web-intro__copy .ot-heading { margin-bottom: 28px; }
.itm-web-intro__copy .main-heading {
	font-size: 36px;
	line-height: 1.25;
}
.itm-web-feats {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -8px;
}
.itm-web-feat {
	box-sizing: border-box;
	flex: 0 0 calc(50% - 16px);
	width: calc(50% - 16px);
	margin: 0 8px 16px;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 20px 18px;
	background: #fff;
	border: 1px solid #ece8f4;
	box-shadow: 0 6px 18px rgba(32, 28, 61, 0.04);
}
.itm-web-feat .icon-main {
	flex: 0 0 36px;
	color: var(--itm-purple);
	line-height: 1;
}
.itm-web-feat .icon-main svg { width: 32px; height: 32px; }
.itm-web-feat h3 {
	margin: 0 0 4px;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.3;
}
.itm-web-feat p {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--itm-body);
}
.itm-web-offers { padding: 10px 0 80px; }
.itm-web-offers__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.itm-sbox {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 32px 28px;
	background: #fff;
	border: 1px solid #e7e7e7;
	text-decoration: none;
	color: inherit;
	position: relative;
	overflow: hidden;
	transition: box-shadow 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}
.itm-sbox:hover {
	box-shadow: 15px 15px 38px rgba(0, 0, 0, 0.1);
	border-color: transparent;
	transform: translateY(-3px);
}
.itm-sbox__icon {
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: var(--itm-cyan);
}
.itm-sbox.s-purple .itm-sbox__icon { background: var(--itm-purple); }
.itm-sbox.s-navy .itm-sbox__icon { background: #221d48; }
.itm-sbox__body h3 {
	margin: 0 0 6px;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.3;
	color: #1b1d21;
}
.itm-sbox__body p {
	margin: 0;
	font-size: 15px;
	color: var(--itm-body);
}
.itm-web-process {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: #211e3b;
}
.itm-web-process__copy {
	padding: 90px 56px 90px max(40px, calc((100vw - 1170px) / 2));
	color: #fff;
}
.itm-web-process__copy .ot-heading span { color: #b7a4e0; }
.itm-web-process__copy .main-heading {
	color: #fff;
	font-size: 36px;
	line-height: 1.25;
	margin-bottom: 28px;
}
.itm-web-process .ot-tabs .tabs-heading {
	list-style: none;
	margin: 0 0 8px;
	padding: 0;
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
}
.itm-web-process .ot-tabs .tab-link {
	flex: 1;
	margin: 0;
	float: none;
	min-width: 0;
	padding: 14px 12px;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	text-align: center;
	background: #f6f6f6;
	color: #1b1d21;
	border: 0;
	cursor: pointer;
	white-space: nowrap;
}
.itm-web-process .ot-tabs .tab-link.current,
.itm-web-process .ot-tabs .tab-link:hover {
	background: var(--itm-cyan);
	color: #fff;
}
.itm-web-process .ot-tabs .tab-content {
	display: none;
	padding: 22px 0 0;
	color: #fff;
	font-size: 16px;
	line-height: 1.8;
}
.itm-web-process .ot-tabs .tab-content.current { display: block; }
.itm-web-process .btn-details {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 8px;
	color: var(--itm-cyan);
	font-weight: 800;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 0.4px;
	text-decoration: none;
}
.itm-web-process .btn-details:hover { color: #fff; }
.itm-web-process__photo {
	position: relative;
	min-height: 560px;
	background: #211e3b url("/wp-content/uploads/2020/01/bg1-service1.jpg") center / cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
}
.itm-web-process__photo::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 34%;
	background: linear-gradient(180deg, rgba(67, 186, 255, 0.42), rgba(113, 65, 177, 0.5));
	clip-path: polygon(100% 0, 100% 100%, 0 100%);
	pointer-events: none;
}
.itm-web-play {
	position: relative;
	z-index: 1;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: #fff;
	border: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--itm-cyan);
	box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.18), 0 0 0 24px rgba(255, 255, 255, 0.1);
	pointer-events: none;
}
.itm-web-play svg { margin-left: 3px; }

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
	width: 100%;
	background: #fff;
	border: 1px solid #d5dbe3;
	border-radius: 6px;
	padding: 12px 14px;
	font-family: inherit;
	font-size: 15px;
	box-sizing: border-box;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus {
	outline: none;
	border-color: var(--itm-cyan);
	box-shadow: 0 0 0 3px rgba(67, 186, 255, 0.18);
}
.wpcf7 input[type="submit"] {
	background: var(--itm-cyan);
	color: #fff;
	border: 0;
	padding: 14px 30px;
	font-weight: 800;
	text-transform: uppercase;
	cursor: pointer;
}

/* Footer */
.site-footer,
footer.wp-block-template-part {
	background: #211e3b url("/wp-content/uploads/2019/12/bg-footer1.png") top center no-repeat;
	color: #c8c5d8;
	padding: 40px 24px 28px;
	text-align: center;
}
.the-logo--footer { margin-bottom: 36px; }
.the-logo--footer img { margin: 0 auto; filter: none; }
.itm-footer-contacts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 900px;
	margin: 0 auto 28px;
}
.contact-info.box-style2 { text-align: center; font-size: 16px; }
.contact-info .box-icon { margin-bottom: 16px; }
.contact-info p { margin: 0; color: #fff; }
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--itm-cyan); }
.itm-copy { margin: 8px 0 6px; font-size: 14px; color: #c8c5d8; }
.itm-footer-links { margin: 0 0 18px; font-size: 13px; }
.itm-footer-links a { color: #c8c5d8; }
.itm-social {
	display: flex;
	justify-content: center;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.itm-social li { margin: 0; padding: 0; list-style: none; }
.itm-social a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.itm-social a:hover { background: var(--itm-cyan); color: #fff; }

#back-to-top {
	background: #fff;
	color: var(--itm-cyan);
	border: 0;
	border-radius: 2px;
	cursor: pointer;
	width: 42px;
	height: 45px;
	line-height: 45px;
	opacity: 0;
	position: fixed;
	right: 40px;
	bottom: -20px;
	text-align: center;
	z-index: 1000;
	box-shadow: 6px 6px 13px 0 rgba(42, 67, 113, 0.2);
	transition: all 0.3s ease;
	font-size: 18px;
	padding: 0;
}
#back-to-top.show { opacity: 1; bottom: 40px; }
#back-to-top:hover { bottom: 45px; }

.itm-404 { padding: 120px 24px; }

/* Cookie banner */
.itm-cookie {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	background: #fff;
	color: var(--itm-heading);
	box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.12);
	padding: 12px 16px 14px;
	max-width: none;
	margin: 0;
	display: none;
}
.itm-cookie.is-open {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 16px;
}
.itm-cookie h2 { font-size: 14px; margin: 0; }
.itm-cookie p { font-size: 13px; line-height: 1.45; margin: 0; flex: 1 1 220px; }
.itm-cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.itm-cookie-actions button {
	cursor: pointer;
	border: 1px solid transparent;
	padding: 10px 16px;
	font-weight: 800;
	font-size: 12px;
	text-transform: uppercase;
	font-family: inherit;
}
.itm-cookie-accept { background: var(--itm-cyan); color: #fff; }
.itm-cookie-reject { background: var(--itm-navy); color: #fff; }
.itm-cookie-prefs { background: transparent; border-color: var(--itm-navy) !important; color: var(--itm-navy); }
.itm-cookie-cats { display: none; margin-top: 12px; font-size: 14px; }
.itm-cookie-cats.is-open { display: block; }
.itm-cookie-cats label { display: block; margin: 6px 0; }

.itm-realizacje, .itm-single { --itm-accent: #43baff !important; }

@media (max-width: 1024px) {
	.itm-serv-grid,
	.itm-iconbox-grid,
	.itm-grid-3,
	.itm-grid-6,
	.itm-contact-grid,
	.itm-process-boxes,
	.itm-benefit-grid,
	.itm-checks,
	.itm-mission-grid,
	.itm-footer-contacts {
		grid-template-columns: 1fr 1fr;
	}
	.itm-process { grid-template-columns: 1fr; }
	.itm-arrow { display: none; }
	.itm-hero { padding: 72px 20px; min-height: 240px; }
	.itm-hero .ot-heading > span { font-size: 1.6rem; }
	.itm-hero .main-heading, .itm-hero h1 { font-size: 2rem; line-height: 1.15; }
	.itm-hero-lead { font-size: 1.05rem; }
	.itm-cta-photo h2 { font-size: 42px; line-height: 1.15; }
	.itm-cta-kicker { font-size: 18px; }
	.itm-cta-banner h2 { font-size: 36px; }
	.page-header,
	.page-header__inner { min-height: 240px; }
	.page-header .page-title { font-size: 32px; }
	.itm-section { padding: 64px 0; }
	.itm-section--services::before,
	.itm-section--services::after { display: none; }
	.testi-item { flex-basis: 100%; }
	.ot-testimonials-slider { grid-template-columns: 1fr; }
	.itm-optima-intro__grid { grid-template-columns: 1fr; gap: 28px; }
	.itm-web-intro__grid,
	.itm-web-process,
	.itm-web-offers__grid { grid-template-columns: 1fr; }
	.itm-process-boxes .icon-box-s2.s1 {
		flex: 0 0 calc(50% - 22px);
		width: calc(50% - 22px);
	}
	.itm-web-process__copy { padding: 64px 32px; }
	.itm-web-process__photo { min-height: 360px; }
	.itm-benefit-card,
	.itm-benefit-card:nth-child(4),
	.itm-benefit-card:nth-child(5) { grid-column: auto; }
}
@media (max-width: 767px) {
	.itm-serv-grid,
	.itm-iconbox-grid,
	.itm-grid-3,
	.itm-grid-6,
	.itm-grid-2,
	.itm-contact-grid,
	.itm-process-boxes,
	.itm-benefit-grid,
	.itm-checks,
	.itm-mission-grid,
	.itm-mission-tiles,
	.itm-footer-contacts,
	.itm-stats {
		grid-template-columns: 1fr;
	}
	.itm-process-boxes .icon-box-s2.s1 {
		flex: 0 0 calc(100% - 22px);
		width: calc(100% - 22px);
	}
	.itm-web-feat {
		flex: 0 0 calc(100% - 16px);
		width: calc(100% - 16px);
	}
	.itm-web-intro__copy .main-heading,
	.itm-web-process__copy .main-heading { font-size: 28px; }
	.itm-web-process .ot-tabs .tabs-heading { flex-wrap: wrap; }
	.itm-hero {
		padding: 56px 16px;
		background-image: url("/wp-content/uploads/2026/09/IMG_5371-m.webp");
	}
	.itm-cta-photo {
		background-image: url("/wp-content/uploads/2026/09/IMG_5373-k2-m.webp");
	}
	.itm-hero .ot-heading > span { font-size: 1.2rem; }
	.itm-hero .main-heading, .itm-hero h1 { font-size: 1.55rem; }
	.header-cta .octf-btn { padding: 12px 16px; font-size: 12px; }
	.itm-contact-card { grid-template-columns: 1fr; }
	.itm-cf7 .itm-cf7__row,
	.itm-cf7 .itm-cf7__row p { flex-direction: column; }
	.itm-cta-photo { padding: 48px 16px; }
	.itm-cta-photo h2 { font-size: 32px; }
	.itm-cta-banner { padding: 64px 16px; }
	.itm-cta-banner h2 { font-size: 28px; }
	.page-header__inner {
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		min-height: 200px;
		padding: 36px 0;
	}
	.page-header .page-title { font-size: 28px; }
	.page-header .breadcrumbs { white-space: normal; }
	.itm-main-form { padding: 32px 22px; }
	.itm-map iframe { height: 320px; }
	.icon-box-s2.s1 { padding-bottom: 28px; }
	.itm-optima-intro__copy { padding: 0; }
	.itm-optima-point { grid-template-columns: 44px 1fr; padding: 20px 18px; }
	.itm-optima-close,
	.itm-optima-close__body {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}
	.itm-optima-close { padding: 28px 22px; gap: 12px; }
	.itm-optima-close__mark { font-size: 56px; }
	.itm-optima-intro__aside h2 { font-size: 26px; }
	.itm-section--testimonials .ot-heading { padding-top: 28px; }
	.itm-section--services { padding-bottom: 20px; }
	.itm-contact-card__form { padding: 20px 18px; }
}

/* ==========================================================================
   HERO 3D — animowany banner (siatka neuronowa, sześcian, terminal)
   ========================================================================== */

.itm-hero3d {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	color: #fff;
	padding: clamp(84px, 10vw, 132px) 0 0;
	background:
		radial-gradient(120% 130% at 78% -10%, #241d5c 0%, #130f36 42%, #08071c 100%);
}
.itm-hero3d__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.itm-hero3d__aurora {
	position: absolute;
	display: block;
	border-radius: 50%;
	opacity: 0.28;
}
.itm-hero3d__aurora--a {
	width: 620px; height: 620px; top: -220px; left: -180px;
	background: radial-gradient(circle, rgba(67, 186, 255, 0.85), transparent 65%);
}
.itm-hero3d__aurora--b {
	width: 560px; height: 560px; top: -120px; right: -140px;
	background: radial-gradient(circle, rgba(140, 82, 255, 0.8), transparent 65%);
}
.itm-hero3d__aurora--c {
	width: 700px; height: 520px; bottom: -280px; left: 30%;
	background: radial-gradient(circle, rgba(0, 224, 199, 0.45), transparent 65%);
}
.itm-hero3d--live .itm-hero3d__aurora--a {
	filter: blur(28px);
	opacity: 0.45;
	animation: itmDrift 20s ease-in-out infinite alternate;
}
.itm-hero3d--live .itm-hero3d__aurora--b {
	filter: blur(28px);
	opacity: 0.45;
	animation: itmDrift 26s ease-in-out infinite alternate-reverse;
}
.itm-hero3d--live .itm-hero3d__aurora--c {
	filter: blur(28px);
	opacity: 0.45;
	animation: itmDrift 32s ease-in-out infinite alternate;
}
@keyframes itmDrift {
	from { transform: translate3d(0, 0, 0) scale(1); }
	to   { transform: translate3d(60px, 40px, 0) scale(1.15); }
}

.itm-hero3d__floor {
	position: absolute;
	left: -30%; right: -30%; bottom: -6%;
	height: 62%;
	background-image:
		linear-gradient(rgba(67, 186, 255, 0.28) 1px, transparent 1px),
		linear-gradient(90deg, rgba(67, 186, 255, 0.18) 1px, transparent 1px);
	background-size: 68px 68px;
	transform: perspective(440px) rotateX(66deg);
	transform-origin: bottom center;
	-webkit-mask-image: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.35) 55%, transparent 88%);
	mask-image: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.35) 55%, transparent 88%);
	display: none;
}
.itm-hero3d--live .itm-hero3d__floor {
	display: block;
	animation: itmFloor 5.5s linear infinite;
}
@keyframes itmFloor { from { background-position: 0 0, 0 0; } to { background-position: 0 68px, 0 0; } }

.itm-hero3d__net { position: absolute; inset: 0; display: block; }
.itm-hero3d__canvas { position: absolute; inset: 0; opacity: 0.85; }

.itm-hero3d__scan {
	position: absolute;
	left: 0; right: 0; top: 0;
	height: 240px;
	background: linear-gradient(180deg, transparent, rgba(67, 186, 255, 0.10), transparent);
	display: none;
}
.itm-hero3d--live .itm-hero3d__scan {
	display: block;
	animation: itmScan 9s linear infinite;
}
@keyframes itmScan { from { transform: translateY(-260px); } to { transform: translateY(110vh); } }

.itm-hero3d__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
	align-items: center;
	gap: 40px;
	perspective: 1200px;
}

.itm-hero3d__copy > * {
	opacity: 1;
	transform: none;
}
.itm-hero3d--live .itm-hero3d__copy > * {
	opacity: 0;
	transform: translateY(26px);
	animation: itmUp 0.9s cubic-bezier(0.2, 0.75, 0.3, 1) forwards;
}
.itm-hero3d--live .itm-hero3d__copy > *:nth-child(1) { animation-delay: 0.05s; }
.itm-hero3d--live .itm-hero3d__copy > *:nth-child(2) { animation-delay: 0.18s; }
.itm-hero3d--live .itm-hero3d__copy > *:nth-child(3) { animation-delay: 0.31s; }
.itm-hero3d--live .itm-hero3d__copy > *:nth-child(4) { animation-delay: 0.44s; }
.itm-hero3d--live .itm-hero3d__copy > *:nth-child(5) { animation-delay: 0.57s; }
.itm-hero3d--live .itm-hero3d__copy > *:nth-child(6) { animation-delay: 0.68s; }
@keyframes itmUp { to { opacity: 1; transform: none; } }

.itm-hero3d__kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 18px;
	padding: 8px 16px 8px 12px;
	border: 1px solid rgba(120, 200, 255, 0.35);
	border-radius: 999px;
	background: rgba(67, 186, 255, 0.08);
	font-size: 12.5px;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #b9e4ff;
}
.itm-hero3d__pulse {
	width: 8px; height: 8px; border-radius: 50%;
	background: #43ffb0;
	box-shadow: 0 0 0 0 rgba(67, 255, 176, 0.7);
}
.itm-hero3d--live .itm-hero3d__pulse {
	animation: itmPulse 2s infinite;
}
@keyframes itmPulse {
	70%  { box-shadow: 0 0 0 10px rgba(67, 255, 176, 0); }
	100% { box-shadow: 0 0 0 0 rgba(67, 255, 176, 0); }
}

.itm-theme .itm-hero3d__title {
	color: #fff;
	font-size: clamp(34px, 4.6vw, 60px);
	line-height: 1.06;
	letter-spacing: -0.02em;
	margin: 0 0 18px;
	text-transform: none;
}
.itm-hero3d__accent {
	display: inline-block;
	background: linear-gradient(100deg, #43baff 0%, #a78bfa 35%, #00e0c7 65%, #43baff 100%);
	background-size: 250% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.itm-hero3d--live .itm-hero3d__accent {
	animation: itmShimmer 7s linear infinite;
}
@keyframes itmShimmer { to { background-position: 250% 0; } }

.itm-hero3d__type {
	margin: 0 0 18px;
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: clamp(14px, 1.5vw, 17px);
	color: #9fd8ff;
	letter-spacing: 0.01em;
	min-height: 1.6em;
}
.itm-hero3d__type-label { color: rgba(255, 255, 255, 0.5); }
.itm-hero3d__type-word { color: #fff; font-weight: 700; }
.itm-hero3d__caret {
	display: inline-block;
	width: 10px; height: 1.05em;
	margin-left: 3px;
	vertical-align: -0.18em;
	background: #43baff;
}
.itm-hero3d--live .itm-hero3d__caret {
	animation: itmCaret 1s steps(1) infinite;
}
@keyframes itmCaret { 50% { opacity: 0; } }

.itm-hero3d__lead {
	margin: 0 0 28px;
	max-width: 56ch;
	font-size: clamp(15px, 1.5vw, 17.5px);
	line-height: 1.75;
	color: rgba(226, 234, 255, 0.78);
}

.itm-hero3d__cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin: 0;
}
.itm-theme .itm-hero3d__btn {
	display: inline-flex;
	align-items: center;
	padding: 16px 34px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #04121f;
	background: linear-gradient(100deg, #43baff, #7ef0ff 45%, #a78bfa);
	background-size: 180% 100%;
	box-shadow: 0 14px 40px rgba(67, 186, 255, 0.35);
	transition: transform 0.25s, box-shadow 0.25s, background-position 0.5s;
}
.itm-theme .itm-hero3d__btn:hover {
	transform: translateY(-3px);
	background-position: 100% 0;
	box-shadow: 0 20px 52px rgba(120, 200, 255, 0.5);
	color: #04121f;
}
.itm-theme .itm-hero3d__ghost {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 15px 28px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
	transition: border-color 0.25s, background 0.25s, gap 0.25s;
}
.itm-theme .itm-hero3d__ghost:hover {
	border-color: #43baff;
	background: rgba(67, 186, 255, 0.12);
	gap: 14px;
	color: #fff;
}

.itm-hero3d__crumbs {
	margin: 22px 0 0;
	font-size: 13px;
	letter-spacing: 0.06em;
	color: rgba(210, 224, 255, 0.6);
}
.itm-theme .itm-hero3d__crumbs a { color: #9fd8ff; }
.itm-hero3d__crumbs span::before { content: "/"; margin: 0 8px; opacity: 0.5; }

/* --- scena 3D --- */

.itm-hero3d__stage {
	position: relative;
	min-height: 500px;
	--cx: 62%;
	--cy: 38%;
	transform-style: preserve-3d;
	transform: rotateY(var(--tx, 0deg)) rotateX(var(--ty, 0deg));
	transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.itm-hero3d__orbit {
	position: absolute;
	top: var(--cy); left: var(--cx);
	border: 1px solid rgba(67, 186, 255, 0.38);
	border-radius: 50%;
}
.itm-hero3d__orbit::after {
	content: "";
	position: absolute;
	top: -5px; left: 50%;
	width: 10px; height: 10px;
	border-radius: 50%;
	background: #7ef0ff;
	box-shadow: 0 0 16px 3px rgba(126, 240, 255, 0.8);
}
.itm-hero3d__orbit--1 {
	width: 330px; height: 330px; margin: -165px 0 0 -165px;
}
.itm-hero3d--live .itm-hero3d__orbit--1 {
	animation: itmOrbit1 18s linear infinite;
}
.itm-hero3d__orbit--2 {
	width: 440px; height: 440px; margin: -220px 0 0 -220px;
	border-color: rgba(167, 139, 250, 0.28);
}
.itm-hero3d--live .itm-hero3d__orbit--2 {
	animation: itmOrbit2 27s linear infinite;
}
.itm-hero3d__orbit--2::after { background: #c4b5fd; box-shadow: 0 0 16px 3px rgba(196, 181, 253, 0.8); }
.itm-hero3d__orbit--3 {
	width: 250px; height: 250px; margin: -125px 0 0 -125px;
	border-color: rgba(0, 224, 199, 0.3);
}
.itm-hero3d--live .itm-hero3d__orbit--3 {
	animation: itmOrbit3 14s linear infinite reverse;
}
.itm-hero3d__orbit--3::after { background: #5ffbe0; box-shadow: 0 0 16px 3px rgba(95, 251, 224, 0.75); }
@keyframes itmOrbit1 { from { transform: rotateX(72deg) rotate(0deg); } to { transform: rotateX(72deg) rotate(360deg); } }
@keyframes itmOrbit2 { from { transform: rotateX(68deg) rotateY(22deg) rotate(0deg); } to { transform: rotateX(68deg) rotateY(22deg) rotate(360deg); } }
@keyframes itmOrbit3 { from { transform: rotateX(24deg) rotateY(66deg) rotate(0deg); } to { transform: rotateX(24deg) rotateY(66deg) rotate(360deg); } }

.itm-hero3d__cube {
	position: absolute;
	top: var(--cy); left: var(--cx);
	width: 180px; height: 180px;
	margin: -90px 0 0 -90px;
	transform-style: preserve-3d;
}
.itm-hero3d--live .itm-hero3d__cube {
	animation: itmSpin 26s linear infinite;
}
@keyframes itmSpin {
	from { transform: rotateX(-22deg) rotateY(0deg); }
	to   { transform: rotateX(-22deg) rotateY(360deg); }
}
.itm-hero3d__face {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Montserrat", sans-serif;
	font-size: 30px;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: #eaf9ff;
	background: linear-gradient(140deg, rgba(67, 186, 255, 0.16), rgba(140, 82, 255, 0.22));
	border: 1px solid rgba(126, 224, 255, 0.45);
	box-shadow: inset 0 0 44px rgba(67, 186, 255, 0.22), 0 0 32px rgba(67, 186, 255, 0.15);
	text-shadow: 0 0 18px rgba(126, 224, 255, 0.6);
}
.itm-hero3d__face--1 { transform: translateZ(90px); }
.itm-hero3d__face--2 { transform: rotateY(90deg) translateZ(90px); }
.itm-hero3d__face--3 { transform: rotateY(180deg) translateZ(90px); }
.itm-hero3d__face--4 { transform: rotateY(-90deg) translateZ(90px); }
.itm-hero3d__face--5 { transform: rotateX(90deg) translateZ(90px); }
.itm-hero3d__face--6 { transform: rotateX(-90deg) translateZ(90px); }

.itm-hero3d__term {
	position: absolute;
	left: -8%;
	bottom: -2%;
	z-index: 3;
	width: 288px;
	max-width: 78%;
	border-radius: 14px;
	background: rgba(8, 11, 30, 0.82);
	border: 1px solid rgba(126, 200, 255, 0.28);
	box-shadow: 0 26px 60px rgba(0, 0, 0, 0.5);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	transform: translate3d(var(--mx, 0px), var(--my, 0px), 80px);
	transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.3, 1);
	overflow: hidden;
}
.itm-hero3d__term-bar {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 14px;
	background: rgba(255, 255, 255, 0.05);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.itm-hero3d__term-bar i { width: 9px; height: 9px; border-radius: 50%; background: #ff5f57; }
.itm-hero3d__term-bar i:nth-child(2) { background: #febc2e; }
.itm-hero3d__term-bar i:nth-child(3) { background: #28c840; }
.itm-hero3d__term-bar b {
	margin-left: 8px;
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.05em;
	color: rgba(200, 220, 255, 0.6);
}
.itm-hero3d__term-lines {
	list-style: none;
	margin: 0;
	padding: 14px 16px 16px;
	display: grid;
	gap: 9px;
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 12.5px;
	line-height: 1.35;
}
.itm-hero3d__term-lines li {
	margin: 0;
	opacity: 1;
	transform: none;
	color: rgba(214, 230, 255, 0.85);
}
.itm-hero3d--live .itm-hero3d__term-lines li {
	opacity: 0;
	transform: translateX(-8px);
	animation: itmTermIn 0.5s ease forwards;
	animation-delay: var(--d, 0s);
}
@keyframes itmTermIn { to { opacity: 1; transform: none; } }
.itm-hero3d__term-lines .is-cmd { color: #7ef0ff; }
.itm-hero3d__term-lines .is-cmd::before { content: "$ "; color: rgba(126, 240, 255, 0.6); }
.itm-hero3d__term-lines .is-ok::before { content: "\2713 "; color: #43ffb0; }
.itm-hero3d__term-lines .is-run { color: #ffd479; }
.itm-hero3d__term-lines .is-run::before { content: "\25B8 "; }

.itm-hero3d__chip {
	position: absolute;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 11px 18px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	font-size: 13px;
	font-weight: 700;
	color: #eaf6ff;
	white-space: nowrap;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}
.itm-hero3d__chip--a {
	top: 6%; right: -2%;
	transform: translateZ(120px);
}
.itm-hero3d--live .itm-hero3d__chip--a {
	animation: itmFloatA 7s ease-in-out infinite;
}
.itm-hero3d__chip--b {
	bottom: 12%; right: 2%;
	transform: translateZ(100px);
}
.itm-hero3d--live .itm-hero3d__chip--b {
	animation: itmFloatB 9s ease-in-out infinite;
}
@keyframes itmFloatA {
	0%, 100% { transform: translate3d(0, 0, 120px); }
	50%      { transform: translate3d(0, -16px, 120px); }
}
@keyframes itmFloatB {
	0%, 100% { transform: translate3d(0, 0, 100px); }
	50%      { transform: translate3d(0, 14px, 100px); }
}
.itm-hero3d__chip-dot {
	width: 9px; height: 9px; border-radius: 50%;
	background: #43ffb0;
	box-shadow: 0 0 0 0 rgba(67, 255, 176, 0.7);
}
.itm-hero3d--live .itm-hero3d__pulse {
	animation: itmPulse 2s infinite;
}
.itm-hero3d__chip-bars { display: inline-flex; align-items: flex-end; gap: 3px; height: 14px; }
.itm-hero3d__chip-bars i {
	width: 3px;
	border-radius: 2px;
	background: linear-gradient(180deg, #7ef0ff, #a78bfa);
}
.itm-hero3d--live .itm-hero3d__chip-bars i {
	animation: itmBars 1.1s ease-in-out infinite;
}
.itm-hero3d__chip-bars i:nth-child(1) { height: 6px;  animation-delay: 0s; }
.itm-hero3d__chip-bars i:nth-child(2) { height: 12px; animation-delay: 0.15s; }
.itm-hero3d__chip-bars i:nth-child(3) { height: 8px;  animation-delay: 0.3s; }
.itm-hero3d__chip-bars i:nth-child(4) { height: 14px; animation-delay: 0.45s; }
@keyframes itmBars { 50% { transform: scaleY(0.35); } }

.itm-hero3d__ticker {
	position: relative;
	z-index: 2;
	margin-top: clamp(46px, 6vw, 78px);
	padding: 15px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(0, 0, 0, 0.22);
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.itm-hero3d__track {
	display: flex;
	width: max-content;
}
.itm-hero3d--live .itm-hero3d__track {
	animation: itmTicker 38s linear infinite;
}
.itm-hero3d__track span {
	display: inline-flex;
	align-items: center;
	padding: 0 26px;
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(190, 214, 255, 0.55);
	white-space: nowrap;
}
.itm-hero3d__track span::after {
	content: "";
	width: 5px; height: 5px;
	margin-left: 26px;
	border-radius: 50%;
	background: rgba(67, 186, 255, 0.55);
}
@keyframes itmTicker { to { transform: translateX(-50%); } }

.itm-hero3d--page { padding-top: clamp(70px, 8vw, 108px); }
.itm-hero3d--page .itm-hero3d__stage { min-height: 380px; }

/* --- reveal --- */

.itm-reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1); }
.itm-reveal.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   REALIZACJE — sekcje motywu
   ========================================================================== */

.itm-real-metrics {
	position: relative;
	background: linear-gradient(180deg, #08071c 0%, #0b0a24 100%);
	padding: 0 0 clamp(58px, 7vw, 92px);
}
.itm-real-metrics--page {
	background: linear-gradient(180deg, #201c3d 0%, #0b0a24 100%);
	padding: clamp(40px, 5vw, 64px) 0 clamp(58px, 7vw, 92px);
}
.itm-real-metrics--page .itm-real-metrics__grid {
	margin-top: 0;
}
.itm-real-metrics__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-top: -34px;
}
.itm-metric-card {
	position: relative;
	padding: 30px 28px;
	border-radius: 18px;
	background: linear-gradient(150deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
	border: 1px solid rgba(126, 200, 255, 0.2);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	overflow: hidden;
	transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.itm-metric-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 2px;
	background: linear-gradient(90deg, #43baff, #a78bfa, #00e0c7);
}
.itm-metric-card:hover {
	transform: translateY(-6px);
	border-color: rgba(126, 224, 255, 0.5);
	box-shadow: 0 32px 70px rgba(67, 186, 255, 0.2);
}
.itm-metric-card__v {
	display: block;
	font-family: "Montserrat", sans-serif;
	font-size: clamp(38px, 4.4vw, 56px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.03em;
	background: linear-gradient(100deg, #43baff, #7ef0ff 50%, #a78bfa);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.itm-metric-card__l {
	display: block;
	margin-top: 12px;
	font-size: 15px;
	line-height: 1.5;
	color: rgba(226, 236, 255, 0.75);
}
.itm-metric-card__src {
	display: block;
	margin-top: 14px;
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(159, 216, 255, 0.65);
}

.itm-proof { background: #fff; padding: clamp(60px, 8vw, 100px) 0; }
.itm-proof__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 44px;
}
.itm-proof-card {
	position: relative;
	padding: 32px 28px;
	border-radius: 16px;
	background: #fff;
	border: 1px solid #e8e8f2;
	box-shadow: 0 10px 30px rgba(32, 28, 61, 0.06);
	transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
	overflow: hidden;
}
.itm-proof-card::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--itm-cyan), var(--itm-purple));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.itm-proof-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px rgba(32, 28, 61, 0.14); border-color: #d7e9f8; }
.itm-proof-card:hover::after { transform: scaleX(1); }
.itm-proof-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 62px; height: 62px;
	margin-bottom: 18px;
	border-radius: 16px;
	color: #fff;
	background: linear-gradient(140deg, var(--itm-cyan), var(--itm-purple));
	box-shadow: 0 12px 26px rgba(67, 186, 255, 0.32);
	transition: transform 0.35s;
}
.itm-proof-card:hover .itm-proof-card__icon { transform: rotate(-6deg) scale(1.06); }
.itm-proof-card__icon svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.itm-theme .itm-proof-card h3 { font-size: 19px; font-weight: 800; margin: 0 0 10px; }
.itm-proof-card p { margin: 0; font-size: 15.5px; line-height: 1.7; }

.itm-flow { background: var(--itm-light); padding: clamp(60px, 8vw, 100px) 0; }
.itm-flow__grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	margin-top: 46px;
}
.itm-flow__grid::before {
	content: "";
	position: absolute;
	top: 34px; left: 8%; right: 8%;
	height: 2px;
	background: linear-gradient(90deg, var(--itm-cyan), var(--itm-purple));
	opacity: 0.35;
}
.itm-flow-step { position: relative; text-align: center; padding: 0 8px; }
.itm-flow-step__num {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 68px; height: 68px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--itm-cyan);
	color: var(--itm-navy);
	font-family: "Montserrat", sans-serif;
	font-size: 22px;
	font-weight: 800;
	box-shadow: 0 10px 24px rgba(67, 186, 255, 0.22);
	transition: transform 0.35s, background 0.35s, color 0.35s;
}
.itm-flow-step:hover .itm-flow-step__num {
	transform: translateY(-5px);
	background: linear-gradient(140deg, var(--itm-cyan), var(--itm-purple));
	color: #fff;
}
.itm-theme .itm-flow-step h3 { font-size: 18px; font-weight: 800; margin: 18px 0 8px; }
.itm-flow-step p { margin: 0; font-size: 15px; line-height: 1.65; }

/* ==========================================================================
   SHOWCASE — Wybrane wdrożenia (ciemny układ z metryką)
   ========================================================================== */

.itm-showcase {
	position: relative;
	isolation: isolate;
	padding: clamp(64px, 9vw, 110px) 0;
	background:
		radial-gradient(80% 60% at 10% 0%, rgba(67, 186, 255, 0.18), transparent 55%),
		radial-gradient(70% 50% at 90% 20%, rgba(140, 82, 255, 0.22), transparent 50%),
		#07071a;
	color: #e8eeff;
	overflow: hidden;
}
.itm-showcase::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(67, 186, 255, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(67, 186, 255, 0.06) 1px, transparent 1px);
	background-size: 64px 64px;
	-webkit-mask-image: radial-gradient(75% 55% at 50% 0%, #000, transparent 80%);
	mask-image: radial-gradient(75% 55% at 50% 0%, #000, transparent 80%);
	pointer-events: none;
	z-index: 0;
}
.itm-showcase .itm-wrap { position: relative; z-index: 1; }
.itm-theme .itm-showcase .main-heading { color: #fff; }
.itm-theme .itm-showcase .ot-heading > span { color: #7ef0ff; }
.itm-showcase__lead {
	max-width: 640px;
	margin: 14px auto 0;
	text-align: center;
	font-size: 17px;
	line-height: 1.7;
	color: rgba(210, 224, 255, 0.72);
}
.itm-showcase__list {
	display: grid;
	gap: clamp(28px, 4vw, 42px);
	margin-top: clamp(40px, 5vw, 64px);
}

.itm-showcard {
	position: relative;
	display: grid;
	grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
	gap: 0;
	border-radius: 28px;
	overflow: hidden;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(126, 200, 255, 0.22);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
	transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.3, 1), border-color 0.35s, box-shadow 0.45s;
}
.itm-showcard:hover {
	transform: translateY(-8px);
	border-color: rgba(126, 224, 255, 0.55);
	box-shadow: 0 40px 100px rgba(67, 186, 255, 0.22);
}
.itm-showcard--rev { grid-template-columns: minmax(0, 1fr) minmax(220px, 0.38fr); }
.itm-showcard--rev .itm-showcard__metric { order: 2; }
.itm-showcard--rev .itm-showcard__body { order: 1; }

.itm-showcard__metric {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 48px 28px;
	background:
		radial-gradient(circle at 50% 35%, rgba(67, 186, 255, 0.28), transparent 60%),
		linear-gradient(160deg, #14103a 0%, #0a0924 100%);
	overflow: hidden;
}
.itm-showcard__ring {
	position: absolute;
	width: 220px; height: 220px;
	border-radius: 50%;
	border: 1px solid rgba(126, 224, 255, 0.28);
	box-shadow: inset 0 0 60px rgba(67, 186, 255, 0.12), 0 0 40px rgba(67, 186, 255, 0.1);
	animation: itmShowRing 8s linear infinite;
	pointer-events: none;
}
.itm-showcard__ring::after {
	content: "";
	position: absolute;
	inset: 18px;
	border-radius: 50%;
	border: 1px dashed rgba(167, 139, 250, 0.35);
	animation: itmShowRing 14s linear infinite reverse;
}
@keyframes itmShowRing { to { transform: rotate(360deg); } }

.itm-showcard__idx {
	position: relative;
	z-index: 1;
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(159, 216, 255, 0.7);
	margin-bottom: 18px;
}
.itm-showcard__v {
	position: relative;
	z-index: 1;
	display: block;
	font-family: "Montserrat", sans-serif;
	font-size: clamp(48px, 5.5vw, 72px);
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: -0.04em;
	background: linear-gradient(110deg, #43baff 0%, #7ef0ff 40%, #a78bfa 80%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.itm-showcard__vl {
	position: relative;
	z-index: 1;
	display: block;
	margin-top: 14px;
	max-width: 16ch;
	font-size: 14px;
	line-height: 1.45;
	color: rgba(210, 224, 255, 0.75);
}

.itm-showcard__body {
	padding: clamp(28px, 3.5vw, 42px) clamp(24px, 3vw, 40px);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.itm-showcard__meta {
	margin: 0 0 10px;
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 11.5px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #8eb0d8;
}
.itm-theme .itm-showcard__title {
	margin: 0 0 14px;
	font-size: clamp(20px, 2.2vw, 28px);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #fff;
}
.itm-theme .itm-showcard__title a {
	color: inherit;
	background-image: linear-gradient(#43baff, #43baff);
	background-size: 0% 2px;
	background-position: 0 100%;
	background-repeat: no-repeat;
	transition: background-size 0.3s ease;
}
.itm-theme .itm-showcard__title a:hover { background-size: 100% 2px; color: #fff; }
.itm-showcard__challenge {
	margin: 0 0 22px;
	font-size: 15.5px;
	line-height: 1.7;
	color: rgba(210, 224, 255, 0.72);
}

.itm-showcard__split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-bottom: 22px;
}
.itm-showcard__col {
	padding: 16px 18px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
}
.itm-showcard__col span {
	display: block;
	margin-bottom: 10px;
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.itm-showcard__col--before span { color: #ff8f8f; }
.itm-showcard__col--after {
	background: linear-gradient(155deg, rgba(67, 186, 255, 0.14), rgba(140, 82, 255, 0.16));
	border-color: rgba(126, 224, 255, 0.35);
}
.itm-showcard__col--after span { color: #7ef0ff; }
.itm-showcard__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}
.itm-showcard__col li {
	position: relative;
	padding-left: 18px;
	margin: 0;
	font-size: 13.5px;
	line-height: 1.45;
	color: rgba(220, 232, 255, 0.85);
}
.itm-showcard__col--before li::before {
	content: "×";
	position: absolute;
	left: 0; top: -1px;
	color: #ff7a7a;
	font-weight: 700;
}
.itm-showcard__col--after li::before {
	content: "→";
	position: absolute;
	left: 0; top: 0;
	color: #43ffb0;
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.itm-showcard__stack {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}
.itm-showcard__stack span {
	padding: 6px 12px;
	border-radius: 999px;
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 11.5px;
	letter-spacing: 0.04em;
	color: #cfe4ff;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
}

.itm-theme .itm-showcard__more {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	align-self: flex-start;
	margin-top: auto;
	padding: 13px 26px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #04121f;
	background: linear-gradient(100deg, #43baff, #a78bfa);
	box-shadow: 0 12px 30px rgba(67, 186, 255, 0.3);
	transition: transform 0.25s, gap 0.25s, box-shadow 0.25s;
}
.itm-theme .itm-showcard__more:hover {
	transform: translateY(-2px);
	gap: 14px;
	color: #04121f;
	box-shadow: 0 18px 40px rgba(67, 186, 255, 0.45);
}

@media (max-width: 900px) {
	.itm-showcard,
	.itm-showcard--rev {
		grid-template-columns: 1fr;
	}
	.itm-showcard--rev .itm-showcard__metric { order: 0; }
	.itm-showcard__metric { padding: 36px 24px; min-height: 200px; }
	.itm-showcard__split { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
	.itm-showcard__ring,
	.itm-showcard__ring::after { animation: none; }
	.itm-showcard { transition: none; }
}

/* --- lista realizacji z wtyczki: ciemny, „premium" wygląd --- */

body.itm-theme .itm-realizacje,
body.itm-theme .itm-single {
	position: relative;
	background: radial-gradient(90% 120% at 15% 0%, #141039 0%, #0a0920 55%, #07071a 100%);
	color: #e8eeff;
	--itm-accent: #43baff !important;
	--itm-muted: #93a7c9;
	--itm-border: rgba(255, 255, 255, 0.14);
}
body.itm-theme .itm-realizacje::before,
body.itm-theme .itm-single::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(67, 186, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(67, 186, 255, 0.05) 1px, transparent 1px);
	background-size: 56px 56px;
	-webkit-mask-image: radial-gradient(70% 60% at 50% 0%, #000, transparent 75%);
	mask-image: radial-gradient(70% 60% at 50% 0%, #000, transparent 75%);
	pointer-events: none;
}
body.itm-theme .itm-realizacje .itm-container,
body.itm-theme .itm-single .itm-container { position: relative; z-index: 1; }

body.itm-theme .itm-realizacje .itm-title,
body.itm-theme .itm-realizacje .itm-case-title,
body.itm-theme .itm-single .itm-case-title,
body.itm-theme .itm-single .itm-related h3 { color: #fff; }
body.itm-theme .itm-realizacje .itm-case-title a { color: #fff; }
body.itm-theme .itm-realizacje .itm-lead,
body.itm-theme .itm-realizacje .itm-case-meta,
body.itm-theme .itm-single .itm-case-meta { color: #9db3d6; }
body.itm-theme .itm-realizacje .itm-eyebrow { color: #7ef0ff; filter: none; }

body.itm-theme .itm-realizacje .itm-case,
body.itm-theme .itm-single .itm-case {
	border: 1px solid rgba(126, 200, 255, 0.16);
	border-top: 1px solid rgba(126, 200, 255, 0.16);
	border-radius: 20px;
	background: linear-gradient(155deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
	padding: 34px 34px 28px;
	margin-bottom: 26px;
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
	transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1), border-color 0.4s, box-shadow 0.4s;
}
body.itm-theme .itm-realizacje .itm-case:hover {
	transform: translateY(-6px);
	border-color: rgba(126, 224, 255, 0.45);
	box-shadow: 0 34px 80px rgba(67, 186, 255, 0.22);
}
body.itm-theme .itm-cases .itm-case:last-child { border-bottom: 1px solid rgba(126, 200, 255, 0.16); margin-bottom: 0; }

body.itm-theme .itm-realizacje .itm-filters { gap: 10px; margin-bottom: 26px; }
body.itm-theme .itm-realizacje .itm-filter {
	border-color: rgba(255, 255, 255, 0.18);
	color: #b9cbe8;
	background: rgba(255, 255, 255, 0.04);
	font-weight: 700;
}
body.itm-theme .itm-realizacje .itm-filter:hover { border-color: #43baff; color: #fff; }
body.itm-theme .itm-realizacje .itm-filter[aria-pressed="true"] {
	background: linear-gradient(100deg, #43baff, #a78bfa);
	border-color: transparent;
	color: #06121f;
	box-shadow: 0 10px 26px rgba(67, 186, 255, 0.3);
}

body.itm-theme .itm-seg { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.16); }
body.itm-theme .itm-seg button { color: #a9bedd; }
body.itm-theme .itm-seg button[aria-pressed="true"] {
	background: linear-gradient(100deg, #43baff, #a78bfa);
	color: #06121f;
}

body.itm-theme .itm-side--before {
	background: rgba(255, 255, 255, 0.03);
	border: 1px dashed rgba(255, 255, 255, 0.16);
}
body.itm-theme .itm-side--before h4 { color: #8ea4c6; }
body.itm-theme .itm-side--before li { color: #a3b6d4; }
body.itm-theme .itm-side--before li::before { color: #ff7a7a; }
body.itm-theme .itm-side--after {
	background: linear-gradient(155deg, rgba(67, 186, 255, 0.16), rgba(140, 82, 255, 0.2));
	border: 1px solid rgba(126, 224, 255, 0.4);
	color: #eaf6ff;
	box-shadow: inset 0 0 50px rgba(67, 186, 255, 0.1);
}
body.itm-theme .itm-side--after h4 { color: #7ef0ff; }
body.itm-theme .itm-side--after li::before { color: #43ffb0; }
body.itm-theme .itm-divider::before { background: rgba(255, 255, 255, 0.14); }

body.itm-theme .itm-compare[data-active="before"] .itm-side--after,
body.itm-theme .itm-compare[data-active="after"] .itm-side--before { opacity: 0.62; }

body.itm-theme .itm-delta {
	width: 92px;
	padding: 14px 8px;
	background: linear-gradient(140deg, #43baff, #a78bfa);
	color: #04121f;
	box-shadow: 0 0 0 6px rgba(67, 186, 255, 0.1), 0 14px 34px rgba(67, 186, 255, 0.35);
	animation: itmDeltaPulse 3.4s ease-in-out infinite;
}
@keyframes itmDeltaPulse {
	0%, 100% { box-shadow: 0 0 0 6px rgba(67, 186, 255, 0.1), 0 14px 34px rgba(67, 186, 255, 0.35); }
	50%      { box-shadow: 0 0 0 14px rgba(67, 186, 255, 0), 0 14px 34px rgba(67, 186, 255, 0.45); }
}

body.itm-theme .itm-delta-v { font-size: 19px; }
body.itm-theme .itm-delta small { font-size: 9px; }

body.itm-theme .itm-pill {
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(255, 255, 255, 0.16);
	color: #cfe4ff;
}
body.itm-theme .itm-stack-label,
body.itm-theme .itm-stack-arrow { color: #8ea4c6; }
body.itm-theme .itm-more { color: #7ef0ff; }
body.itm-theme .itm-more:hover { color: #fff; }
body.itm-theme .itm-realizacje .itm-btn,
body.itm-theme .itm-single .itm-btn {
	background: linear-gradient(100deg, #43baff, #a78bfa);
	color: #04121f;
	box-shadow: 0 14px 36px rgba(67, 186, 255, 0.3);
}

body.itm-theme .itm-single .itm-hero-metric { border-bottom-color: rgba(255, 255, 255, 0.14); }
body.itm-theme .itm-single .itm-hero-v {
	background: linear-gradient(100deg, #43baff, #7ef0ff 50%, #a78bfa);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
body.itm-theme .itm-single .itm-hero-l { color: #9db3d6; }
body.itm-theme .itm-single .itm-detail-grid {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.14);
}
body.itm-theme .itm-single .itm-dcell { background: rgba(11, 12, 34, 0.92); }
body.itm-theme .itm-single .itm-dcell h4 { color: #7ef0ff; filter: none; }
body.itm-theme .itm-single .itm-dcell p,
body.itm-theme .itm-single .itm-effects li { color: #c3d3ec; }
body.itm-theme .itm-single .itm-effects li::before { color: #43ffb0; }
body.itm-theme .itm-single .itm-freetext { color: #c3d3ec; }
body.itm-theme .itm-single .itm-quote {
	background: rgba(255, 255, 255, 0.05);
	border-left-color: #43baff;
}
body.itm-theme .itm-single .itm-quote p { color: #eaf2ff; }
body.itm-theme .itm-single .itm-quote cite { color: #93a7c9; }
body.itm-theme .itm-single .itm-single-cta {
	background: linear-gradient(120deg, rgba(67, 186, 255, 0.14), rgba(140, 82, 255, 0.2));
	border: 1px solid rgba(126, 224, 255, 0.32);
	color: #eaf2ff;
}
body.itm-theme .itm-single .itm-related { border-top-color: rgba(255, 255, 255, 0.14); }
body.itm-theme .itm-single .itm-related-item {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.14);
	color: #eaf2ff;
}
body.itm-theme .itm-single .itm-related-item:hover { border-color: #43baff; }
body.itm-theme .itm-single .itm-related-metric {
	background: linear-gradient(100deg, #43baff, #a78bfa);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
body.itm-theme .itm-single .itm-related-label { color: #93a7c9; }

/* ==========================================================================
   RWD + reduced motion dla nowych sekcji
   ========================================================================== */

@media (max-width: 1024px) {
	.itm-hero3d__inner { grid-template-columns: 1fr; gap: 30px; }
	.itm-hero3d__stage { min-height: 400px; order: 2; }
	.itm-hero3d__term { left: 0; }
	.itm-hero3d__chip--a { right: 0; }
	.itm-real-metrics__grid { grid-template-columns: 1fr; margin-top: -24px; }
	.itm-proof__grid { grid-template-columns: repeat(2, 1fr); }
	.itm-flow__grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
	.itm-flow__grid::before { display: none; }
}

@media (max-width: 767px) {
	/* Statyczny banner — bez 3D, canvas i animacji (wydajność telefonów) */
	.itm-hero3d {
		padding: 48px 0 0;
	}
	.itm-hero3d__stage,
	.itm-hero3d__net,
	.itm-hero3d__scan,
	.itm-hero3d__floor,
	.itm-hero3d__canvas {
		display: none !important;
	}
	.itm-hero3d__aurora {
		animation: none !important;
		opacity: 0.28;
		filter: none !important;
	}
	.itm-hero3d__inner {
		grid-template-columns: 1fr;
		gap: 0;
		padding-bottom: 8px;
	}
	.itm-hero3d__copy > * {
		animation: none !important;
		opacity: 1;
		transform: none;
	}
	.itm-hero3d__accent,
	.itm-hero3d__pulse,
	.itm-hero3d__caret,
	.itm-hero3d__track {
		animation: none !important;
	}
	.itm-hero3d__caret { opacity: 0.85; }
	.itm-hero3d__cta { gap: 10px; }
	.itm-theme .itm-hero3d__btn,
	.itm-theme .itm-hero3d__ghost { width: 100%; justify-content: center; }
	.itm-hero3d__ticker {
		margin-top: 36px;
		overflow: hidden;
	}
	.itm-hero3d__track {
		transform: none !important;
		width: 100%;
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 10px 18px;
		animation: none !important;
	}
	.itm-hero3d__track span:nth-child(n+7) {
		display: none;
	}
	.itm-proof__grid { grid-template-columns: 1fr; }
	.itm-flow__grid { grid-template-columns: 1fr; }
	body.itm-theme .itm-realizacje .itm-case,
	body.itm-theme .itm-single .itm-case { padding: 24px 20px; border-radius: 16px; }
	.itm-showcard__ring,
	.itm-showcard__ring::after { animation: none; }
}

@media (prefers-reduced-motion: reduce) {
	.itm-hero3d *,
	.itm-hero3d__copy > * {
		animation: none !important;
		transition: none !important;
	}
	.itm-hero3d__copy > * { opacity: 1; transform: none; }
	.itm-hero3d__term-lines li { opacity: 1; transform: none; }
	.itm-reveal { opacity: 1; transform: none; }
	.itm-metric-card,
	.itm-proof-card { transition: none; }
	.itm-logo-track { animation: none !important; }
}

html.itm-lab .itm-logo-track,
html.itm-lab .itm-hero3d__track,
html.itm-lab .itm-showcard__ring,
html.itm-lab .itm-showcard__ring::after {
	animation: none !important;
}
