body.elementor-page {
	overflow-x: hidden;
}

.xm-wrap {
	width: min(1200px, calc(100% - 30px));
	margin: 0 auto;
}

.xm-section-title {
	margin: 0 0 12px;
	font-size: 36px;
	line-height: 1.25;
	font-weight: 600;
	color: #1a1a1a;
}

.xm-section-desc {
	margin: 0 0 32px;
	font-size: 16px;
	line-height: 1.7;
	color: #666;
}

.xm-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 140px;
	height: 44px;
	padding: 0 28px;
	border: 1px solid transparent;
	border-radius: var(--xm-btn-radius, 2px);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-decoration: none !important;
	transition: background .25s ease, color .25s ease, border-color .25s ease, opacity .25s ease;
	cursor: pointer;
}

.xm-btn--solid {
	background: #fff;
	color: #111;
	border-color: #fff;
}

.xm-btn--solid:hover {
	background: transparent;
	color: #fff;
}

.xm-btn--ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, .85);
}

.xm-btn--ghost:hover {
	background: #fff;
	color: #111;
}

.xm-btn--dark {
	background: #1a1a1a;
	color: #fff;
	border-color: #1a1a1a;
}

.xm-btn--dark:hover {
	background: #d12e2f;
	border-color: #d12e2f;
	color: #fff;
}

/* Hero */
.xm-hero {
	position: relative;
	height: 100vh;
	min-height: 100vh;
	overflow: hidden;
	background: #0a0a0a;
	color: #fff;
}

.xm-hero__viewport {
	position: absolute;
	inset: 0;
	overflow: hidden;
	cursor: grab;
	touch-action: pan-y;
	user-select: none;
}

.xm-hero.is-dragging .xm-hero__viewport {
	cursor: grabbing;
}

.xm-hero.is-dragging a,
.xm-hero.is-dragging button {
	pointer-events: none;
}

.xm-hero__track {
	display: flex;
	height: 100%;
	will-change: transform;
}

.xm-hero__slide {
	position: relative;
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.xm-hero__media,
.xm-hero__image,
.xm-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.xm-hero__image {
	background-color: #1a1a1a;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: var(--xm-bg-d);
}

.xm-hero.is-device-desktop .xm-hero__image {
	background-image: var(--xm-bg-d) !important;
}

.xm-hero.is-device-tablet .xm-hero__image {
	background-image: var(--xm-bg-t, var(--xm-bg-d)) !important;
}

.xm-hero.is-device-mobile .xm-hero__image {
	background-image: var(--xm-bg-m, var(--xm-bg-d)) !important;
}

.xm-hero__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.xm-hero__mask {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .18) 48%, rgba(0, 0, 0, .08) 100%);
}

.xm-hero__content {
	--xm-hero-edge: 40px;
	--xm-hero-left: max(var(--xm-hero-edge), calc((100% - 1200px) / 2));
	--xm-hero-right: auto;
	--xm-hero-top: 50%;
	--xm-hero-bottom: auto;
	--xm-hero-tx: 0%;
	--xm-hero-ty: -50%;
	--xm-hero-offset-x: 0px;
	--xm-hero-offset-y: 0px;
	--xm-hero-text: left;
	--xm-hero-btns: flex-start;
	--xm-hero-top-gap: 18%;
	--xm-hero-bottom-gap: 120px;
	--xm-hero-max: 640px;
	position: absolute;
	left: var(--xm-hero-left);
	right: var(--xm-hero-right);
	top: var(--xm-hero-top);
	bottom: var(--xm-hero-bottom);
	z-index: 3;
	box-sizing: border-box;
	width: min(var(--xm-hero-max), calc(100% - (2 * var(--xm-hero-edge))));
	max-width: min(var(--xm-hero-max), calc(100% - (2 * var(--xm-hero-edge))));
	text-align: var(--xm-hero-text);
	transform: translate(calc(var(--xm-hero-tx) + var(--xm-hero-offset-x)), calc(var(--xm-hero-ty) + var(--xm-hero-offset-y)));
}

.xm-hero__kicker {
	margin: 0 0 10px;
	font-size: 16px;
	color: rgba(255, 255, 255, .9);
}

.xm-hero__title {
	margin: 0 0 12px;
	font-size: clamp(36px, 5vw, 64px);
	line-height: 1.15;
	font-weight: 600;
	color: #fff;
}

