.oes-solutions {
	--oes-bg: #0b1114;
	--oes-accent: #61c8ee;
	--oes-title: #fff;
	--oes-description: rgba(255, 255, 255, 0.58);
	--oes-note: rgba(255, 255, 255, 0.55);
	--oes-line: rgba(255, 255, 255, 0.16);
	--oes-overlay-start: rgba(11, 17, 20, 0.92);
	--oes-overlay-end: rgba(11, 17, 20, 0.55);
	--oes-row-hover: rgba(255, 255, 255, 0.035);
	--oes-eyebrow: #61c8ee;
	--oes-item-number: rgba(97, 200, 238, 0.85);
	--oes-range-number: rgba(255, 255, 255, 0.6);
	--oes-arrow-hover-text: #071217;
	--oes-button-bg: #61c8ee;
	--oes-button-text: #071217;
	--oes-button-hover-bg: #7ad4f4;
	--oes-button-hover-text: #071217;
	--oes-pad: clamp(22px, 5vw, 82px);
	--oes-ease: cubic-bezier(0.22, 1, 0.36, 1);
	position: relative;
	overflow: hidden;
	width: 100%;
	padding: clamp(70px, 9vw, 120px) 0;
	background: var(--oes-bg);
	color: var(--oes-title);
	font-family: "General Sans", Arial, sans-serif;
	isolation: isolate;
}

.oes-solutions,
.oes-solutions * {
	box-sizing: border-box;
}

.oes-solutions__media,
.oes-solutions__bg {
	position: absolute;
	inset: 0;
}

.oes-solutions__media {
	z-index: 0;
	pointer-events: none;
}

.oes-solutions__bg {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0;
	filter: grayscale(0.4) brightness(0.42) contrast(1.05);
	transform: scale(1.06);
	transition: opacity 0.8s var(--oes-ease), transform 6s var(--oes-ease);
	will-change: opacity, transform;
}

.oes-solutions__bg.is-active {
	opacity: 1;
	transform: scale(1);
}

.oes-solutions::after {
	content: "";
	position: absolute;
	z-index: 1;
	inset: 0;
	background: linear-gradient(90deg, var(--oes-overlay-start), var(--oes-overlay-end));
	pointer-events: none;
}

.oes-solutions__head,
.oes-solutions__list,
.oes-solutions__cta {
	position: relative;
	z-index: 2;
}

.oes-solutions__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	padding: 0 var(--oes-pad) clamp(30px, 5vw, 56px);
	flex-wrap: wrap;
}

.oes-solutions__headline {
	min-width: 0;
}

.oes-solutions__eyebrow,
.oes-solutions__range,
.oes-solutions__index {
	font-family: "Clash Display", "General Sans", Arial, sans-serif;
	font-size: clamp(0.75rem, 1.1vw, 0.95rem);
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.oes-solutions__eyebrow {
	color: var(--oes-eyebrow);
}

.oes-solutions__index {
	color: var(--oes-item-number);
}

.oes-solutions__range {
	color: var(--oes-range-number);
}

.oes-solutions__heading {
	margin: 14px 0 0;
	padding: 0;
	color: var(--oes-title);
	font-family: "Clash Display", "General Sans", Arial, sans-serif;
	font-size: clamp(1.8rem, 4.4vw, 3.2rem);
	font-weight: 600;
	letter-spacing: -0.025em;
	line-height: 1.08;
}

.oes-solutions__row {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	column-gap: clamp(18px, 4vw, 54px);
	width: 100%;
	padding: clamp(26px, 3.2vw, 40px) var(--oes-pad);
	border-top: 1px solid var(--oes-line);
	color: inherit;
	text-decoration: none;
	transition: background-color 0.4s ease;
	cursor: pointer;
}

.oes-solutions__row:last-child {
	border-bottom: 1px solid var(--oes-line);
}

.oes-solutions__row:focus-visible {
	outline: 2px solid var(--oes-accent);
	outline-offset: -2px;
}

.oes-solutions__index {
	align-self: start;
	padding-top: 0.55em;
}

.oes-solutions__body {
	display: block;
	min-width: 0;
	transition: transform 0.45s var(--oes-ease);
}

.oes-solutions__name {
	display: block;
	color: var(--oes-title);
	font-family: "Clash Display", "General Sans", Arial, sans-serif;
	font-size: clamp(1.7rem, 5vw, 3.9rem);
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 0.98;
	text-transform: uppercase;
	transition: color 0.4s ease;
}

.oes-solutions__description {
	display: block;
	max-width: 56ch;
	margin-top: 12px;
	color: var(--oes-description);
	font-size: clamp(0.95rem, 1.15vw, 1.05rem);
	font-weight: 400;
	line-height: 1.55;
	transition: color 0.4s ease;
}

.oes-solutions__arrow {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border: 1px solid var(--oes-line);
	border-radius: 50%;
	color: var(--oes-title);
	transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease, transform 0.4s var(--oes-ease);
}

.oes-solutions__arrow svg {
	display: block;
	width: 22px;
	height: 22px;
	transition: transform 0.4s var(--oes-ease);
}

.oes-solutions__cta {
	display: flex;
	align-items: center;
	gap: 26px;
	padding: clamp(38px, 5vw, 60px) var(--oes-pad) 0;
	flex-wrap: wrap;
}

.oes-solutions__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 24px;
	border: 1px solid transparent;
	border-radius: 50px;
	background: var(--oes-button-bg);
	color: var(--oes-button-text);
	font-size: 0.95rem;
	font-weight: 650;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease, transform 0.35s var(--oes-ease);
}

