:root {
	--kimitec-navy: var(--e-global-color-secondary, #071827);
	--kimitec-navy-surface: var(--e-global-color-navyalt, #0d273a);
	--kimitec-blue: var(--e-global-color-primary, #0b45ad);
	--kimitec-cyan: var(--e-global-color-cyan001, #00aedd);
	--kimitec-cyan-light: var(--e-global-color-cyanlit, #79e2f6);
	--kimitec-orange: var(--e-global-color-accent, #ff7418);
	--kimitec-text: var(--e-global-color-text, #0f2138);
	--kimitec-muted: var(--e-global-color-muted01, #637285);
	--kimitec-border: var(--e-global-color-border1, #d9e2e9);
	--kimitec-background: var(--e-global-color-paper01, #f2f5f7);
	--kimitec-white: var(--e-global-color-white01, #ffffff);
	--kimitec-radius-sm: 12px;
	--kimitec-radius: 20px;
	--kimitec-radius-lg: 24px;
	--kimitec-section-inline: clamp(18px, 3vw, 32px);
	--kimitec-section-block: clamp(72px, 8vw, 108px);
	--kimitec-control-height: 50px;
	--kimitec-shadow-sm: 0 10px 30px rgba(7, 24, 39, 0.08);
	--kimitec-shadow: 0 20px 55px rgba(7, 24, 39, 0.12);
	--kimitec-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

body {
	overflow-x: clip;
	color: var(--kimitec-text);
	background: var(--kimitec-white);
}

.elementor-widget-image img {
	height: auto;
}

.kimitec-section {
	position: relative;
}

.kimitec-js .kimitec-reveal {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity 520ms var(--kimitec-ease),
		transform 520ms var(--kimitec-ease);
}

.kimitec-js .kimitec-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.kimitec-card,
.kimitec-loop-card {
	position: relative;
	overflow: hidden;
	transition:
		transform 220ms var(--kimitec-ease),
		box-shadow 220ms var(--kimitec-ease),
		border-color 220ms var(--kimitec-ease);
}

.kimitec-card:hover,
.kimitec-card:focus-within,
.kimitec-loop-card:hover,
.kimitec-loop-card:focus-within {
	border-color: var(--kimitec-cyan) !important;
	box-shadow: var(--kimitec-shadow);
	transform: translateY(-4px);
}

.kimitec-loop-card .kimitec-loop-card__media,
.kimitec-loop-card .kimitec-loop-card__media img,
.kimitec-loop-card > .elementor-widget-image img,
.kimitec-loop-card > .elementor-widget-theme-post-featured-image img {
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 260ms var(--kimitec-ease);
}

.kimitec-loop-card--resource .kimitec-loop-card__media,
.kimitec-loop-card--resource .kimitec-loop-card__media img {
	aspect-ratio: 4 / 3;
}

.kimitec-loop-card:hover .kimitec-loop-card__media,
.kimitec-loop-card:hover .kimitec-loop-card__media img,
.kimitec-loop-card:focus-within .kimitec-loop-card__media,
.kimitec-loop-card:focus-within .kimitec-loop-card__media img {
	transform: scale(1.035);
}

.kimitec-loop-card__title a {
	color: inherit;
	text-decoration: none;
}

.kimitec-button .elementor-button,
.kimitec-button.elementor-widget-button .elementor-button,
.kimitec-form .elementor-button {
	min-height: var(--kimitec-control-height);
	padding: 13px 22px;
	border: 1px solid transparent;
	border-radius: var(--kimitec-radius-sm);
	font-family: Manrope, sans-serif;
	font-weight: 800;
	line-height: 1.2;
	box-shadow: 0 12px 28px rgba(255, 122, 26, 0.26);
	transition:
		color 200ms var(--kimitec-ease),
		background-color 200ms var(--kimitec-ease),
		border-color 200ms var(--kimitec-ease),
		transform 200ms var(--kimitec-ease),
		box-shadow 200ms var(--kimitec-ease);
}

.kimitec-button .elementor-button:hover,
.kimitec-button .elementor-button:focus-visible,
.kimitec-form .elementor-button:hover,
.kimitec-form .elementor-button:focus-visible {
	box-shadow: 0 16px 34px rgba(255, 122, 26, 0.3);
	transform: translateY(-2px);
}

.kimitec-button .elementor-button:active,
.kimitec-form .elementor-button:active {
	box-shadow: 0 7px 18px rgba(7, 24, 39, 0.16);
	transform: translateY(0);
}

.kimitec-button .elementor-button[disabled],
.kimitec-button .elementor-button.is-disabled,
.kimitec-form .elementor-button[disabled] {
	cursor: not-allowed;
	opacity: 0.55;
	pointer-events: none;
	transform: none;
}

.kimitec-button--dark .elementor-button {
	border-color: var(--kimitec-navy);
	background: var(--kimitec-navy);
	color: var(--kimitec-white);
	box-shadow: var(--kimitec-shadow-sm);
}

.kimitec-button--dark .elementor-button:hover,
.kimitec-button--dark .elementor-button:focus-visible {
	border-color: var(--kimitec-cyan);
	background: var(--kimitec-blue);
}

.kimitec-button--outline .elementor-button {
	border-color: var(--kimitec-border);
	background: transparent;
	color: var(--kimitec-navy);
	box-shadow: none;
}

.kimitec-button--outline .elementor-button:hover,
.kimitec-button--outline .elementor-button:focus-visible {
	border-color: var(--kimitec-cyan);
	background: rgba(0, 174, 221, 0.07);
	color: var(--kimitec-blue);
}

.kimitec-button--outline-light .elementor-button {
	border-color: rgba(255, 255, 255, 0.48);
	background: transparent;
	color: var(--kimitec-white);
	box-shadow: none;
}

.kimitec-button--outline-light .elementor-button:hover,
.kimitec-button--outline-light .elementor-button:focus-visible {
	border-color: var(--kimitec-cyan);
	background: rgba(255, 255, 255, 0.09);
	color: var(--kimitec-white);
}

.kimitec-button--text .elementor-button {
	min-height: 44px;
	padding: 8px 0;
	border: 0;
	background: transparent;
	color: var(--kimitec-blue);
	box-shadow: none;
}

.kimitec-button--text .elementor-button::after,
.kimitec-button--download .elementor-button::after {
	display: inline-block;
	margin-left: 9px;
	content: "→";
	transition: transform 220ms var(--kimitec-ease);
}

.kimitec-button--download .elementor-button::after {
	content: "↓";
}

.kimitec-button--text .elementor-button:hover,
.kimitec-button--text .elementor-button:focus-visible {
	background: transparent;
	color: var(--kimitec-cyan);
	box-shadow: none;
	transform: none;
}

.kimitec-button--text .elementor-button:hover::after,
.kimitec-button--text .elementor-button:focus-visible::after {
	transform: translateX(5px);
}

.kimitec-button--download .elementor-button:hover::after,
.kimitec-button--download .elementor-button:focus-visible::after {
	transform: translateY(3px);
}

.kimitec-button--icon .elementor-button {
	width: var(--kimitec-control-height);
	min-width: var(--kimitec-control-height);
	padding: 0;
	border-radius: 50%;
}

.kimitec-site-header {
	position: relative;
	transition:
		background-color 220ms var(--kimitec-ease),
		box-shadow 220ms var(--kimitec-ease),
		backdrop-filter 220ms var(--kimitec-ease);
}

.kimitec-site-header.is-scrolled {
	background: rgba(7, 24, 39, 0.98) !important;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
	backdrop-filter: saturate(130%) blur(12px);
}

.kimitec-search-trigger .elementor-icon {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 38px !important;
	height: 38px !important;
	padding: 0 !important;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 50% !important;
	background: rgba(255, 255, 255, 0.08);
	box-shadow: none !important;
	line-height: 1;
	transition:
		color 200ms ease,
		background-color 200ms ease,
		border-color 200ms ease,
		transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.kimitec-search-trigger .elementor-icon svg {
	width: 16px !important;
	height: 16px !important;
}

.kimitec-search-trigger .elementor-icon:hover,
.kimitec-search-trigger .elementor-icon:focus-visible,
.kimitec-site-header.is-search-open .kimitec-search-trigger .elementor-icon {
	border-color: var(--kimitec-orange);
	background: var(--kimitec-orange);
	transform: translateY(-1px);
}

.kimitec-search-panel {
	display: flex !important;
	position: absolute !important;
	top: 100% !important;
	left: 50% !important;
	width: 100vw !important;
	max-width: 100vw !important;
	min-height: 0 !important;
	max-height: 0 !important;
	margin: 0 !important;
	padding: 0 18px !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
	transform: translate3d(-50%, -14px, 0);
	visibility: hidden !important;
	z-index: 999;
	transition:
		max-height 300ms cubic-bezier(0.2, 0.8, 0.2, 1),
		padding 300ms cubic-bezier(0.2, 0.8, 0.2, 1),
		opacity 200ms ease,
		transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1),
		visibility 0s linear 300ms;
}

.kimitec-site-header.is-search-open .kimitec-search-panel {
	max-height: 88px !important;
	padding: 14px 18px !important;
	opacity: 1 !important;
	pointer-events: auto !important;
	transform: translate3d(-50%, 0, 0);
	visibility: visible !important;
	transition-delay: 0s;
}

.kimitec-header-search-form {
	width: min(920px, calc(100vw - 36px));
	margin: 0 auto;
}

.kimitec-header-search-form .elementor-search-form__container {
	box-shadow: 0 14px 34px rgba(7, 24, 39, 0.14);
	transition:
		border-color 220ms ease,
		box-shadow 220ms ease;
}

.kimitec-header-search-form .elementor-search-form--focus {
	box-shadow: 0 16px 38px rgba(7, 24, 39, 0.2);
}

.kimitec-site-search-form {
	width: 100%;
	max-width: 920px;
	margin-inline: auto;
}

.kimitec-site-search-form .elementor-search-form__container {
	display: flex !important;
	width: 100% !important;
	min-height: 54px !important;
	overflow: hidden;
	border: 1px solid var(--kimitec-border) !important;
	border-radius: var(--kimitec-radius-sm) !important;
	background: var(--kimitec-white) !important;
	box-shadow: var(--kimitec-shadow-sm);
}

.kimitec-site-search-form .elementor-search-form__input {
	width: auto !important;
	min-width: 0 !important;
	height: 54px !important;
	flex: 1 1 auto !important;
	padding: 0 18px !important;
	border: 0 !important;
	background: var(--kimitec-white) !important;
	color: var(--kimitec-text) !important;
}

.kimitec-site-search-form .elementor-search-form__submit {
	width: 54px !important;
	min-width: 54px !important;
	max-width: 54px !important;
	height: 54px !important;
	flex: 0 0 54px !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: var(--kimitec-orange) !important;
	color: var(--kimitec-white) !important;
}

.kimitec-site-search-form .elementor-search-form__submit:hover,
.kimitec-site-search-form .elementor-search-form__submit:focus-visible {
	background: var(--e-global-color-accenth, #e9650f) !important;
}

.kimitec-site-search-form .elementor-search-form__submit svg {
	width: 18px !important;
	height: 18px !important;
	fill: currentColor !important;
}

.kimitec-corporate-mega-header .e-n-menu-title {
	position: relative;
	transition:
		color 220ms ease,
		background-color 220ms ease,
		transform 220ms ease;
}

.kimitec-corporate-mega-header .e-n-menu-title::after {
	position: absolute;
	right: 14px;
	bottom: 7px;
	left: 14px;
	height: 2px;
	background: var(--kimitec-orange);
	content: "";
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.kimitec-corporate-mega-header .e-n-menu-title:hover {
	transform: translateY(-1px);
}

.kimitec-corporate-mega-header .e-n-menu-title:hover::after,
.kimitec-corporate-mega-header .e-n-menu-title.e-current::after,
.kimitec-corporate-mega-header .e-n-menu-title[aria-expanded="true"]::after {
	transform: scaleX(1);
}

.kimitec-corporate-mega-header .e-n-menu-content > .e-con {
	animation: kimitec-mega-reveal 300ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
	transform-origin: top center;
}

.kimitec-corporate-mega-header .kimitec-mega-gamme {
	border-radius: 12px;
	transition:
		transform 220ms ease,
		background-color 220ms ease,
		box-shadow 220ms ease;
}

.kimitec-corporate-mega-header .kimitec-mega-gamme:hover {
	background: var(--kimitec-background);
	box-shadow: 0 10px 26px rgba(7, 24, 39, 0.08);
	transform: translateX(6px);
}

.kimitec-corporate-mega-header .kimitec-mega-gamme .elementor-icon {
	transition:
		transform 250ms cubic-bezier(0.2, 0.8, 0.2, 1),
		color 220ms ease;
}

.kimitec-corporate-mega-header .kimitec-mega-gamme:hover .elementor-icon {
	transform: scale(1.05);
}

@keyframes kimitec-mega-reveal {
	from {
		opacity: 0;
		transform: translateY(14px) scale(0.985);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.kimitec-home-hero,
.kimitec-subpage-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
}

.kimitec-subpage-hero {
	min-height: clamp(520px, 64vw, 720px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.kimitec-home-hero::before,
.kimitec-subpage-hero::before {
	position: absolute;
	z-index: -1;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
	background-size: 64px 64px;
	content: "";
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), transparent 86%);
	pointer-events: none;
}

.kimitec-subpage-hero::after {
	position: absolute;
	z-index: -1;
	top: clamp(110px, 16vw, 190px);
	bottom: clamp(54px, 7vw, 86px);
	left: max(20px, calc((100vw - 1240px) / 2));
	width: 3px;
	border-radius: 4px;
	background: linear-gradient(var(--kimitec-cyan), var(--kimitec-orange));
	content: "";
	pointer-events: none;
}

.kimitec-subpage-hero .elementor-widget-heading h1,
.kimitec-home-hero .elementor-widget-heading h1 {
	max-width: 18ch;
	text-wrap: balance;
}

.kimitec-subpage-hero .elementor-widget-text-editor,
.kimitec-home-hero .elementor-widget-text-editor {
	max-width: 66ch;
}

.kimitec-subpage-hero .elementor-widget-image,
.kimitec-subpage-hero .elementor-widget-theme-post-featured-image {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--kimitec-radius-lg);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.kimitec-subpage-hero .elementor-widget-image::after,
.kimitec-subpage-hero .elementor-widget-theme-post-featured-image::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 52%, rgba(7, 24, 39, 0.44));
	content: "";
	pointer-events: none;
}

.kimitec-subpage-hero img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.kimitec-eyebrow .elementor-heading-title,
[class*="kimitec-"] .elementor-widget-heading h6 {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.kimitec-eyebrow .elementor-heading-title::before,
[class*="kimitec-"] .elementor-widget-heading h6::before {
	width: 26px;
	height: 2px;
	background: currentColor;
	content: "";
}

.kimitec-form .elementor-field-group {
	margin-bottom: 18px;
}

.kimitec-form .elementor-field-label {
	margin-bottom: 8px;
	color: var(--kimitec-text);
	font-family: Manrope, sans-serif;
	font-size: 14px;
	font-weight: 750;
	line-height: 1.35;
}

.kimitec-form :is(input, select, textarea).elementor-field {
	min-height: var(--kimitec-control-height);
	padding: 12px 15px;
	border: 1px solid var(--kimitec-border);
	border-radius: var(--kimitec-radius-sm);
	background: var(--kimitec-white);
	color: var(--kimitec-text);
	box-shadow: 0 0 0 0 rgba(0, 174, 221, 0);
	transition:
		border-color 200ms var(--kimitec-ease),
		box-shadow 200ms var(--kimitec-ease),
		background-color 200ms var(--kimitec-ease);
}

.kimitec-form textarea.elementor-field {
	min-height: 148px;
	resize: vertical;
}

.kimitec-form :is(input, select, textarea).elementor-field:hover {
	border-color: color-mix(in srgb, var(--kimitec-cyan) 58%, var(--kimitec-border));
}

.kimitec-form :is(input, select, textarea).elementor-field:focus {
	border-color: var(--kimitec-cyan);
	box-shadow: 0 0 0 4px rgba(0, 174, 221, 0.13);
	outline: none;
}

.kimitec-form .elementor-field-type-acceptance .elementor-field-option {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--kimitec-muted);
	font-size: 14px;
	line-height: 1.5;
}

.kimitec-form .elementor-message {
	margin-top: 14px;
	padding: 13px 15px;
	border-radius: var(--kimitec-radius-sm);
	font-weight: 700;
}

.kimitec-form .elementor-message-success {
	border: 1px solid #94cfa9;
	background: #ecf8f0;
	color: #175c31;
}

.kimitec-form .elementor-message-danger,
.kimitec-form .elementor-error {
	border-color: #db8f8f;
	background: #fff2f2;
	color: #8f2323;
}

.kimitec-site-footer {
	position: relative;
	border-top: 3px solid transparent;
	border-image: linear-gradient(90deg, var(--kimitec-cyan), var(--kimitec-blue), var(--kimitec-orange)) 1;
}

.kimitec-site-footer a {
	color: inherit;
	text-decoration-color: transparent;
	text-underline-offset: 4px;
	transition:
		color 200ms var(--kimitec-ease),
		text-decoration-color 200ms var(--kimitec-ease);
}

.kimitec-site-footer a:hover,
.kimitec-site-footer a:focus-visible {
	color: var(--kimitec-cyan-light);
	text-decoration-color: currentColor;
}

.kimitec-note-editor {
	border: 1px dashed #8aa0b5;
}

.kimitec-empty-state {
	display: none;
}

.elementor-editor-active .kimitec-empty-state,
.elementor-editor-active .kimitec-note-editor {
	display: block;
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
	outline: 3px solid var(--kimitec-cyan);
	outline-offset: 3px;
}

.elementor-field,
.elementor-button,
.elementor-menu-toggle,
.elementor-nav-menu a {
	min-height: 44px;
}

@media (min-width: 1025px) and (max-width: 1280px) {
	.kimitec-site-header .kimitec-header-logo {
		width: 16% !important;
	}

	.kimitec-site-header .kimitec-header-nav {
		width: 72% !important;
	}

	.kimitec-site-header .kimitec-header-actions {
		width: 8% !important;
	}

	.kimitec-site-header .kimitec-header-quote {
		display: none !important;
	}
}

@media (max-width: 1024px) {
	.kimitec-subpage-hero {
		min-height: auto;
	}

	.kimitec-subpage-hero::after {
		top: 112px;
		bottom: 60px;
		left: 22px;
	}

	.kimitec-subpage-hero .elementor-widget-heading h1,
	.kimitec-home-hero .elementor-widget-heading h1 {
		max-width: 22ch;
	}

	.kimitec-site-header .kimitec-header-logo {
		width: 60% !important;
	}

	.kimitec-site-header .kimitec-header-nav {
		width: 20% !important;
	}

	.kimitec-site-header .kimitec-header-actions {
		width: 16% !important;
	}

	.kimitec-site-header .kimitec-header-quote {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.kimitec-site-search-form .elementor-search-form__container,
	.kimitec-site-search-form .elementor-search-form__input,
	.kimitec-site-search-form .elementor-search-form__submit {
		min-height: 50px !important;
		height: 50px !important;
	}

	.kimitec-site-search-form .elementor-search-form__submit {
		width: 50px !important;
		min-width: 50px !important;
		max-width: 50px !important;
		flex-basis: 50px !important;
	}

	.kimitec-site-search-form .elementor-search-form__input {
		padding-inline: 14px !important;
		font-size: 14px !important;
	}

	.kimitec-subpage-hero::before,
	.kimitec-home-hero::before {
		background-size: 42px 42px;
	}

	.kimitec-subpage-hero::after {
		top: 96px;
		bottom: 46px;
		left: 12px;
		width: 2px;
	}

	.kimitec-subpage-hero .elementor-widget-image,
	.kimitec-subpage-hero .elementor-widget-theme-post-featured-image {
		border-radius: 18px;
		box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
	}

	.kimitec-loop-card {
		min-height: auto !important;
	}

	.kimitec-site-header.is-search-open .kimitec-search-panel {
		max-height: 76px !important;
		padding: 10px 14px !important;
	}

	.kimitec-header-search-form {
		width: calc(100vw - 28px);
	}

	.kimitec-button-mobile-full .elementor-button,
	.kimitec-button-mobile-full {
		width: 100%;
	}

	.kimitec-button--text .elementor-button {
		width: auto;
	}

	.kimitec-form .elementor-field-group {
		width: 100% !important;
		margin-bottom: 15px;
	}

	.kimitec-form .elementor-button {
		width: 100%;
	}

	.kimitec-site-footer {
		text-align: left;
	}

	.kimitec-chip-row {
		flex-wrap: wrap !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	.kimitec-js .kimitec-reveal {
		opacity: 1 !important;
		transform: none !important;
	}
}