.xm-hero__subtitle {
	margin: 0 0 28px;
	font-size: 18px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .88);
}

.xm-hero__btns {
	display: flex;
	flex-wrap: nowrap;
	justify-content: var(--xm-hero-btns);
	align-items: center;
	gap: 16px;
}

.xm-hero__btns .xm-btn {
	flex: 0 0 auto;
	white-space: nowrap;
}

.xm-hero__btns .xm-btn--ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, .85);
}

.xm-hero__btns .xm-btn--ghost:hover {
	background: #fff;
	color: #111;
}

.xm-hero__btns .xm-btn--solid {
	background: #fff;
	color: #111;
	border-color: #fff;
}

.xm-hero__btns .xm-btn--solid:hover {
	background: transparent;
	color: #fff;
}

/* Carousel dots */
.xm-hero__dots {
	position: absolute;
	left: 50%;
	bottom: 36px;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transform: translateX(-50%);
}

.xm-hero__dot {
	display: block;
	width: 28px;
	height: 3px;
	padding: 0;
	border: 0;
	border-radius: 2px;
	background: rgba(255, 255, 255, .35);
	cursor: pointer;
	transition: background-color .25s ease, width .25s ease, transform .25s ease, opacity .25s ease;
}

.xm-hero__dots--circle .xm-hero__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
}

.xm-hero__dot.is-active {
	background: #b8e600;
}

.xm-hero--dot-grow .xm-hero__dots--bar .xm-hero__dot.is-active {
	width: 42px;
}

.xm-hero__dot:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

/* Service mosaic — mobile first, desktop 1+2×2 */
.xm-service {
	--xm-service-zoom: 1.06;
	--xm-service-h: 660px;
	padding: 96px 0;
	background: #f5f5f5;
}

.xm-service__head {
	margin: 0 auto 40px;
	text-align: center;
}

.xm-service__title {
	margin: 0 0 12px;
	font-size: 36px;
	line-height: 1.25;
	font-weight: 600;
	color: #1a1a1a;
}

.xm-service__subtitle {
	margin: 0;
	font-size: 16px;
	line-height: 1.7;
	color: #888;
}

.xm-service__mosaic {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-auto-rows: max-content;
	gap: 12px;
	width: 100%;
	height: auto;
	overflow: visible;
}

.xm-service__card {
	position: relative;
	display: block;
	box-sizing: border-box;
	width: auto;
	height: max-content;
	align-self: start;
	overflow: hidden;
	min-width: 0;
	background: #d8d8d8;
	border-radius: 6px;
	color: #fff;
	text-decoration: none !important;
}

a.xm-service__card:hover,
a.xm-service__card:visited,
a.xm-service__card:hover .xm-service__caption {
	color: #fff;
	text-decoration: none !important;
}

.xm-service__card.is-feature {
	grid-column: 1 / -1;
}

.xm-service__media {
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
}

.xm-service__card::after {
	border-radius: inherit;
}

.xm-service__ratio {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
	visibility: hidden;
	pointer-events: none;
}

.xm-service__media img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: none;
	object-fit: cover;
	transform: scale(1);
	transition: transform .45s ease;
}

.xm-service__card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .45) 100%);
}

.xm-service__caption {
	position: absolute;
	left: 20px;
	bottom: 18px;
	z-index: 2;
	margin: 0;
	max-width: calc(100% - 40px);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	color: #fff;
	text-shadow: 0 1px 8px rgba(0, 0, 0, .45);
}

.xm-service__card.is-feature .xm-service__caption {
	left: 24px;
	bottom: 22px;
	font-size: 22px;
	font-weight: 600;
}

@media (hover: hover) {
	.xm-service__card:hover .xm-service__media img {
		transform: scale(var(--xm-service-zoom));
	}
}

.xm-service__cta {
	margin-top: 40px;
	text-align: center;
}

.xm-service__btn {
	min-width: 200px;
	background: #fff;
	color: #1a1a1a;
	border-color: #1a1a1a;
}

.xm-service__btn:hover {
	background: #1a1a1a;
	color: #fff;
	border-color: #1a1a1a;
}

.xm-service__arrow {
	display: inline-block;
	margin-left: 8px;
	color: #2db84d;
	font-size: 1.15em;
	line-height: 1;
	transform: translateY(-1px);
}

