/* UTP homepage + light redesign (local preview) */

:root {
	--esk-radius-sm: 0.375rem;
	--esk-radius-md: 0.625rem;
	--esk-accent: #3a8bee;
	--esk-accent-orange: #ff9800;
}

/* --- softer corners --- */
.btn,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
textarea,
select,
.checkbox,
.header-login-link,
.service .screen-bg,
.types li,
.service-highlight {
	border-radius: var(--esk-radius-sm);
}

.btn,
.service-highlight,
.types li {
	border-radius: var(--esk-radius-md);
}

.contact-us .grid {
	border-radius: var(--esk-radius-md);
}

/* --- hero MVP widget (sticky-bar accent) --- */
.top-title h1 {
	min-height: 0;
	margin-bottom: 1rem;
}

.hero-highlight {
	display: inline-flex;
	max-width: 30rem;
	margin: 0 0 1.125rem 0;
	padding: 1.125rem 1.375rem 1.125rem 1.25rem;
	background: linear-gradient(135deg, #eef6ff 0%, #f8fbff 100%);
}

.hero-highlight .service-highlight__icon {
	color: var(--esk-accent);
}

.hero-highlight__row {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
}

.hero-highlight__title {
	font-size: 1.25rem;
	line-height: 1.25;
	font-weight: 500;
	color: #222;
}

.hero-highlight__sub {
	margin-top: 0.35rem;
	font-size: 1.0625rem;
	line-height: 1.3;
	font-weight: 500;
	color: var(--esk-accent);
}

.hero-utp {
	margin: 0 0 0.75rem 0;
	max-width: 36rem;
	font-size: 1.375rem;
	line-height: 1.35;
	color: #222;
}

.hero-utp strong {
	font-weight: 500;
	color: #111;
}

.hero-utp__note {
	margin: 0;
	max-width: 36rem;
	font-size: 1.0625rem;
	line-height: 1.4;
	color: #626262;
}

/* --- service highlight cards --- */
.service-highlight {
	background: linear-gradient(135deg, #eef6ff 0%, #f8fbff 100%);
	border: 1px solid #c5ddf7;
	box-shadow: 0 0.35rem 1rem rgba(58, 139, 238, 0.12);
}

.service-highlight.hero-highlight,
.service-highlight--card {
	border: 1px solid #c5ddf7;
	border-left: 0.375rem solid var(--esk-accent-orange);
}

.service-highlight--card {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 1.25rem;
	padding: 1.125rem 1.25rem;
}

.service-highlight__body {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
	flex: 1 1 auto;
	min-width: 0;
}

.service-highlight__icon {
	flex: 0 0 auto;
	width: 2.75rem;
	height: 2.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #3a8bee;
}

.service-highlight__icon svg {
	width: 2.25rem;
	height: 2.25rem;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.service-highlight__icon svg [fill="currentColor"] {
	fill: currentColor;
	stroke: none;
}

.service-highlight__text {
	font-size: 1.0625rem;
	line-height: 1.35;
	font-weight: 500;
	color: #222;
	text-align: left;
}

.service-highlight__action {
	flex: 0 0 auto;
	margin: 0;
}

.service-highlight__action .btn {
	display: inline-block;
	width: auto;
	min-width: 12.9375rem;
	white-space: nowrap;
}

/* hor services: bottom-align widget with screenshot */
.service.hor {
	display: grid;
	grid-template-columns: 50% calc(50% - 4.875rem);
	column-gap: 4.875rem;
	align-items: end;
	justify-content: space-between;
}

.service.hor .text {
	width: auto;
	grid-column: 1;
	display: flex;
	flex-direction: column;
	align-self: end;
}

.service.hor .text-grid {
	display: flex;
	flex-direction: column;
	flex: 0 1 auto;
}

.service.hor .text-main {
	flex: 0 1 auto;
}

.service.hor .text-second {
	flex: 0 0 auto;
	margin: 1.25rem 0 0 0;
	padding: 0;
	align-self: stretch;
}

.service.hor .text-second .service-highlight--card {
	width: 100%;
	max-width: none;
	margin: 0 !important;
}

.service.vert .text-second .service-highlight--card {
	width: 100%;
	max-width: none;
	margin: 0 !important;
}

.service.vert .text-second {
	align-self: center;
}

.service.hor .screens {
	grid-column: 2;
	width: auto;
	margin: 0;
	align-self: end;
}

.service.hor .screens > .screen {
	padding: 0;
	margin: 0;
}

@media (max-width: 991px) {
	.hero-utp {
		font-size: 1.125rem;
	}

	.hero-highlight {
		max-width: none;
		width: 100%;
	}

	.service.hor {
		display: block;
	}

	.service.hor .text,
	.service.hor .screens {
		width: 100%;
	}

	.service.hor .text-second {
		margin-top: 1rem;
	}

	.service-highlight--card {
		flex-direction: column;
		align-items: stretch;
	}

	.service-highlight__action .btn {
		width: 100%;
		min-width: 0;
	}
}