.oes-solutions__button.elementor-button-info {
	--oes-button-bg: #5bc0de;
	--oes-button-text: #fff;
	--oes-button-hover-bg: #31b0d5;
	--oes-button-hover-text: #fff;
}

.oes-solutions__button.elementor-button-success {
	--oes-button-bg: #5cb85c;
	--oes-button-text: #fff;
	--oes-button-hover-bg: #449d44;
	--oes-button-hover-text: #fff;
}

.oes-solutions__button.elementor-button-warning {
	--oes-button-bg: #f0ad4e;
	--oes-button-text: #17120a;
	--oes-button-hover-bg: #ec971f;
	--oes-button-hover-text: #17120a;
}

.oes-solutions__button.elementor-button-danger {
	--oes-button-bg: #d9534f;
	--oes-button-text: #fff;
	--oes-button-hover-bg: #c9302c;
	--oes-button-hover-text: #fff;
}

.oes-solutions__button:hover,
.oes-solutions__button:focus {
	border-color: var(--oes-button-hover-bg);
	background: var(--oes-button-hover-bg);
	color: var(--oes-button-hover-text);
}

.oes-solutions__button:focus-visible {
	outline: 2px solid var(--oes-title);
	outline-offset: 3px;
}

.oes-solutions__button .elementor-button-content-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
}

.oes-solutions__button .elementor-button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1em;
	line-height: 1;
}

.oes-solutions__button .elementor-button-icon svg {
	display: block;
	width: 1em;
	height: 1em;
}

.oes-solutions__button .elementor-align-icon-left {
	margin-right: 12px;
}

.oes-solutions__button .elementor-align-icon-right {
	margin-left: 12px;
}

.oes-solutions__note {
	color: var(--oes-note);
	font-size: 0.96rem;
	line-height: 1.5;
}

@media (hover: hover) {
	.oes-solutions__row:hover,
	.oes-solutions__row:focus {
		background-color: var(--oes-row-hover);
	}

	.oes-solutions__row:hover .oes-solutions__body,
	.oes-solutions__row:focus .oes-solutions__body {
		transform: translateX(16px);
	}

	.oes-solutions__row:hover .oes-solutions__name,
	.oes-solutions__row:focus .oes-solutions__name {
		color: var(--oes-accent);
	}

	.oes-solutions__row:hover .oes-solutions__description,
	.oes-solutions__row:focus .oes-solutions__description {
		color: rgba(255, 255, 255, 0.82);
	}

	.oes-solutions__row:hover .oes-solutions__arrow,
	.oes-solutions__row:focus .oes-solutions__arrow {
		border-color: var(--oes-accent);
		background: var(--oes-accent);
		color: var(--oes-arrow-hover-text);
		transform: rotate(-2deg);
	}

	.oes-solutions__row:hover .oes-solutions__arrow svg,
	.oes-solutions__row:focus .oes-solutions__arrow svg {
		transform: translate(3px, -3px);
	}
}

@media (max-width: 767px) {
	.oes-solutions {
		--oes-pad: 22px;
		padding: 70px 0;
	}

	.oes-solutions__head {
		align-items: flex-start;
		padding-bottom: 32px;
	}

	.oes-solutions__range {
		width: 100%;
	}

	.oes-solutions__row {
		grid-template-columns: 28px minmax(0, 1fr) 46px;
		column-gap: 12px;
		padding-top: 25px;
		padding-bottom: 25px;
	}

	.oes-solutions__index {
		padding-top: 0.3em;
		font-size: 0.72rem;
	}

	.oes-solutions__name {
		font-size: clamp(1.65rem, 8.4vw, 2.65rem);
		line-height: 1.02;
	}

	.oes-solutions__description {
		margin-top: 10px;
		font-size: 0.93rem;
	}

	.oes-solutions__arrow {
		width: 46px;
		height: 46px;
	}

	.oes-solutions__arrow svg {
		width: 19px;
		height: 19px;
	}

	.oes-solutions__cta {
		align-items: flex-start;
		gap: 18px;
		padding-top: 38px;
	}
}

@media (max-width: 479px) {
	.oes-solutions__button {
		width: 100%;
	}
}

@media (hover: none) {
	.oes-solutions__bg:first-child {
		opacity: 1;
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.oes-solutions__bg,
	.oes-solutions__body,
	.oes-solutions__arrow,
	.oes-solutions__arrow svg,
	.oes-solutions__button,
	.oes-solutions__button-arrow {
		transition-duration: 0.01ms !important;
	}

	.oes-solutions__bg {
		transform: none;
	}
}