@media (min-width: 768px) {
	.xm-service__mosaic {
		grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1fr);
		grid-template-rows: 1fr 1fr;
		grid-auto-rows: unset;
		height: var(--xm-service-h, 660px);
	}

	.xm-service__card {
		height: auto;
		min-height: 0;
		align-self: stretch;
	}

	.xm-service__card.is-feature {
		grid-column: 1;
		grid-row: 1 / span 2;
	}

	.xm-service__ratio {
		display: none;
	}

	.xm-service__media,
	.xm-service__card.is-feature .xm-service__media {
		position: absolute;
		inset: 0;
		height: 100%;
	}
}

/* After sales */
.xm-after {
	--xm-after-zoom: 1.08;
	--xm-after-zoom-ms: .45s;
	padding: 96px 0 88px;
	background: #fff;
}

.xm-after__head {
	margin: 0 auto 56px;
	text-align: center;
}

.xm-after__title {
	margin: 0 0 12px;
	font-size: 36px;
	line-height: 1.25;
	font-weight: 600;
	color: #1a1a1a;
}

.xm-after__subtitle {
	margin: 0;
	font-size: 16px;
	line-height: 1.7;
	color: #666;
}

.xm-news__head {
	width: 100%;
	max-width: none;
	margin-bottom: 48px;
}

.xm-after__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 40px;
	margin-bottom: 48px;
}

.xm-after__media {
	overflow: hidden;
	height: 220px;
	margin-bottom: 20px;
	border-radius: 4px;
	background: #f2f2f2;
}

.xm-after__media img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: none;
	object-fit: cover;
	transform: scale(1);
	transition: transform var(--xm-after-zoom-ms) ease;
}

@media (hover: hover) {
	.xm-after__card:hover .xm-after__media img {
		transform: scale(var(--xm-after-zoom));
	}
}

.xm-after__card-title {
	margin: 0 0 10px;
	font-size: 22px;
	line-height: 1.35;
	font-weight: 600;
	color: #1a1a1a;
}

.xm-after__card-text {
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
	color: #666;
}

.xm-after__card-note {
	display: block;
	margin-top: 10px;
	color: #999;
	font-size: 12px;
}

.xm-after__cta {
	text-align: center;
}

.xm-after__btn {
	min-width: 240px;
	background: #fff;
	color: #1a1a1a;
	border-color: #1a1a1a;
}

.xm-after__btn:hover {
	background: #1a1a1a;
	color: #fff;
	border-color: #1a1a1a;
}

.xm-after__arrow {
	display: inline-block;
	margin-left: 8px;
	color: #2db84d;
	font-size: 1.15em;
	line-height: 1;
	transform: translateY(-1px);
}

.xm-news__cta {
	margin-top: 8px;
}

/* Models lineup */
.xm-models {
	--xm-models-img-h: 480px;
	--xm-models-foot-dir: row;
	--xm-models-foot-justify: space-between;
	--xm-models-foot-align: center;
	padding: 96px 0 88px;
	background: #fff;
}

.xm-models__head {
	margin: 0 0 36px;
	text-align: center;
}

.xm-models__title {
	margin: 0;
	font-size: 36px;
	line-height: 1.25;
	font-weight: 600;
	color: #1a1a1a;
}

.xm-models__tabs-wrap {
	margin-bottom: 40px;
	overflow: hidden;
}

.xm-models__tabs {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 40px;
	overflow-x: auto;
	padding: 0 8px 6px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.xm-models__tabs::-webkit-scrollbar {
	display: none;
}

.xm-models__tab {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	flex: 0 0 auto;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	color: #999;
	cursor: pointer;
	white-space: nowrap;
}

.xm-models__tab-name {
	font-size: 16px;
	line-height: 1.3;
	font-weight: 500;
}

.xm-models__tab.is-active {
	color: #111;
}

.xm-models__tab.is-active .xm-models__tab-name {
	font-weight: 600;
}

.xm-models__tab-note {
	margin-top: 2px;
	font-size: 11px;
	line-height: 1.2;
	color: #999;
	font-weight: 400;
}

.xm-models__stage {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 40px;
}

.xm-models__viewport {
	flex: 1 1 auto;
	overflow: hidden;
	cursor: grab;
	touch-action: pan-y;
	user-select: none;
}

.xm-models.is-dragging .xm-models__viewport {
	cursor: grabbing;
}

.xm-models__track {
	display: flex;
	will-change: transform;
}

.xm-models__slide {
	flex: 0 0 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.xm-models__slide img {
	display: block;
	width: auto !important;
	max-width: 100%;
	height: var(--xm-models-img-h) !important;
	object-fit: contain;
	pointer-events: none;
}

.xm-models__arrow {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	border: 0;
	background: none;
	color: #111;
	cursor: pointer;
}

.xm-models__arrow svg {
	width: 100%;
	height: 100%;
}

.xm-models__foot {
	--xm-models-btn-order: 1;
	--xm-models-specs-order: 2;
	box-sizing: border-box;
	display: flex;
	flex-direction: var(--xm-models-foot-dir);
	align-items: var(--xm-models-foot-align);
	justify-content: var(--xm-models-foot-justify);
	gap: 24px;
}

.xm-models__foot.is-image-width {
	max-width: 100%;
}

.xm-models__btn {
	order: var(--xm-models-btn-order);
	min-width: 160px;
	background: #fff;
	color: #1a1a1a;
	border-color: #1a1a1a;
}

.xm-models__btn:hover {
	background: #1a1a1a;
	color: #fff;
	border-color: #1a1a1a;
}

.xm-models__specs {
	--xm-models-spec-cols: 4;
	order: var(--xm-models-specs-order);
	display: grid;
	grid-template-columns: repeat(var(--xm-models-spec-cols), max-content);
	align-items: stretch;
	justify-content: flex-end;
}

.xm-models__spec {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0 24px;
	border-left: 1px solid #e5e5e5;
	text-align: center;
}

.xm-models__spec:first-child {
	border-left: none;
	padding-left: 0;
}

.xm-models__spec strong {
	font-size: 20px;
	line-height: 1.3;
	font-weight: 600;
	color: #1a1a1a;
}

.xm-models__spec span {
	margin-top: 6px;
	font-size: 13px;
	line-height: 1.3;
	color: #888;
}

/* Store */
.xm-store {
	position: relative;
	min-height: 560px;
	display: flex;
	align-items: center;
	background: #111 center / cover no-repeat;
	color: #fff;
}

.xm-store__mask {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .38);
	pointer-events: none;
}

.xm-store__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
	box-sizing: border-box;
}

.xm-store__title {
	margin: 0 0 12px;
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 600;
	color: #fff;
}

.xm-store__desc {
	margin: 0 0 28px;
	font-size: 16px;
	color: rgba(255, 255, 255, .88);
}

.xm-store__cta {
	display: block;
}

.xm-store__btn {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, .85);
}

/* Partners */
.xm-partners {
	--xm-partners-gap: 72px;
	--xm-partners-duration: 24s;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: #eef1f5;
	min-height: 96px;
	padding: 36px 0;
}

.xm-partners__viewport {
	width: 100%;
	overflow: hidden;
}

.xm-partners__track {
	display: flex;
	width: max-content;
	align-items: center;
	will-change: transform;
}

.xm-partners[data-loop="yes"] .xm-partners__track {
	animation: xm-partners-scroll var(--xm-partners-duration) linear infinite;
}

.xm-partners.is-paused .xm-partners__track,
.xm-partners[data-autoplay=""] .xm-partners__track {
	animation-play-state: paused;
}

.xm-partners__group {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	gap: var(--xm-partners-gap);
	padding-right: var(--xm-partners-gap);
}

.xm-partners__item {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	line-height: 0;
	text-decoration: none !important;
}

.xm-partners__logo {
	display: block;
	height: 36px;
	width: auto;
	max-width: 160px;
	object-fit: contain;
	filter: grayscale(100%);
	transition: opacity .25s ease, filter .25s ease;
}

@keyframes xm-partners-scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.xm-partners .xm-partners__track {
		animation: none !important;
	}
}

/* Brand */
.xm-brand {
	--xm-brand-start: 68;
	position: relative;
	color: #fff;
	background: #000;
	height: 100vh;
	min-height: 100vh;
}

.xm-brand__pin {
	height: 100vh;
	min-height: 100vh;
}

.xm-brand__sticky {
	position: sticky;
	top: 0;
	width: 100%;
	height: 100vh;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #000;
}

.xm-brand__frame {
	position: relative;
	width: calc(var(--xm-brand-start) * 1%);
	height: calc(var(--xm-brand-start) * 1%);
	overflow: hidden;
	background: #111;
}

.xm-brand.is-full .xm-brand__frame {
	width: 100% !important;
	height: 100% !important;
}

.xm-brand__loop,
.xm-brand__poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.xm-brand__poster {
	background: #111 center / cover no-repeat;
}

.xm-brand__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(0, 0, 0, .22);
	pointer-events: none;
}

.xm-brand__content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	padding: 80px 24px 0;
}

.xm-brand__title {
	margin: 0 0 12px;
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 600;
	color: #fff;
}

.xm-brand__desc {
	margin: 0 0 28px;
	max-width: 720px;
	font-size: 16px;
	color: rgba(255, 255, 255, .88);
}

.xm-brand__play {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	transform: translate(-50%, -50%);
	cursor: pointer;
}

.xm-brand__play svg,
.xm-brand__play img {
	display: block;
	width: 56px;
	height: 56px;
	object-fit: contain;
}

.xm-brand__popup {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .4s ease, visibility .4s ease;
}

.xm-brand__popup.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.xm-brand__popup-box {
	position: relative;
	width: 100%;
	height: 100%;
}

.xm-brand__popup-video {
	display: block;
	width: 100%;
	height: 100%;
	outline: none;
	background: #000;
	object-fit: contain;
}

.xm-brand__popup-close {
	position: absolute;
	top: 16px;
	left: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 2px solid rgba(255, 255, 255, .85);
	border-radius: 50%;
	background: rgba(0, 0, 0, .25);
	color: #fff;
	font-size: 28px;
	line-height: 1;
	transform: translateX(-50%);
	cursor: pointer;
}

body.xm-brand-popup-open {
	overflow: hidden;
}

/* News */
.xm-news {
	--xm-news-cols: 3;
	--xm-news-zoom: 1.04;
	padding: 96px 0;
	background: #fff;
}

.xm-news__title {
	margin: 0 0 12px;
	font-size: 36px;
	line-height: 1.25;
	font-weight: 600;
	color: #1a1a1a;
}

.xm-news__subtitle {
	margin: 0;
	font-size: 16px;
	line-height: 1.7;
	color: #666;
}

.xm-news__grid {
	display: grid;
	grid-template-columns: repeat(var(--xm-news-cols, 3), minmax(0, 1fr));
	gap: 28px;
	margin-bottom: 40px;
}

.xm-news__card {
	display: block;
	text-decoration: none;
	color: inherit;
}

.xm-news__media {
	position: relative;
	overflow: hidden;
	height: 210px;
	background: #ececec;
}

.xm-news__thumb {
	width: 100%;
	height: 100%;
	background: #ececec center / cover no-repeat;
	transform: scale(1);
	transition: transform .5s ease;
}

@media (hover: hover) {
	.xm-news__card:hover .xm-news__thumb {
		transform: scale(var(--xm-news-zoom, 1.04));
	}
}

.xm-news__body {
	padding: 18px 0 8px;
	overflow: hidden;
}

.xm-news__date {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 54px;
	padding: 10px 8px 8px;
	background: #d12e2f;
	color: #fff;
	text-align: center;
	line-height: 1;
	border-radius: 0;
}

.xm-news__day,
.xm-news__month {
	color: inherit;
}

.xm-news__day {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.xm-news__month {
	margin-top: 4px;
	font-size: 12px;
	font-weight: 400;
}

.xm-news__card-title {
	margin: 0;
	font-size: 18px;
	line-height: 1.5;
	font-weight: 600;
	color: #1a1a1a;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color .2s ease;
}

.xm-news__card:hover .xm-news__card-title {
	color: #d12e2f;
}

/* App */
.xm-app {
	padding: 88px 0 0;
	background: #f3f3f3;
	color: #1a1a1a;
}

.xm-app__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	gap: 48px;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.xm-app__copy {
	grid-column: 1;
	grid-row: 1;
	min-width: 0;
}

.xm-app__phone {
	grid-column: 2;
	grid-row: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.xm-app__codes {
	grid-column: 3;
	grid-row: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
}

.xm-app__mobile-cta {
	display: none;
}

.xm-app__meta--mobile {
	display: none;
}

.xm-app__title {
	margin: 0 0 16px;
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 600;
	line-height: 1.2;
	color: #1a1a1a;
}

.xm-app__tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.xm-app__tag,
.xm-app__tag-link {
	font-size: 15px;
	line-height: 1.5;
	color: #666;
	text-decoration: none !important;
}

.xm-app__tag-sep {
	font-size: 15px;
	line-height: 1;
	color: #ccc;
	user-select: none;
}

.xm-app__mobile-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	padding: 0 24px;
	border: 1px solid transparent;
	border-radius: 4px;
	background: #fff;
	color: #1a1a1a;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none !important;
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 4px 20px 0px !important;
	transition: background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.xm-app__phone img {
	display: block;
	width: 100%;
	max-width: 320px;
	height: auto;
}

.xm-app__qr-list {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: inherit;
	gap: 24px;
}

.xm-app__qr {
	margin: 0;
	flex: 0 0 auto;
	text-align: center;
}

.xm-app__qr img {
	display: block;
	width: 120px;
	height: 120px;
	object-fit: contain;
	background: #fff;
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 4px 20px 0px;
}

.xm-app__qr figcaption {
	margin: 10px 0 0;
	font-size: 13px;
	line-height: 1.4;
	color: #666;
}

.xm-app__meta {
	margin-top: 16px;
}

.xm-app__version {
	margin: 0 0 8px;
	font-size: 12px;
	line-height: 1.6;
	color: #999;
}

.xm-app__links {
	margin: 0;
	font-size: 12px;
	line-height: 1.6;
	color: #666;
}

.xm-app__links a {
	color: #666;
	text-decoration: none !important;
	transition: color .2s ease;
}

.xm-app__links span {
	margin: 0 8px;
	color: #ccc;
}

/* Stats counter */
.xm-stats {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 560px;
	padding: 88px 0 72px;
	background: #140404 center / cover no-repeat;
	color: #fff;
	overflow: hidden;
	text-align: center;
}

.xm-stats__inner {
	position: relative;
	z-index: 1;
	width: min(1200px, calc(100% - 30px));
}

.xm-stats__head {
	max-width: 820px;
	margin: 0 auto 56px;
}

.xm-stats__title {
	margin: 0 0 16px;
	font-size: 36px;
	line-height: 1.3;
	font-weight: 600;
	color: #fff;
}

.xm-stats__subtitle {
	margin: 0 auto;
	max-width: 720px;
	font-size: 15px;
	line-height: 1.8;
	color: rgba(255, 255, 255, .82);
}

.xm-stats__links {
	display: flex;
	justify-content: center;
	gap: 48px;
	margin-top: 28px;
}

.xm-stats__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 15px;
	color: #fff;
	text-decoration: none;
	transition: color .2s ease, opacity .2s ease;
}

.xm-stats__chev {
	font-size: inherit;
	line-height: inherit;
	transform: translateY(-1px);
}

.xm-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 32px 24px;
	max-width: 1100px;
	margin: 0 auto;
}

.xm-stats__item {
	text-align: center;
}

.xm-stats__number {
	display: flex;
	align-items: baseline;
	justify-content: center;
	white-space: nowrap;
}

.xm-stats__value {
	font-size: 56px;
	line-height: 1.1;
	font-weight: 700;
	color: #fff;
	font-variant-numeric: tabular-nums;
}

.xm-stats__suffix {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	line-height: 1.1;
}

.xm-stats__label {
	margin-top: 10px;
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .78);
}

.xm-stats__note {
	margin: 48px 0 0;
	font-size: 12px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .38);
}

@media (max-width: 767px) {
	.xm-stats {
		padding: 64px 0 48px;
		min-height: 0;
	}

	.xm-stats__head {
		margin-bottom: 40px;
	}

	.xm-stats__title {
		font-size: 26px;
	}

	.xm-stats__subtitle {
		font-size: 13px;
	}

	.xm-stats__links {
		gap: 28px;
		margin-top: 20px;
	}

	.xm-stats__grid {
		gap: 28px 12px;
	}

	.xm-stats__value {
		font-size: 32px;
	}

	.xm-stats__suffix {
		font-size: 22px;
	}

	.xm-stats__label {
		font-size: 13px;
	}

	.xm-stats__note {
		margin-top: 32px;
	}
}

/* Elementor spacing reset for these widgets */
.elementor-widget-erdunt_hero,
.elementor-widget-erdunt_home_hero,
.elementor-widget-erdunt_service_scene,
.elementor-widget-erdunt_home_service_scene,
.elementor-widget-erdunt_after_sales,
.elementor-widget-erdunt_home_after_sales,
.elementor-widget-erdunt_brand_banner,
.elementor-widget-erdunt_home_brand_banner,
.elementor-widget-erdunt_stats,
.elementor-widget-erdunt_home_stats,
.elementor-widget-erdunt_news_center,
.elementor-widget-erdunt_home_news_center,
.elementor-widget-erdunt_store_banner,
.elementor-widget-erdunt_home_store_banner,
.elementor-widget-erdunt_partners,
.elementor-widget-erdunt_home_partners,
.elementor-widget-erdunt_app_download,
.elementor-widget-erdunt_home_app_download {
	margin: 0 !important;
}

.elementor-widget-erdunt_hero .elementor-widget-container,
.elementor-widget-erdunt_home_hero .elementor-widget-container,
.elementor-widget-erdunt_service_scene .elementor-widget-container,
.elementor-widget-erdunt_home_service_scene .elementor-widget-container,
.elementor-widget-erdunt_after_sales .elementor-widget-container,
.elementor-widget-erdunt_home_after_sales .elementor-widget-container,
.elementor-widget-erdunt_brand_banner .elementor-widget-container,
.elementor-widget-erdunt_home_brand_banner .elementor-widget-container,
.elementor-widget-erdunt_stats .elementor-widget-container,
.elementor-widget-erdunt_home_stats .elementor-widget-container,
.elementor-widget-erdunt_news_center .elementor-widget-container,
.elementor-widget-erdunt_home_news_center .elementor-widget-container,
.elementor-widget-erdunt_store_banner .elementor-widget-container,
.elementor-widget-erdunt_home_store_banner .elementor-widget-container,
.elementor-widget-erdunt_partners .elementor-widget-container,
.elementor-widget-erdunt_home_partners .elementor-widget-container,
.elementor-widget-erdunt_app_download .elementor-widget-container,
.elementor-widget-erdunt_home_app_download .elementor-widget-container {
	padding: 0 !important;
}

.elementor-widget-erdunt_hero,
.elementor-widget-erdunt_home_hero,
.elementor-widget-erdunt_hero > .elementor-widget-container,
.elementor-widget-erdunt_home_hero > .elementor-widget-container {
	height: auto;
	overflow: visible;
}

/* Elementor container is flex; nested wrapping flex/grid was collapsing this widget's used height */
.e-con:has(> .elementor-widget-erdunt_service_scene),
.e-con:has(> .elementor-widget-erdunt_home_service_scene),
.e-con:has(> .elementor-widget-erdunt_after_sales),
.e-con:has(> .elementor-widget-erdunt_home_after_sales),
.e-con:has(> .elementor-widget-erdunt_stats),
.e-con:has(> .elementor-widget-erdunt_home_stats),
.e-con:has(> .elementor-widget-erdunt_brand_banner),
.e-con:has(> .elementor-widget-erdunt_home_brand_banner),
.e-con:has(> .elementor-widget-erdunt_partners),
.e-con:has(> .elementor-widget-erdunt_home_partners) {
	height: auto !important;
	min-height: min-content !important;
	align-items: flex-start !important;
	overflow: visible !important;
}

.elementor-widget-erdunt_service_scene,
.elementor-widget-erdunt_home_service_scene,
.elementor-widget-erdunt_after_sales,
.elementor-widget-erdunt_home_after_sales,
.elementor-widget-erdunt_service_scene > .elementor-widget-container,
.elementor-widget-erdunt_home_service_scene > .elementor-widget-container,
.elementor-widget-erdunt_after_sales > .elementor-widget-container,
.elementor-widget-erdunt_home_after_sales > .elementor-widget-container,
.elementor-widget-erdunt_brand_banner > .elementor-widget-container,
.elementor-widget-erdunt_home_brand_banner > .elementor-widget-container {
	height: auto !important;
	min-height: min-content !important;
	max-height: none !important;
	width: 100% !important;
	flex: 0 0 auto !important;
	align-self: flex-start !important;
	overflow: visible !important;
}

.elementor-widget-erdunt_hero .xm-hero,
.elementor-widget-erdunt_home_hero .xm-hero {
	height: 100vh;
	min-height: 100vh;
}

.elementor-widget-erdunt_brand_banner,
.elementor-widget-erdunt_home_brand_banner {
	height: auto !important;
	overflow: visible !important;
}

.elementor-widget-erdunt_hero,
.elementor-widget-erdunt_home_hero,
.elementor-widget-erdunt_brand_banner,
.elementor-widget-erdunt_home_brand_banner,
.elementor-widget-erdunt_stats,
.elementor-widget-erdunt_home_stats,
.elementor-widget-erdunt_store_banner,
.elementor-widget-erdunt_home_store_banner,
.elementor-widget-erdunt_partners,
.elementor-widget-erdunt_home_partners,
.elementor-widget-erdunt_app_download,
.elementor-widget-erdunt_home_app_download {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
}

@media (max-width: 1024px) {
	.xm-app__grid {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.xm-app__copy {
		order: 1;
		width: 100%;
	}

	.xm-app__codes {
		order: 2;
		width: 100%;
		align-items: center;
	}

	.xm-app__phone {
		order: 3;
		width: 100%;
	}

	.xm-app__mobile-cta {
		order: 2;
	}

	.xm-app__tags,
	.xm-app__qr-list {
		justify-content: center;
	}

	.xm-app__phone img {
		margin: 0 auto;
	}
}

@media (max-width: 767px) {
	.xm-app {
		padding-top: 56px;
		padding-bottom: 0;
	}

	.xm-app__codes {
		display: none;
	}

	.xm-app__meta--mobile {
		display: block;
		width: 100%;
		margin-top: 16px;
	}

	.xm-app__meta--mobile .xm-app__version,
	.xm-app__meta--mobile .xm-app__links {
		text-align: center;
	}

	.xm-app__mobile-cta {
		display: block;
		width: 100%;
		max-width: 360px;
		padding: 0 24px;
		box-sizing: border-box;
	}

	.xm-app__phone img {
		max-width: min(100%, 320px);
	}
}

@media (max-width: 767px) {
	.xm-hero__content {
		--xm-hero-top-gap: 20%;
	}

	.xm-hero {
		min-height: 560px;
	}

	.xm-hero__title {
		font-size: 32px;
	}

	.xm-hero__dots {
		bottom: 24px;
	}

	.xm-models__title {
		font-size: 28px;
	}

	.xm-models {
		--xm-models-img-h: 320px;
	}

	.xm-models__tab-name {
		font-size: 14px;
	}

	.xm-models__specs {
		--xm-models-spec-cols: 2;
		width: min(100%, 420px);
		margin-left: auto;
		margin-right: auto;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		justify-content: stretch;
		column-gap: 8px;
		row-gap: 10px;
	}

	.xm-models__spec,
	.xm-models__spec:first-child {
		border-left: none;
		padding: 4px 8px;
	}

	.xm-models__spec strong {
		font-size: 18px;
		font-weight: 400;
	}

	.xm-service__title,
	.xm-after__title {
		font-size: 28px;
	}

	.elementor-element .xm-service__mosaic,
	.xm-service .xm-service__mosaic {
		display: grid !important;
		grid-template-columns: 1fr 1fr !important;
		grid-template-rows: none !important;
		grid-auto-rows: max-content !important;
		height: auto !important;
		min-height: 0 !important;
		max-height: none !important;
	}

	.xm-service .xm-service__card {
		width: auto !important;
		height: max-content !important;
		align-self: start !important;
		grid-column: auto !important;
		grid-row: auto !important;
	}

	.xm-service .xm-service__card.is-feature {
		grid-column: 1 / -1 !important;
	}

	.xm-service .xm-service__ratio {
		display: block !important;
		width: 100% !important;
		height: auto !important;
		visibility: hidden;
	}

	.xm-service .xm-service__media,
	.xm-service .xm-service__card.is-feature .xm-service__media {
		position: relative !important;
		inset: auto !important;
		width: 100%;
		height: auto !important;
	}

	.xm-service__caption {
		left: 14px;
		bottom: 12px;
		font-size: 14px;
	}

	.xm-service__card.is-feature .xm-service__caption {
		left: 16px;
		bottom: 14px;
		font-size: 18px;
	}

	.xm-section-title,
	.xm-news__title {
		font-size: 28px;
	}

	.xm-service,
	.xm-after,
	.xm-news,
	.xm-app,
	.xm-models {
		padding: 64px 0;
	}

	.xm-after__grid {
		grid-template-columns: 1fr;
	}

	.xm-after__media {
		border-radius: 12px;
	}

	.xm-store {
		min-height: 420px;
	}

	.xm-brand__pin {
		height: 100vh;
	}

	.xm-brand__frame {
		width: 100% !important;
		height: 100% !important;
	}

	.xm-brand__title {
		font-size: 28px;
	}
}
