.sech-hero,
.sech-section {
	--sech-dark: #070e1f;
	--sech-accent: #268dcc;
	--sech-light: #ffffff;
	font-family: "Montserrat", Arial, sans-serif;
	position: relative;
}

.sech-hero *,
.sech-section * {
	box-sizing: border-box;
}

.sech-container {
	width: min(1300px, calc(100% - 40px));
	margin: 0 auto;
}

.sech-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 16px;
	color: var(--sech-accent);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.3;
	text-transform: uppercase;
}

.sech-eyebrow::before {
	content: "";
	width: 34px;
	height: 2px;
	background: currentColor;
}

.sech-eyebrow--dark {
	color: var(--sech-accent);
}

.sech-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 22px;
	border: 1px solid transparent;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.sech-button:hover,
.sech-button:focus {
	transform: translateY(-1px);
	text-decoration: none;
}

.sech-button--primary {
	background: var(--sech-accent);
	color: #ffffff;
	box-shadow: 0 16px 34px rgba(38, 141, 204, 0.24);
}

.sech-button--primary:hover,
.sech-button--primary:focus {
	background: #1f7fb9;
	color: #ffffff;
}

.sech-button--ghost {
	border-color: rgba(255, 255, 255, 0.26);
	background: rgba(255, 255, 255, 0.07);
	color: var(--sech-light);
}

.sech-button--ghost:hover,
.sech-button--ghost:focus {
	border-color: rgba(255, 255, 255, 0.46);
	background: rgba(255, 255, 255, 0.12);
	color: var(--sech-light);
}

.sech-hero {
	overflow: hidden;
	padding: 106px 0 38px;
	background: var(--sech-dark);
	color: var(--sech-light);
}

.sech-network {
	position: absolute;
	inset: 0;
	opacity: 0.45;
	pointer-events: none;
	background-image:
		radial-gradient(circle at 18px 22px, rgba(38, 141, 204, 0.8) 0 2px, transparent 2.5px),
		linear-gradient(28deg, transparent 0 31%, rgba(38, 141, 204, 0.3) 31.2% 31.6%, transparent 31.9% 100%),
		linear-gradient(142deg, transparent 0 44%, rgba(38, 141, 204, 0.22) 44.2% 44.5%, transparent 44.9% 100%),
		linear-gradient(86deg, transparent 0 58%, rgba(38, 141, 204, 0.18) 58.1% 58.4%, transparent 58.7% 100%);
	background-size: 94px 86px, 420px 260px, 380px 310px, 520px 240px;
	background-position: 0 0, 12% 10%, 100% 0, 35% 92%;
}

.sech-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
	align-items: center;
	gap: 62px;
	min-height: 560px;
}

.sech-hero__copy {
	max-width: 720px;
}

.sech-hero__title {
	margin: 0;
	color: var(--sech-light);
	font-size: 64px;
	font-weight: 900;
	line-height: 1.04;
}

.sech-hero__description {
	max-width: 670px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 21px;
	font-weight: 500;
	line-height: 1.65;
}

.sech-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.sech-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.sech-badge {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 10px 14px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.94);
	color: var(--sech-dark);
	font-size: 13px;
	font-weight: 800;
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.sech-hero__visual {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	min-height: 500px;
}

.sech-hero__visual img {
	display: block;
	width: min(100%, 430px);
	max-height: 580px;
	object-fit: contain;
	filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.42));
}

.sech-growth-card {
	width: min(100%, 430px);
	padding: 32px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.09);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(10px);
}

.sech-growth-card__kicker {
	display: block;
	margin-bottom: 12px;
	color: var(--sech-accent);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.sech-growth-card strong {
	display: block;
	color: #ffffff;
	font-size: 30px;
	line-height: 1.15;
}

.sech-growth-card__meter {
	overflow: hidden;
	height: 10px;
	margin: 26px 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.13);
}

.sech-growth-card__meter span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: var(--sech-accent);
}

.sech-growth-card ul {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sech-growth-card li {
	position: relative;
	padding-left: 24px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 15px;
	line-height: 1.5;
}

.sech-growth-card li::before {
	content: "";
	position: absolute;
	top: 8px;
	left: 0;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--sech-accent);
}

.sech-hero__stats {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	overflow: hidden;
	margin-top: 28px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.1);
}

.sech-stat {
	padding: 24px;
	background: rgba(7, 14, 31, 0.68);
}

.sech-stat strong {
	display: block;
	color: #ffffff;
	font-size: 34px;
	font-weight: 900;
	line-height: 1;
}

.sech-stat span {
	display: block;
	margin-top: 9px;
	color: rgba(255, 255, 255, 0.75);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
}

.sech-section {
	padding: 86px 0;
	background: #ffffff;
	color: var(--sech-dark);
}

.sech-section-head {
	max-width: 760px;
	margin-bottom: 34px;
}

.sech-section-head h2,
.sech-process h2,
.sech-slider-head h2,
.sech-cta h2 {
	margin: 0;
	color: inherit;
	font-size: 42px;
	font-weight: 900;
	line-height: 1.15;
}

.sech-section-head p,
.sech-process__intro > p,
.sech-slider-head p,
.sech-cta p {
	margin: 16px 0 0;
	color: rgba(7, 14, 31, 0.72);
	font-size: 18px;
	line-height: 1.7;
}

.sech-service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.sech-service-card {
	min-height: 250px;
	padding: 28px;
	border: 1px solid rgba(7, 14, 31, 0.1);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 16px 42px rgba(7, 14, 31, 0.07);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.sech-service-card:hover {
	transform: translateY(-3px);
	border-color: rgba(38, 141, 204, 0.36);
	box-shadow: 0 22px 54px rgba(7, 14, 31, 0.12);
}

.sech-service-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin-bottom: 22px;
	border-radius: 8px;
	background: rgba(38, 141, 204, 0.11);
	color: var(--sech-accent);
	font-size: 24px;
}

.sech-service-card__icon svg {
	width: 25px;
	height: 25px;
	fill: currentColor;
}

.sech-service-card h3 {
	margin: 0;
	color: var(--sech-dark);
	font-size: 22px;
	font-weight: 900;
	line-height: 1.25;
}

.sech-service-card p {
	margin: 14px 0 0;
	color: rgba(7, 14, 31, 0.68);
	font-size: 15px;
	line-height: 1.7;
}

.sech-process {
	overflow: hidden;
	background: var(--sech-dark);
	color: #ffffff;
}

.sech-process::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0.28;
	background-image:
		linear-gradient(36deg, transparent 0 36%, rgba(38, 141, 204, 0.28) 36.1% 36.4%, transparent 36.8%),
		linear-gradient(118deg, transparent 0 52%, rgba(38, 141, 204, 0.2) 52.1% 52.4%, transparent 52.8%);
	background-size: 520px 310px, 430px 280px;
}

.sech-process__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
	gap: 48px;
	align-items: start;
}

.sech-process__intro > p,
.sech-slider-head p {
	color: rgba(255, 255, 255, 0.76);
}

.sech-benefit-list {
	display: grid;
	gap: 12px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
}

.sech-benefit-list li {
	position: relative;
	padding: 14px 16px 14px 42px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.88);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.45;
}

.sech-benefit-list li::before {
	content: "";
	position: absolute;
	top: 20px;
	left: 18px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--sech-accent);
}

.sech-step-list {
	display: grid;
	gap: 14px;
}

.sech-step {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 20px;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.07);
}

.sech-step > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border: 1px solid rgba(38, 141, 204, 0.42);
	border-radius: 8px;
	color: var(--sech-accent);
	font-size: 21px;
	font-weight: 900;
}

.sech-step h3 {
	margin: 0;
	color: #ffffff;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.25;
}

.sech-step p {
	margin: 9px 0 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 15px;
	line-height: 1.65;
}

.sech-references {
	overflow: hidden;
	background: var(--sech-dark);
	color: #ffffff;
}

.sech-slider-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 30px;
}

.sech-slider-head > div:first-child {
	max-width: 760px;
}

.sech-slider-controls {
	display: flex;
	gap: 10px;
	flex: 0 0 auto;
}

.sech-slider-controls button,
.sech-slider-dots button {
	appearance: none;
	border: 0;
	cursor: pointer;
}

.sech-slider-controls button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	font-size: 22px;
	line-height: 1;
	transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.sech-slider-controls button:hover,
.sech-slider-controls button:focus {
	border-color: rgba(38, 141, 204, 0.64);
	background: var(--sech-accent);
	transform: translateY(-1px);
}

.sech-slider-controls button:disabled {
	cursor: not-allowed;
	opacity: 0.42;
	transform: none;
}

.sech-slider-viewport {
	overflow: hidden;
	width: 100%;
}

.sech-slider-track {
	display: flex;
	gap: 18px;
	will-change: transform;
	transition: transform 360ms ease;
}

.sech-reference-card {
	flex: 0 0 360px;
	min-height: 320px;
	padding: 26px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 8px;
	background: #ffffff;
	color: var(--sech-dark);
	box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.sech-reference-card__top {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 22px;
}

.sech-reference-card__top img,
.sech-reference-card__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	flex: 0 0 58px;
	border: 1px solid rgba(7, 14, 31, 0.08);
	border-radius: 8px;
	background: rgba(38, 141, 204, 0.1);
	color: var(--sech-accent);
	font-size: 24px;
	font-weight: 900;
	object-fit: contain;
}

.sech-reference-card h3 {
	margin: 0;
	color: var(--sech-dark);
	font-size: 20px;
	font-weight: 900;
	line-height: 1.2;
}

.sech-reference-card__top span {
	display: block;
	margin-top: 5px;
	color: rgba(7, 14, 31, 0.58);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
}

.sech-reference-card__quote {
	margin: 0;
	color: rgba(7, 14, 31, 0.72);
	font-size: 16px;
	line-height: 1.75;
}

.sech-reference-card > strong {
	display: inline-flex;
	margin-top: 22px;
	padding: 9px 12px;
	border-radius: 4px;
	background: rgba(38, 141, 204, 0.1);
	color: var(--sech-accent);
	font-size: 14px;
	font-weight: 900;
	line-height: 1.3;
}

.sech-slider-dots {
	display: flex;
	justify-content: center;
	gap: 9px;
	margin-top: 24px;
}

.sech-slider-dots button {
	width: 10px;
	height: 10px;
	padding: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.28);
	transition: width 180ms ease, background-color 180ms ease;
}

.sech-slider-dots button.is-active {
	width: 30px;
	border-radius: 999px;
	background: var(--sech-accent);
}

.sech-cta {
	background: #ffffff;
}

.sech-cta__box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 36px;
	border-radius: 8px;
	background: var(--sech-dark);
	color: #ffffff;
	box-shadow: 0 24px 60px rgba(7, 14, 31, 0.18);
}

.sech-cta__box > div {
	max-width: 760px;
}

.sech-cta p {
	color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 1024px) {
	.sech-hero {
		padding-top: 82px;
	}

	.sech-hero__inner,
	.sech-process__grid {
		grid-template-columns: 1fr;
	}

	.sech-hero__inner {
		min-height: 0;
		gap: 34px;
	}

	.sech-hero__title {
		font-size: 48px;
	}

	.sech-hero__visual {
		min-height: 0;
		justify-content: flex-start;
	}

	.sech-hero__visual img {
		width: min(100%, 360px);
	}

	.sech-service-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.sech-container {
		width: min(100% - 28px, 1300px);
	}

	.sech-hero {
		padding: 66px 0 28px;
	}

	.sech-hero__title {
		font-size: 35px;
		line-height: 1.1;
	}

	.sech-hero__description {
		font-size: 17px;
		line-height: 1.6;
	}

	.sech-hero__actions,
	.sech-badges {
		width: 100%;
	}

	.sech-button {
		width: 100%;
	}

	.sech-badge {
		flex: 1 1 140px;
		justify-content: center;
		text-align: center;
	}

	.sech-growth-card {
		padding: 24px;
	}

	.sech-growth-card strong {
		font-size: 24px;
	}

	.sech-hero__stats,
	.sech-service-grid {
		grid-template-columns: 1fr;
	}

	.sech-stat {
		padding: 20px;
	}

	.sech-section {
		padding: 62px 0;
	}

	.sech-section-head h2,
	.sech-process h2,
	.sech-slider-head h2,
	.sech-cta h2 {
		font-size: 30px;
	}

	.sech-section-head p,
	.sech-process__intro > p,
	.sech-slider-head p,
	.sech-cta p {
		font-size: 16px;
	}

	.sech-service-card {
		min-height: 0;
		padding: 24px;
	}

	.sech-step {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.sech-slider-head,
	.sech-cta__box {
		align-items: stretch;
		flex-direction: column;
	}

	.sech-slider-controls {
		justify-content: flex-start;
	}

	.sech-reference-card {
		min-height: 0;
		padding: 23px;
	}

	.sech-cta__box {
		padding: 26px;
	}
}

/* Hero showcase layout */
.sech-hero--showcase {
	isolation: isolate;
	min-height: 720px;
	padding: 38px 0 66px;
	background:
		linear-gradient(90deg, rgba(7, 14, 31, 0.98) 0%, rgba(4, 13, 29, 0.98) 48%, rgba(4, 20, 43, 0.98) 100%),
		var(--sech-dark);
}

.sech-hero--showcase::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		linear-gradient(115deg, transparent 0 55%, rgba(38, 141, 204, 0.14) 55.2% 55.4%, transparent 55.7% 100%),
		linear-gradient(31deg, transparent 0 62%, rgba(38, 141, 204, 0.12) 62.2% 62.5%, transparent 62.9% 100%),
		radial-gradient(circle at 88% 12%, rgba(38, 141, 204, 0.34), transparent 26%),
		radial-gradient(circle at 18% 86%, rgba(38, 141, 204, 0.16), transparent 22%);
}

.sech-hero--showcase .sech-network {
	z-index: 0;
	opacity: 0.52;
	background-image:
		radial-gradient(circle at 18px 22px, rgba(33, 165, 255, 0.92) 0 2px, transparent 2.6px),
		linear-gradient(31deg, transparent 0 34%, rgba(33, 165, 255, 0.28) 34.2% 34.6%, transparent 34.9% 100%),
		linear-gradient(142deg, transparent 0 46%, rgba(33, 165, 255, 0.19) 46.2% 46.5%, transparent 46.8% 100%),
		linear-gradient(88deg, transparent 0 58%, rgba(33, 165, 255, 0.18) 58.1% 58.4%, transparent 58.7% 100%);
	background-size: 122px 112px, 440px 280px, 390px 310px, 560px 260px;
	background-position: 96% 6%, 72% 8%, 100% 34%, 0 96%;
}

.sech-hero--showcase .sech-container {
	width: min(1300px, calc(100% - 100px));
}

.sech-hero--showcase .sech-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
	grid-template-areas:
		"copy visual"
		"features features";
	column-gap: 44px;
	row-gap: 26px;
	min-height: 0;
	align-items: start;
}

.sech-hero--showcase .sech-hero__copy {
	grid-area: copy;
	max-width: 560px;
	padding-top: 4px;
}

.sech-hero__pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 18px;
	padding: 8px 13px;
	border: 1px solid rgba(38, 141, 204, 0.42);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.035);
	color: rgba(255, 255, 255, 0.92);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	box-shadow: 0 0 28px rgba(38, 141, 204, 0.1);
}

.sech-hero__pill span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #20baff;
	box-shadow: 0 0 14px rgba(32, 186, 255, 0.9);
}

.sech-hero--showcase .sech-hero__title {
	display: grid;
	gap: 0;
	margin: 0;
	color: #ffffff;
	font-size: 58px;
	font-weight: 900;
	line-height: 1.02;
	letter-spacing: 0;
	text-shadow: 0 12px 36px rgba(0, 0, 0, 0.32);
}

.sech-hero--showcase .sech-hero__title span {
	display: block;
}

.sech-hero__title-accent {
	color: #18baff;
	background: linear-gradient(90deg, #13cfff 0%, #268dcc 56%, #3679ff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.sech-hero__rule {
	width: 54px;
	height: 3px;
	margin: 22px 0 18px;
	background: #16c8ff;
	box-shadow: 0 0 18px rgba(22, 200, 255, 0.72);
}

.sech-hero--showcase .sech-hero__description {
	max-width: 500px;
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.55;
}

.sech-hero--showcase .sech-hero__description strong {
	color: #20c4ff;
	font-weight: 800;
}

.sech-hero--showcase .sech-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 24px;
}

.sech-hero--showcase .sech-button {
	gap: 16px;
	min-width: 170px;
	min-height: 45px;
	padding: 12px 20px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 900;
}

.sech-hero--showcase .sech-button--primary {
	background: linear-gradient(135deg, #168dff 0%, #13c9ff 100%);
	box-shadow: 0 15px 32px rgba(19, 201, 255, 0.28), 0 0 28px rgba(38, 141, 204, 0.2);
}

.sech-hero--showcase .sech-button--ghost {
	border-color: rgba(38, 141, 204, 0.48);
	background: rgba(3, 10, 24, 0.52);
	color: #ffffff;
	box-shadow: inset 0 0 20px rgba(38, 141, 204, 0.08);
}

.sech-hero--showcase .sech-badges {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	max-width: 382px;
	margin-top: 32px;
}

.sech-partner-logos {
	max-width: 382px;
	margin-top: 32px;
}

.sech-partner-logos img {
	display: block;
	width: 100%;
	height: auto;
	border: 1px solid rgba(38, 141, 204, 0.35);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.04);
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18), inset 0 0 22px rgba(38, 141, 204, 0.055);
}

.sech-hero--showcase .sech-badge {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	min-height: 72px;
	padding: 14px 16px;
	border: 1px solid rgba(38, 141, 204, 0.35);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.045);
	color: #ffffff;
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18), inset 0 0 22px rgba(38, 141, 204, 0.055);
	backdrop-filter: blur(8px);
}

.sech-badge__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: #ffffff;
	font-size: 23px;
	font-weight: 900;
	line-height: 1;
}

.sech-badge--google .sech-badge__mark {
	background: conic-gradient(#4285f4 0 25%, #34a853 25% 50%, #fbbc05 50% 75%, #ea4335 75% 100%);
}

.sech-badge--meta .sech-badge__mark {
	background: transparent;
	color: #16adff;
	font-size: 42px;
}

.sech-badge__content {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.sech-badge__content strong {
	overflow-wrap: anywhere;
	color: #ffffff;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.12;
}

.sech-badge__content small {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.2;
}

.sech-badge__content i {
	display: inline-flex;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #168dff;
	box-shadow: 0 0 10px rgba(22, 141, 255, 0.75);
}

.sech-hero--showcase .sech-hero__visual {
	grid-area: visual;
	align-self: stretch;
	min-height: 570px;
	justify-content: center;
	padding-top: 6px;
}

.sech-hero--showcase .sech-hero__image-wrap {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	width: min(100%, 520px);
	min-height: 600px;
}

.sech-hero--showcase .sech-hero__image-wrap::before {
	content: "";
	position: absolute;
	right: 24px;
	bottom: 76px;
	width: 330px;
	height: 430px;
	border: 1px solid rgba(21, 196, 255, 0.55);
	border-radius: 60px;
	background: linear-gradient(145deg, rgba(13, 152, 225, 0.32), rgba(11, 35, 72, 0.1));
	box-shadow: inset 0 0 44px rgba(38, 141, 204, 0.12), 0 0 42px rgba(38, 141, 204, 0.18);
	transform: rotate(18deg) skew(-8deg);
}

.sech-hero--showcase .sech-hero__image-wrap::after {
	content: "";
	position: absolute;
	right: -18px;
	bottom: 126px;
	width: 500px;
	height: 110px;
	border: 2px solid rgba(20, 198, 255, 0.75);
	border-top-color: rgba(20, 198, 255, 0.08);
	border-left-color: rgba(20, 198, 255, 0.08);
	border-radius: 50%;
	box-shadow: 0 0 24px rgba(20, 198, 255, 0.36);
	transform: rotate(-8deg);
}

.sech-hero--showcase .sech-hero__visual img {
	position: relative;
	z-index: 2;
	display: block;
	width: min(100%, 410px);
	max-height: 610px;
	object-fit: contain;
	object-position: bottom center;
	filter: drop-shadow(0 34px 48px rgba(0, 0, 0, 0.45));
}

.sech-hero__features {
	grid-area: features;
	position: relative;
	z-index: 4;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-top: -56px;
}

.sech-hero-feature {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	min-height: 102px;
	padding: 18px 20px;
	border: 1px solid rgba(38, 141, 204, 0.32);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.045);
	color: #ffffff;
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18), inset 0 0 22px rgba(38, 141, 204, 0.04);
	backdrop-filter: blur(9px);
}

.sech-hero-feature__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	color: #16c8ff;
	font-size: 27px;
}

.sech-hero-feature__icon svg {
	width: 29px;
	height: 29px;
	fill: currentColor;
}

.sech-hero-feature h3 {
	margin: 0;
	color: #ffffff;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.22;
}

.sech-hero-feature p {
	margin: 6px 0 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 11px;
	font-weight: 600;
	line-height: 1.45;
}

@media (max-width: 1180px) {
	.sech-hero--showcase .sech-container {
		width: min(100% - 56px, 1300px);
	}

	.sech-hero--showcase .sech-hero__inner {
		grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.85fr);
		column-gap: 20px;
	}

	.sech-hero--showcase .sech-hero__title {
		font-size: 50px;
	}

	.sech-hero__features {
		margin-top: -24px;
	}
}

@media (max-width: 980px) {
	.sech-hero--showcase {
		padding: 34px 0 44px;
	}

	.sech-hero--showcase .sech-hero__inner {
		grid-template-columns: 1fr;
		grid-template-areas:
			"copy"
			"visual"
			"features";
		row-gap: 28px;
	}

	.sech-hero--showcase .sech-hero__copy {
		max-width: 680px;
	}

	.sech-hero--showcase .sech-hero__visual {
		min-height: 0;
		padding-top: 0;
	}

	.sech-hero--showcase .sech-hero__image-wrap {
		width: min(100%, 460px);
		min-height: 520px;
	}

	.sech-hero__features {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: 0;
	}
}

@media (max-width: 767px) {
	.sech-hero--showcase {
		min-height: 0;
		padding: 28px 0 34px;
	}

	.sech-hero--showcase .sech-container {
		width: min(100% - 28px, 1300px);
	}

	.sech-hero--showcase .sech-hero__copy {
		padding-top: 0;
	}

	.sech-hero__pill {
		max-width: 100%;
		padding: 7px 11px;
		font-size: 11px;
	}

	.sech-hero--showcase .sech-hero__title {
		font-size: 40px;
		line-height: 1.04;
	}

	.sech-hero__rule {
		margin: 18px 0 16px;
	}

	.sech-hero--showcase .sech-hero__description {
		font-size: 16px;
	}

	.sech-hero--showcase .sech-hero__actions {
		display: grid;
		grid-template-columns: 1fr;
		gap: 12px;
		margin-top: 22px;
	}

	.sech-hero--showcase .sech-button {
		width: 100%;
		min-width: 0;
	}

	.sech-hero--showcase .sech-badges {
		grid-template-columns: 1fr;
		max-width: none;
		margin-top: 22px;
	}

	.sech-partner-logos {
		max-width: none;
		margin-top: 22px;
	}

	.sech-hero--showcase .sech-badge {
		min-height: 66px;
	}

	.sech-hero--showcase .sech-hero__image-wrap {
		width: min(100%, 360px);
		min-height: 430px;
	}

	.sech-hero--showcase .sech-hero__image-wrap::before {
		right: 30px;
		bottom: 64px;
		width: 230px;
		height: 310px;
		border-radius: 42px;
	}

	.sech-hero--showcase .sech-hero__image-wrap::after {
		right: -14px;
		bottom: 104px;
		width: 360px;
		height: 86px;
	}

	.sech-hero--showcase .sech-hero__visual img {
		width: min(100%, 295px);
		max-height: 430px;
	}

	.sech-hero__features {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.sech-hero-feature {
		min-height: 86px;
		padding: 16px;
	}
}

@media (max-width: 430px) {
	.sech-hero--showcase .sech-hero__title {
		font-size: 34px;
	}

	.sech-hero--showcase .sech-hero__image-wrap {
		min-height: 380px;
	}

	.sech-hero--showcase .sech-hero__visual img {
		width: min(100%, 260px);
	}
}

.sech-hero--showcase .sech-hero__pill {
	font-weight: 600;
}

.sech-hero--showcase .sech-hero__title {
	font-weight: 700;
}

.sech-hero--showcase .sech-hero__description {
	font-weight: 400;
}

.sech-hero--showcase .sech-hero__description strong {
	font-weight: 600;
}

.sech-hero--showcase .sech-button {
	font-weight: 700;
}

.sech-badge__content strong,
.sech-hero-feature h3 {
	font-weight: 700;
}

.sech-badge__content small,
.sech-hero-feature p {
	font-weight: 500;
}

.sech-hero-feature__icon {
	font-weight: 600;
}

/* Hero balance refinements */
.sech-hero--showcase .sech-hero__inner {
	grid-template-columns: minmax(0, 720px) minmax(430px, 1fr);
	column-gap: 18px;
}

.sech-hero--showcase .sech-hero__copy {
	max-width: 720px;
}

.sech-hero--showcase .sech-hero__title {
	font-size: 72px;
	line-height: 0.98;
}

.sech-hero--showcase .sech-hero__description {
	max-width: 620px;
	font-size: 19px;
}

.sech-partner-logos {
	max-width: 168px;
	margin-top: 26px;
}

.sech-partner-logos img {
	border-radius: 6px;
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.sech-hero--showcase .sech-hero__visual {
	justify-content: flex-start;
	margin-left: -18px;
}

.sech-hero--showcase .sech-hero__image-wrap {
	width: min(100%, 580px);
}

.sech-hero--showcase .sech-hero__visual img {
	width: min(100%, 460px);
	max-height: 650px;
}

.sech-hero--showcase .sech-hero__image-wrap::before {
	right: 44px;
}

.sech-hero--showcase .sech-hero__image-wrap::after {
	right: 12px;
}

@media (max-width: 1180px) {
	.sech-hero--showcase .sech-hero__inner {
		grid-template-columns: minmax(0, 640px) minmax(340px, 1fr);
	}

	.sech-hero--showcase .sech-hero__title {
		font-size: 60px;
	}

	.sech-partner-logos {
		max-width: 154px;
	}

	.sech-hero--showcase .sech-hero__visual {
		margin-left: -10px;
	}
}

@media (max-width: 980px) {
	.sech-hero--showcase .sech-hero__inner {
		grid-template-columns: 1fr;
	}

	.sech-hero--showcase .sech-hero__copy {
		max-width: 760px;
	}

	.sech-hero--showcase .sech-hero__title {
		font-size: 56px;
	}

	.sech-hero--showcase .sech-hero__visual {
		justify-content: center;
		margin-left: 0;
	}
}

@media (max-width: 767px) {
	.sech-hero--showcase .sech-hero__title {
		font-size: 42px;
		line-height: 1.03;
	}

	.sech-hero--showcase .sech-hero__description {
		font-size: 16px;
	}

	.sech-partner-logos {
		max-width: 142px;
		margin-top: 20px;
	}

	.sech-hero--showcase .sech-hero__visual img {
		width: min(100%, 310px);
	}
}

@media (max-width: 430px) {
	.sech-hero--showcase .sech-hero__title {
		font-size: 36px;
	}
}

/* Final hero title and partner-logo sizing */
.sech-hero--showcase .sech-hero__title-line {
	display: inline-flex !important;
	flex-wrap: wrap;
	align-items: baseline;
	column-gap: 0.24em;
}

.sech-hero--showcase .sech-hero__title-line > span {
	display: inline !important;
}

.sech-partner-logos {
	width: 124px;
	max-width: 124px;
}

@media (max-width: 767px) {
	.sech-hero--showcase .sech-hero__title-line {
		display: block !important;
	}

	.sech-hero--showcase .sech-hero__title-line > span {
		display: block !important;
	}

	.sech-partner-logos {
		width: 82px;
		max-width: 82px;
		margin-top: 16px;
	}

	.sech-hero--showcase .sech-hero__visual {
		display: none;
	}
}

/* Final hero layout pass */
.sech-hero--showcase .sech-hero__inner {
	grid-template-columns: minmax(0, 760px) minmax(440px, 1fr);
	column-gap: 10px;
}

.sech-hero--showcase .sech-hero__copy {
	max-width: 760px;
}

.sech-hero--showcase .sech-hero__title {
	font-size: 74px;
	line-height: 0.96;
}

.sech-hero--showcase .sech-hero__title-line {
	display: flex !important;
	flex-wrap: nowrap;
	white-space: nowrap;
}

.sech-partner-logos {
	width: 220px;
	max-width: 220px;
}

.sech-hero--showcase .sech-hero__visual {
	justify-content: flex-start;
	margin-left: -54px;
}

.sech-hero--showcase .sech-hero__image-wrap {
	width: min(100%, 640px);
}

.sech-hero--showcase .sech-hero__visual img {
	width: min(100%, 500px);
	max-height: 690px;
}

@media (max-width: 1180px) {
	.sech-hero--showcase .sech-hero__inner {
		grid-template-columns: minmax(0, 650px) minmax(360px, 1fr);
	}

	.sech-hero--showcase .sech-hero__title {
		font-size: 60px;
	}

	.sech-partner-logos {
		width: 190px;
		max-width: 190px;
	}
}

@media (max-width: 980px) {
	.sech-hero--showcase .sech-hero__inner {
		grid-template-columns: 1fr;
	}

	.sech-hero--showcase .sech-hero__title {
		font-size: 56px;
	}
}

@media (max-width: 767px) {
	.sech-hero--showcase .sech-hero__title {
		font-size: 48px;
		line-height: 1.02;
	}

	.sech-hero--showcase .sech-hero__title-line {
		display: block !important;
		white-space: normal;
	}

	.sech-hero--showcase .sech-hero__title-line > span {
		display: block !important;
	}

	.sech-partner-logos {
		width: 160px;
		max-width: 160px;
		margin-top: 18px;
	}

	.sech-hero--showcase .sech-hero__visual {
		display: none !important;
	}
}

@media (max-width: 430px) {
	.sech-hero--showcase .sech-hero__title {
		font-size: 40px;
	}

	.sech-partner-logos {
		width: 150px;
		max-width: 150px;
	}
}

/* Final spacing pass from visual QA */
.sech-hero--showcase .sech-hero__inner {
	grid-template-columns: minmax(0, 700px) minmax(500px, 1fr);
	column-gap: 0;
}

.sech-hero--showcase .sech-hero__copy {
	max-width: 700px;
	padding-top: 54px;
}

.sech-hero--showcase .sech-hero__title {
	font-size: 66px;
	line-height: 1.1;
}

.sech-hero--showcase .sech-hero__title-line {
	column-gap: 0.22em;
}

.sech-hero--showcase .sech-hero__description {
	max-width: 640px;
}

.sech-hero--showcase .sech-hero__visual {
	margin-left: -88px;
	min-height: 610px;
}

.sech-hero--showcase .sech-hero__image-wrap {
	width: min(100%, 690px);
	min-height: 640px;
}

.sech-hero--showcase .sech-hero__visual img {
	width: min(100%, 535px);
	max-height: 710px;
}

.sech-hero--showcase .sech-hero__image-wrap::before {
	right: 64px;
	bottom: 86px;
}

.sech-hero--showcase .sech-hero__image-wrap::after {
	right: 18px;
	bottom: 142px;
}

@media (max-width: 1180px) {
	.sech-hero--showcase .sech-hero__inner {
		grid-template-columns: minmax(0, 610px) minmax(390px, 1fr);
	}

	.sech-hero--showcase .sech-hero__title {
		font-size: 56px;
		line-height: 1.1;
	}

	.sech-hero--showcase .sech-hero__visual {
		margin-left: -46px;
	}

	.sech-hero--showcase .sech-hero__visual img {
		width: min(100%, 475px);
	}
}

@media (max-width: 980px) {
	.sech-hero--showcase .sech-hero__inner {
		grid-template-columns: 1fr;
	}

	.sech-hero--showcase .sech-hero__copy {
		padding-top: 0;
	}

	.sech-hero--showcase .sech-hero__title {
		font-size: 52px;
		line-height: 1.08;
	}

	.sech-hero--showcase .sech-hero__visual {
		margin-left: 0;
	}
}

@media (max-width: 767px) {
	.sech-hero--showcase .sech-hero__title {
		font-size: 44px;
		line-height: 1.1;
	}

	.sech-hero--showcase .sech-hero__visual {
		display: none !important;
	}
}

@media (max-width: 430px) {
	.sech-hero--showcase .sech-hero__title {
		font-size: 38px;
	}
}

/* Full-width hero and proof strip */
.elementor-widget-se_customer_hero,
.elementor-widget-se_customer_hero .elementor-widget-container {
	overflow-x: clip;
}

.sech-hero--showcase {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	overflow: hidden;
}

@supports (width: 100dvw) {
	.sech-hero--showcase {
		width: 100dvw;
		max-width: 100dvw;
		margin-left: calc(50% - 50dvw);
		margin-right: calc(50% - 50dvw);
	}
}

.elementor-widget-se_customer_hero {
	max-width: 100% !important;
}

.sech-hero--showcase {
	left: auto;
	right: auto;
	transform: none;
	clip-path: inset(0);
}

body:has(.sech-hero--showcase) {
	overflow-x: hidden;
}

.sech-hero--showcase {
	position: relative;
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
	margin-right: 0;
}

@supports (width: 100dvw) {
	.sech-hero--showcase {
		width: 100dvw;
		margin-left: calc(50% - 50dvw);
		margin-right: 0;
	}
}

/* What we do widget */
.elementor-widget-se_customer_what_we_do,
.elementor-widget-se_customer_what_we_do .elementor-widget-container {
	overflow-x: clip;
}

.sech-what {
	isolation: isolate;
	overflow: hidden;
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
	margin-right: 0;
	padding: 92px 0 106px;
	background:
		linear-gradient(90deg, rgba(7, 14, 31, 0.99) 0%, rgba(5, 17, 37, 0.99) 54%, rgba(5, 24, 49, 0.98) 100%),
		var(--sech-dark);
	color: #ffffff;
}

@supports (width: 100dvw) {
	.sech-what {
		width: 100dvw;
		margin-left: calc(50% - 50dvw);
	}
}

.sech-what::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		linear-gradient(125deg, transparent 0 49%, rgba(38, 141, 204, 0.16) 49.1% 49.35%, transparent 49.7% 100%),
		linear-gradient(34deg, transparent 0 62%, rgba(38, 141, 204, 0.12) 62.1% 62.35%, transparent 62.7% 100%),
		radial-gradient(circle at 82% 16%, rgba(38, 141, 204, 0.25), transparent 25%);
}

.sech-what .sech-network {
	z-index: 0;
	opacity: 0.36;
}

.sech-what .sech-container {
	position: relative;
	z-index: 2;
}

.sech-what__head {
	display: grid;
	grid-template-columns: minmax(0, 0.74fr) minmax(320px, 0.58fr);
	align-items: end;
	gap: 48px;
	margin-bottom: 42px;
}

.sech-what__head .sech-hero__pill {
	grid-column: 1 / -1;
	width: fit-content;
	margin-bottom: -20px;
}

.sech-what__head h2 {
	margin: 0;
	color: #ffffff;
	font-size: 52px;
	font-weight: 700;
	line-height: 1.1;
}

.sech-what__head p:not(.sech-hero__pill) {
	margin: 0;
	color: rgba(255, 255, 255, 0.74);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.75;
}

.sech-what__grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	grid-auto-rows: 112px;
	gap: 18px;
}

.sech-what-card {
	--sech-card-image: none;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	grid-column: span 4;
	grid-row: span 3;
	min-height: 300px;
	overflow: hidden;
	padding: 24px;
	border: 1px solid rgba(38, 141, 204, 0.28);
	border-radius: 18px;
	background:
		linear-gradient(180deg, rgba(7, 14, 31, 0.2) 0%, rgba(7, 14, 31, 0.84) 100%),
		linear-gradient(135deg, rgba(38, 141, 204, 0.2), rgba(255, 255, 255, 0.04)),
		var(--sech-card-image);
	background-color: rgba(255, 255, 255, 0.045);
	background-position: center;
	background-size: cover;
	color: #ffffff;
	text-decoration: none;
	box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24), inset 0 0 32px rgba(38, 141, 204, 0.045);
	backdrop-filter: blur(10px);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.sech-what-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		radial-gradient(circle at 20% 18%, rgba(38, 141, 204, 0.32), transparent 24%),
		linear-gradient(35deg, transparent 0 52%, rgba(38, 141, 204, 0.22) 52.1% 52.5%, transparent 52.9% 100%),
		linear-gradient(145deg, transparent 0 62%, rgba(255, 255, 255, 0.08) 62.1% 62.3%, transparent 62.7% 100%);
	opacity: 0.78;
}

.sech-what-card::after {
	content: "";
	position: absolute;
	inset: auto 24px 0;
	z-index: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--sech-accent), transparent);
	opacity: 0.7;
}

.sech-what-card:hover,
.sech-what-card:focus {
	transform: translateY(-5px);
	border-color: rgba(38, 141, 204, 0.62);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34), 0 0 34px rgba(38, 141, 204, 0.12);
	color: #ffffff;
	text-decoration: none;
}

.sech-what-card:nth-child(2),
.sech-what-card:nth-child(5) {
	grid-row: span 2;
	min-height: 220px;
}

.sech-what-card:nth-child(3),
.sech-what-card:nth-child(4) {
	grid-column: span 4;
	grid-row: span 3;
}

.sech-what-card__icon,
.sech-what-card__body,
.sech-what-card__arrow {
	position: relative;
	z-index: 1;
}

.sech-what-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border: 1px solid rgba(38, 141, 204, 0.42);
	border-radius: 14px;
	background: rgba(7, 14, 31, 0.46);
	color: #19c4ff;
	font-size: 24px;
	box-shadow: inset 0 0 18px rgba(38, 141, 204, 0.12);
}

.sech-what-card__icon svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.sech-what-card h3 {
	max-width: 320px;
	margin: 0;
	color: #ffffff;
	font-size: 25px;
	font-weight: 700;
	line-height: 1.18;
}

.sech-what-card p {
	max-width: 330px;
	margin: 12px 0 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.55;
}

.sech-what-card__arrow {
	position: absolute;
	top: 24px;
	right: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	color: #ffffff;
	font-size: 18px;
	line-height: 1;
	opacity: 0.72;
}

@media (max-width: 1024px) {
	.sech-what__head {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.sech-what__head .sech-hero__pill {
		margin-bottom: 0;
	}

	.sech-what__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-rows: auto;
	}

	.sech-what-card,
	.sech-what-card:nth-child(2),
	.sech-what-card:nth-child(3),
	.sech-what-card:nth-child(4),
	.sech-what-card:nth-child(5) {
		grid-column: auto;
		grid-row: auto;
		min-height: 260px;
	}
}

@media (max-width: 767px) {
	.sech-what {
		padding: 62px 0 72px;
	}

	.sech-what__head {
		margin-bottom: 26px;
	}

	.sech-what__head h2 {
		font-size: 34px;
	}

	.sech-what__head p:not(.sech-hero__pill) {
		font-size: 15px;
		line-height: 1.65;
	}

	.sech-what__grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.sech-what-card,
	.sech-what-card:nth-child(2),
	.sech-what-card:nth-child(3),
	.sech-what-card:nth-child(4),
	.sech-what-card:nth-child(5) {
		min-height: 220px;
		padding: 20px;
		border-radius: 14px;
	}

	.sech-what-card h3 {
		font-size: 21px;
	}
}

/* Light services redesign */
.sech-what {
	padding: 88px 0 96px;
	background:
		linear-gradient(180deg, #ffffff 0%, #f6fafe 100%);
	color: var(--sech-dark);
}

.sech-what::before,
.sech-what .sech-network {
	display: none;
}

.sech-what__head {
	display: block;
	max-width: 820px;
	margin: 0 auto 42px;
	text-align: center;
}

.sech-what__head .sech-hero__pill {
	display: inline-flex;
	margin: 0 0 18px;
	border-color: rgba(38, 141, 204, 0.28);
	background: rgba(38, 141, 204, 0.08);
	color: var(--sech-dark);
	box-shadow: none;
}

.sech-what__head h2 {
	color: var(--sech-dark);
	font-size: 46px;
	line-height: 1.12;
}

.sech-what__head p:not(.sech-hero__pill) {
	max-width: 680px;
	margin: 16px auto 0;
	color: rgba(7, 14, 31, 0.68);
	font-size: 17px;
	line-height: 1.72;
}

.sech-what__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-auto-rows: auto;
	gap: 18px;
}

.sech-what-card,
.sech-what-card:nth-child(2),
.sech-what-card:nth-child(3),
.sech-what-card:nth-child(4),
.sech-what-card:nth-child(5) {
	grid-column: auto;
	grid-row: auto;
	min-height: 270px;
	height: 100%;
	padding: 24px;
	border: 1px solid rgba(7, 14, 31, 0.08);
	border-radius: 14px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.96) 54%, #ffffff 100%),
		var(--sech-card-image);
	background-color: #ffffff;
	background-position: center;
	background-size: cover;
	color: var(--sech-dark);
	box-shadow: 0 18px 46px rgba(7, 14, 31, 0.08);
}

.sech-what-card::before {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.96) 78%),
		radial-gradient(circle at 12% 16%, rgba(38, 141, 204, 0.16), transparent 26%);
	opacity: 1;
}

.sech-what-card::after {
	inset: 0 auto auto 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--sech-accent), rgba(38, 141, 204, 0.12));
	opacity: 1;
}

.sech-what-card:hover,
.sech-what-card:focus {
	transform: translateY(-4px);
	border-color: rgba(38, 141, 204, 0.34);
	box-shadow: 0 24px 58px rgba(7, 14, 31, 0.13);
	color: var(--sech-dark);
}

.sech-what-card__icon {
	width: 52px;
	height: 52px;
	border-color: rgba(38, 141, 204, 0.2);
	background: rgba(38, 141, 204, 0.09);
	color: var(--sech-accent);
	box-shadow: none;
}

.sech-what-card h3 {
	color: var(--sech-dark);
	font-size: 23px;
	line-height: 1.22;
}

.sech-what-card p {
	color: rgba(7, 14, 31, 0.62);
	font-size: 14px;
	line-height: 1.65;
}

.sech-what-card__arrow {
	border-color: rgba(38, 141, 204, 0.2);
	background: rgba(38, 141, 204, 0.08);
	color: var(--sech-accent);
	opacity: 1;
}

@media (max-width: 1024px) {
	.sech-what__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.sech-what {
		padding: 62px 0 70px;
	}

	.sech-what__head {
		text-align: left;
		margin-bottom: 28px;
	}

	.sech-what__head h2 {
		font-size: 34px;
	}

	.sech-what__head p:not(.sech-hero__pill) {
		margin-left: 0;
		font-size: 15px;
	}

	.sech-what__grid {
		grid-template-columns: 1fr;
	}

	.sech-what-card,
	.sech-what-card:nth-child(2),
	.sech-what-card:nth-child(3),
	.sech-what-card:nth-child(4),
	.sech-what-card:nth-child(5) {
		min-height: 230px;
	}
}

/* Workflow widget */
.elementor-widget-se_customer_workflow,
.elementor-widget-se_customer_workflow .elementor-widget-container {
	overflow-x: clip;
}

.sech-workflow {
	isolation: isolate;
	overflow: hidden;
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
	margin-right: 0;
	padding: 96px 0 106px;
	background:
		linear-gradient(90deg, rgba(7, 14, 31, 0.99) 0%, rgba(5, 17, 37, 0.99) 50%, rgba(5, 24, 49, 0.98) 100%),
		var(--sech-dark);
	color: #ffffff;
}

@supports (width: 100dvw) {
	.sech-workflow {
		width: 100dvw;
		margin-left: calc(50% - 50dvw);
	}
}

.sech-workflow::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		radial-gradient(circle at 18% 24%, rgba(38, 141, 204, 0.18), transparent 24%),
		radial-gradient(circle at 86% 18%, rgba(38, 141, 204, 0.26), transparent 22%),
		linear-gradient(125deg, transparent 0 48%, rgba(38, 141, 204, 0.16) 48.1% 48.35%, transparent 48.7% 100%),
		linear-gradient(34deg, transparent 0 62%, rgba(38, 141, 204, 0.12) 62.1% 62.35%, transparent 62.7% 100%);
}

.sech-workflow .sech-network {
	z-index: 0;
	opacity: 0.34;
}

.sech-workflow .sech-container {
	position: relative;
	z-index: 2;
}

.sech-workflow__head {
	max-width: 860px;
	margin: 0 auto 58px;
	text-align: center;
}

.sech-workflow__head .sech-hero__pill {
	margin: 0 0 18px;
}

.sech-workflow__head h2 {
	margin: 0;
	color: #ffffff;
	font-size: 52px;
	font-weight: 700;
	line-height: 1.1;
}

.sech-workflow__head p:not(.sech-hero__pill) {
	max-width: 720px;
	margin: 16px auto 0;
	color: rgba(255, 255, 255, 0.74);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.72;
}

.sech-workflow__steps {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.sech-workflow__steps::before {
	content: "";
	position: absolute;
	top: 58px;
	left: 8%;
	right: 8%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(38, 141, 204, 0.5), transparent);
}

.sech-workflow-step {
	position: relative;
	min-height: 300px;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.055);
	box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22), inset 0 0 28px rgba(38, 141, 204, 0.045);
	backdrop-filter: blur(10px);
	transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.sech-workflow-step:hover {
	transform: translateY(-5px);
	border-color: rgba(38, 141, 204, 0.52);
	background: rgba(255, 255, 255, 0.075);
}

.sech-workflow-step__number {
	position: absolute;
	top: 18px;
	right: 20px;
	color: rgba(255, 255, 255, 0.18);
	font-size: 38px;
	font-weight: 800;
	line-height: 1;
}

.sech-workflow-step__icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	margin-bottom: 54px;
	border: 1px solid rgba(38, 141, 204, 0.52);
	border-radius: 50%;
	background: rgba(7, 14, 31, 0.72);
	color: #18c4ff;
	font-size: 30px;
	box-shadow: 0 0 30px rgba(38, 141, 204, 0.16), inset 0 0 18px rgba(38, 141, 204, 0.12);
}

.sech-workflow-step__icon svg {
	width: 31px;
	height: 31px;
	fill: currentColor;
}

.sech-workflow-step__body h3 {
	margin: 0;
	color: #ffffff;
	font-size: 23px;
	font-weight: 700;
	line-height: 1.22;
}

.sech-workflow-step__body p {
	margin: 13px 0 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.65;
}

@media (max-width: 1024px) {
	.sech-workflow__steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sech-workflow__steps::before {
		display: none;
	}
}

@media (max-width: 767px) {
	.sech-workflow {
		padding: 64px 0 72px;
	}

	.sech-workflow__head {
		margin-bottom: 30px;
		text-align: left;
	}

	.sech-workflow__head h2 {
		font-size: 34px;
	}

	.sech-workflow__head p:not(.sech-hero__pill) {
		margin-left: 0;
		font-size: 15px;
		line-height: 1.65;
	}

	.sech-workflow__steps {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.sech-workflow-step {
		min-height: 0;
		padding: 22px;
	}

	.sech-workflow-step__icon {
		width: 62px;
		height: 62px;
		margin-bottom: 26px;
	}
}

/* About widget */
.sech-about {
	overflow: hidden;
	padding: 92px 0 104px;
	background:
		radial-gradient(circle at 12% 14%, rgba(38, 141, 204, 0.09), transparent 24%),
		linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
	color: var(--sech-dark);
}

.sech-about__grid {
	display: grid;
	grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
	align-items: center;
	gap: 58px;
}

.sech-about__media {
	position: relative;
	isolation: isolate;
}

.sech-about__media::before {
	content: "";
	position: absolute;
	inset: 28px -26px -26px 42px;
	z-index: -1;
	border: 1px solid rgba(38, 141, 204, 0.22);
	border-radius: 24px;
	background: rgba(38, 141, 204, 0.08);
}

.sech-about__media img {
	display: block;
	width: 100%;
	aspect-ratio: 0.78;
	object-fit: cover;
	border-radius: 24px;
	box-shadow: 0 28px 70px rgba(7, 14, 31, 0.18);
}

.sech-about__content {
	max-width: 720px;
}

.sech-about__eyebrow {
	margin: 0 0 14px;
	color: var(--sech-accent);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0;
}

.sech-about h2 {
	margin: 0;
	color: var(--sech-dark);
	font-size: 44px;
	font-weight: 700;
	line-height: 1.12;
}

.sech-about__text {
	margin-top: 22px;
	color: rgba(7, 14, 31, 0.72);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.78;
}

.sech-about__text p {
	margin: 0 0 16px;
}

.sech-about__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 28px;
}

.sech-about__stats div {
	padding: 17px 16px;
	border: 1px solid rgba(7, 14, 31, 0.08);
	border-radius: 12px;
	background: #ffffff;
	box-shadow: 0 16px 36px rgba(7, 14, 31, 0.07);
}

.sech-about__stats strong {
	display: block;
	color: var(--sech-dark);
	font-size: 24px;
	font-weight: 800;
	line-height: 1;
}

.sech-about__stats span {
	display: block;
	margin-top: 8px;
	color: rgba(7, 14, 31, 0.56);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.35;
}

.sech-about__button {
	width: fit-content;
	gap: 12px;
	margin-top: 28px;
	border-radius: 8px;
	color: #ffffff !important;
}

.sech-about__button:hover,
.sech-about__button:focus,
.sech-about__button span {
	color: #ffffff !important;
}

@media (max-width: 1024px) {
	.sech-about__grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.sech-about__media {
		max-width: 540px;
	}
}

@media (max-width: 767px) {
	.sech-about {
		padding: 62px 0 72px;
	}

	.sech-about__grid {
		gap: 28px;
	}

	.sech-about__media::before,
	.sech-about__media::after {
		display: none;
	}

	.sech-about__media img {
		border-radius: 16px;
	}

	.sech-about h2 {
		font-size: 34px;
	}

	.sech-about__text {
		font-size: 15px;
		line-height: 1.68;
	}

	.sech-about__stats {
		grid-template-columns: 1fr;
	}

	.sech-about__button {
		width: 100%;
	}
}

/* Team widget */
.elementor-widget-se_customer_team,
.elementor-widget-se_customer_team .elementor-widget-container {
	overflow-x: clip;
}

.sech-team {
	isolation: isolate;
	overflow: hidden;
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
	margin-right: 0;
	padding: 96px 0 112px;
	background:
		radial-gradient(circle at 12% 18%, rgba(38, 141, 204, 0.2), transparent 30%),
		radial-gradient(circle at 88% 10%, rgba(32, 196, 255, 0.14), transparent 28%),
		linear-gradient(90deg, rgba(7, 14, 31, 0.99) 0%, rgba(5, 18, 39, 0.99) 58%, rgba(5, 25, 51, 0.98) 100%),
		var(--sech-dark);
	color: #ffffff;
}

@supports (width: 100dvw) {
	.sech-team {
		width: 100dvw;
		margin-left: calc(50% - 50dvw);
	}
}

.sech-team::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		linear-gradient(115deg, transparent 0 52%, rgba(38, 141, 204, 0.16) 52.2% 52.4%, transparent 52.8% 100%),
		linear-gradient(35deg, transparent 0 66%, rgba(38, 141, 204, 0.11) 66.2% 66.5%, transparent 66.9% 100%);
}

.sech-team .sech-network {
	opacity: 0.28;
	background-size: 128px 118px, 520px 310px, 450px 330px, 610px 280px;
}

.sech-team .sech-container {
	position: relative;
	z-index: 1;
	width: min(1300px, calc(100% - 80px));
}

.sech-team__head {
	max-width: 780px;
	margin: 0 auto 46px;
	text-align: center;
}

.sech-team__head .sech-hero__pill {
	margin-right: auto;
	margin-left: auto;
}

.sech-team__head h2 {
	margin: 0;
	color: #ffffff;
	font-size: 54px;
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: 0;
}

.sech-team__head > p:not(.sech-hero__pill) {
	margin: 16px auto 0;
	max-width: 720px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.65;
}

.sech-team__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.sech-team-card {
	position: relative;
	display: block;
	overflow: hidden;
	min-height: 100%;
	padding: 12px;
	border: 1px solid rgba(38, 141, 204, 0.28);
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
		rgba(8, 21, 43, 0.72);
	box-shadow: 0 22px 58px rgba(0, 0, 0, 0.26), inset 0 0 30px rgba(38, 141, 204, 0.045);
	text-decoration: none;
	backdrop-filter: blur(12px);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.sech-team-card::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(135deg, rgba(32, 196, 255, 0.22), transparent 32%);
	opacity: 0;
	transition: opacity 180ms ease;
}

.sech-team-card:hover,
.sech-team-card:focus-within {
	border-color: rgba(38, 141, 204, 0.58);
	box-shadow: 0 28px 74px rgba(0, 0, 0, 0.34), 0 0 32px rgba(38, 141, 204, 0.16);
	transform: translateY(-4px);
}

.sech-team-card:hover::before,
.sech-team-card:focus-within::before {
	opacity: 1;
}

.sech-team-card__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
}

.sech-team-card__media::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 48%;
	background: linear-gradient(180deg, transparent, rgba(7, 14, 31, 0.82));
	pointer-events: none;
}

.sech-team-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 220ms ease, filter 220ms ease;
}

.sech-team-card:hover .sech-team-card__media img {
	filter: saturate(1.08) contrast(1.04);
	transform: scale(1.045);
}

.sech-team-card__index {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 28px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	background: rgba(7, 14, 31, 0.58);
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	backdrop-filter: blur(8px);
}

.sech-team-card__body {
	position: relative;
	z-index: 1;
	padding: 20px 8px 8px;
}

.sech-team-card__role {
	margin: 0 0 9px;
	color: #20c4ff;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.25;
	text-transform: uppercase;
}

.sech-team-card h3 {
	margin: 0;
	color: #ffffff;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
}

.sech-team-card__text {
	margin: 12px 0 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.58;
}

@media (max-width: 1024px) {
	.sech-team .sech-container {
		width: min(100% - 56px, 1300px);
	}

	.sech-team__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.sech-team {
		padding: 64px 0 78px;
	}

	.sech-team .sech-container {
		width: min(100% - 28px, 1300px);
	}

	.sech-team__head {
		margin-bottom: 30px;
		text-align: left;
	}

	.sech-team__head .sech-hero__pill {
		margin-left: 0;
	}

	.sech-team__head h2 {
		font-size: 38px;
		line-height: 1.12;
	}

	.sech-team__head > p:not(.sech-hero__pill) {
		font-size: 15px;
		line-height: 1.62;
	}

	.sech-team__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.sech-team-card {
		padding: 10px;
	}

	.sech-team-card__body {
		padding: 17px 6px 6px;
	}

	.sech-team-card h3 {
		font-size: 20px;
	}
}

/* Vision and mission widget */
.elementor-widget-se_customer_vision_mission,
.elementor-widget-se_customer_vision_mission .elementor-widget-container {
	overflow-x: clip;
}

.sech-vm {
	isolation: isolate;
	overflow: hidden;
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
	margin-right: 0;
	padding: 92px 0 104px;
	background:
		radial-gradient(circle at 16% 12%, rgba(38, 141, 204, 0.22), transparent 31%),
		radial-gradient(circle at 86% 84%, rgba(32, 196, 255, 0.14), transparent 28%),
		linear-gradient(90deg, rgba(7, 14, 31, 0.99) 0%, rgba(5, 17, 37, 0.99) 54%, rgba(5, 24, 49, 0.98) 100%),
		var(--sech-dark);
	color: #ffffff;
}

@supports (width: 100dvw) {
	.sech-vm {
		width: 100dvw;
		margin-left: calc(50% - 50dvw);
	}
}

.sech-vm::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		linear-gradient(118deg, transparent 0 54%, rgba(38, 141, 204, 0.16) 54.2% 54.45%, transparent 54.8% 100%),
		linear-gradient(34deg, transparent 0 68%, rgba(38, 141, 204, 0.12) 68.15% 68.45%, transparent 68.75% 100%);
}

.sech-vm .sech-network {
	opacity: 0.24;
	background-size: 118px 108px, 500px 300px, 460px 320px, 580px 280px;
}

.sech-vm .sech-container {
	position: relative;
	z-index: 1;
	width: min(1300px, calc(100% - 80px));
}

.sech-vm__quote {
	position: relative;
	overflow: hidden;
	margin-bottom: 28px;
	padding: 44px 48px;
	border: 1px solid rgba(38, 141, 204, 0.3);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03)),
		rgba(8, 21, 43, 0.78);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28), inset 0 0 40px rgba(38, 141, 204, 0.055);
	backdrop-filter: blur(12px);
}

.sech-vm__quote::before {
	content: "“";
	position: absolute;
	right: 30px;
	top: -44px;
	color: rgba(38, 141, 204, 0.18);
	font-family: Georgia, serif;
	font-size: 180px;
	line-height: 1;
}

.sech-vm__quote .sech-hero__pill {
	margin-bottom: 20px;
}

.sech-vm__quote h2 {
	position: relative;
	z-index: 1;
	max-width: 1000px;
	margin: 0;
	color: #ffffff;
	font-size: 42px;
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: 0;
}

.sech-vm__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.sech-vm-card {
	position: relative;
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr);
	gap: 22px;
	min-height: 270px;
	padding: 32px;
	border: 1px solid rgba(38, 141, 204, 0.24);
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.032)),
		rgba(7, 17, 35, 0.74);
	box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24), inset 0 0 32px rgba(38, 141, 204, 0.04);
}

.sech-vm-card::after {
	content: "";
	position: absolute;
	right: 26px;
	bottom: 22px;
	width: 84px;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(32, 196, 255, 0.85));
	box-shadow: 0 0 18px rgba(32, 196, 255, 0.45);
}

.sech-vm-card--accent {
	border-color: rgba(38, 141, 204, 0.42);
	background:
		linear-gradient(135deg, rgba(38, 141, 204, 0.18), rgba(255, 255, 255, 0.035)),
		rgba(7, 17, 35, 0.78);
}

.sech-vm-card__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border: 1px solid rgba(38, 141, 204, 0.46);
	border-radius: 8px;
	background: rgba(38, 141, 204, 0.12);
	color: #20c4ff;
	font-size: 17px;
	font-weight: 800;
	line-height: 1;
	box-shadow: inset 0 0 24px rgba(38, 141, 204, 0.11);
}

.sech-vm-card h3 {
	margin: 0 0 16px;
	color: #ffffff;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.12;
}

.sech-vm-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.74);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.76;
}

@media (max-width: 1024px) {
	.sech-vm .sech-container {
		width: min(100% - 56px, 1300px);
	}

	.sech-vm__quote h2 {
		font-size: 36px;
	}

	.sech-vm-card {
		grid-template-columns: 1fr;
		min-height: 0;
	}
}

@media (max-width: 767px) {
	.sech-vm {
		padding: 64px 0 78px;
	}

	.sech-vm .sech-container {
		width: min(100% - 28px, 1300px);
	}

	.sech-vm__quote {
		margin-bottom: 18px;
		padding: 28px 22px;
	}

	.sech-vm__quote::before {
		right: 12px;
		top: -28px;
		font-size: 116px;
	}

	.sech-vm__quote h2 {
		font-size: 29px;
		line-height: 1.22;
	}

	.sech-vm__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.sech-vm-card {
		padding: 24px 20px;
		gap: 18px;
	}

	.sech-vm-card__number {
		width: 52px;
		height: 52px;
	}

	.sech-vm-card h3 {
		font-size: 28px;
	}

	.sech-vm-card p {
		font-size: 15px;
		line-height: 1.66;
	}
}

/* Logo references widget */
.elementor-widget-se_customer_logo_references,
.elementor-widget-se_customer_logo_references .elementor-widget-container {
	overflow-x: clip;
}

.sech-logo-refs {
	isolation: isolate;
	overflow: hidden;
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
	margin-right: 0;
	padding: 92px 0 98px;
	background:
		radial-gradient(circle at 18% 20%, rgba(38, 141, 204, 0.12), transparent 30%),
		radial-gradient(circle at 88% 72%, rgba(32, 196, 255, 0.1), transparent 27%),
		linear-gradient(180deg, #f7faff 0%, #eef4fb 100%);
	color: var(--sech-dark);
}

@supports (width: 100dvw) {
	.sech-logo-refs {
		width: 100dvw;
		margin-left: calc(50% - 50dvw);
	}
}

.sech-logo-refs::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		linear-gradient(116deg, transparent 0 54%, rgba(38, 141, 204, 0.12) 54.2% 54.45%, transparent 54.8% 100%),
		linear-gradient(32deg, transparent 0 65%, rgba(38, 141, 204, 0.08) 65.2% 65.5%, transparent 65.85% 100%);
}

.sech-logo-refs .sech-network {
	opacity: 0.12;
	background-size: 124px 112px, 520px 310px, 450px 330px, 600px 280px;
}

.sech-logo-refs .sech-container {
	position: relative;
	z-index: 1;
	width: min(1300px, calc(100% - 80px));
}

.sech-logo-refs__head {
	max-width: 760px;
	margin: 0 auto 42px;
	text-align: center;
}

.sech-logo-refs__head .sech-hero__pill {
	margin-right: auto;
	margin-left: auto;
	border-color: rgba(38, 141, 204, 0.28);
	background: rgba(255, 255, 255, 0.78);
	color: var(--sech-dark);
	box-shadow: 0 16px 36px rgba(7, 14, 31, 0.06);
}

.sech-logo-refs__head h2 {
	margin: 0;
	color: var(--sech-dark);
	font-size: 54px;
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: 0;
}

.sech-logo-refs__head > p:not(.sech-hero__pill) {
	margin: 16px auto 0;
	max-width: 680px;
	color: rgba(7, 14, 31, 0.66);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.66;
}

.sech-logo-refs__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 16px;
}

.sech-logo-ref-card {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 128px;
	padding: 24px 20px;
	border: 1px solid rgba(38, 141, 204, 0.26);
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.92)),
		#ffffff;
	box-shadow: 0 18px 42px rgba(7, 14, 31, 0.08), inset 0 0 28px rgba(38, 141, 204, 0.035);
	text-decoration: none;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.sech-logo-ref-card::after {
	content: "";
	position: absolute;
	inset: auto 18px 12px;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(32, 196, 255, 0.8), transparent);
	opacity: 0;
	transition: opacity 180ms ease;
}

.sech-logo-ref-card:hover,
.sech-logo-ref-card:focus {
	border-color: rgba(38, 141, 204, 0.58);
	box-shadow: 0 24px 58px rgba(7, 14, 31, 0.13), 0 0 28px rgba(38, 141, 204, 0.12);
	transform: translateY(-4px);
}

.sech-logo-ref-card:hover::after,
.sech-logo-ref-card:focus::after {
	opacity: 1;
}

.sech-logo-ref-card img {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: 58px;
	object-fit: contain;
}

.sech-logo-refs__action {
	display: flex;
	justify-content: center;
	margin-top: 38px;
}

.sech-logo-refs__button {
	gap: 12px;
	min-width: 176px;
	border-radius: 8px;
	color: #ffffff !important;
}

.sech-logo-refs__button span {
	color: #ffffff !important;
}

@media (max-width: 1180px) {
	.sech-logo-refs__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.sech-logo-refs {
		padding: 64px 0 78px;
	}

	.sech-logo-refs .sech-container {
		width: min(100% - 28px, 1300px);
	}

	.sech-logo-refs__head {
		margin-bottom: 30px;
		text-align: left;
	}

	.sech-logo-refs__head .sech-hero__pill {
		margin-left: 0;
	}

	.sech-logo-refs__head h2 {
		font-size: 38px;
		line-height: 1.12;
	}

	.sech-logo-refs__head > p:not(.sech-hero__pill) {
		font-size: 15px;
		line-height: 1.62;
	}

	.sech-logo-refs__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.sech-logo-ref-card {
		min-height: 104px;
		padding: 18px 14px;
	}

	.sech-logo-ref-card img {
		max-height: 46px;
	}

	.sech-logo-refs__action {
		margin-top: 26px;
	}

	.sech-logo-refs__button {
		width: 100%;
	}
}

@media (max-width: 430px) {
	.sech-logo-refs__grid {
		grid-template-columns: 1fr;
	}
}

/* Blog posts widget */
.elementor-widget-se_customer_blog_posts,
.elementor-widget-se_customer_blog_posts .elementor-widget-container {
	overflow-x: clip;
}

.sech-blog {
	overflow: hidden;
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
	margin-right: 0;
	padding: 94px 0 106px;
	background:
		radial-gradient(circle at 14% 14%, rgba(38, 141, 204, 0.12), transparent 28%),
		radial-gradient(circle at 86% 76%, rgba(32, 196, 255, 0.09), transparent 26%),
		linear-gradient(180deg, #ffffff 0%, #f3f7fc 100%);
	color: var(--sech-dark);
}

@supports (width: 100dvw) {
	.sech-blog {
		width: 100dvw;
		margin-left: calc(50% - 50dvw);
	}
}

.sech-blog .sech-container {
	width: min(1300px, calc(100% - 80px));
}

.sech-blog__head {
	max-width: 760px;
	margin: 0 auto 42px;
	text-align: center;
}

.sech-blog__head .sech-hero__pill {
	margin-right: auto;
	margin-left: auto;
	border-color: rgba(38, 141, 204, 0.28);
	background: rgba(255, 255, 255, 0.86);
	color: var(--sech-dark);
	box-shadow: 0 16px 36px rgba(7, 14, 31, 0.06);
}

.sech-blog__head h2 {
	margin: 0;
	color: var(--sech-dark);
	font-size: 54px;
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: 0;
}

.sech-blog__head > p:not(.sech-hero__pill) {
	margin: 16px auto 0;
	max-width: 690px;
	color: rgba(7, 14, 31, 0.66);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.66;
}

.sech-blog__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
}

.sech-blog-card {
	display: flex;
	overflow: hidden;
	flex-direction: column;
	min-height: 100%;
	border: 1px solid rgba(7, 14, 31, 0.08);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 20px 48px rgba(7, 14, 31, 0.08);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.sech-blog-card:hover {
	border-color: rgba(38, 141, 204, 0.3);
	box-shadow: 0 26px 64px rgba(7, 14, 31, 0.13);
	transform: translateY(-4px);
}

.sech-blog-card__media {
	position: relative;
	display: flex;
	overflow: hidden;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1.78 / 1;
	background:
		linear-gradient(135deg, rgba(38, 141, 204, 0.18), rgba(7, 14, 31, 0.92)),
		var(--sech-dark);
	color: #ffffff;
	text-decoration: none;
}

.sech-blog-card__media::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 42%;
	background: linear-gradient(180deg, transparent, rgba(7, 14, 31, 0.42));
	pointer-events: none;
}

.sech-blog-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 220ms ease, filter 220ms ease;
}

.sech-blog-card:hover .sech-blog-card__media img {
	filter: saturate(1.06) contrast(1.04);
	transform: scale(1.045);
}

.sech-blog-card__media span {
	padding: 22px;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
}

.sech-blog-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px;
}

.sech-blog-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
	color: rgba(7, 14, 31, 0.52);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
}

.sech-blog-card__meta span {
	color: var(--sech-accent);
	text-transform: uppercase;
}

.sech-blog-card h3 {
	margin: 0;
	color: var(--sech-dark);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.22;
}

.sech-blog-card h3 a {
	color: inherit;
	text-decoration: none;
}

.sech-blog-card p {
	margin: 14px 0 0;
	color: rgba(7, 14, 31, 0.64);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.68;
}

.sech-blog-card__button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: fit-content;
	margin-top: auto;
	padding-top: 22px;
	color: var(--sech-dark);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
}

.sech-blog-card__button span {
	color: var(--sech-accent);
}

.sech-blog-card__button:hover,
.sech-blog-card__button:focus {
	color: var(--sech-accent);
	text-decoration: none;
}

.sech-blog__action {
	display: flex;
	justify-content: center;
	margin-top: 38px;
}

.sech-blog__button {
	gap: 12px;
	min-width: 150px;
	border-radius: 8px;
	color: #ffffff !important;
}

.sech-blog__button span {
	color: #ffffff !important;
}

.sech-blog__empty {
	padding: 28px;
	border: 1px solid rgba(38, 141, 204, 0.2);
	border-radius: 8px;
	background: #ffffff;
	color: rgba(7, 14, 31, 0.7);
	text-align: center;
	box-shadow: 0 18px 42px rgba(7, 14, 31, 0.08);
}

@media (max-width: 1024px) {
	.sech-blog .sech-container {
		width: min(100% - 56px, 1300px);
	}

	.sech-blog__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.sech-blog {
		padding: 64px 0 78px;
	}

	.sech-blog .sech-container {
		width: min(100% - 28px, 1300px);
	}

	.sech-blog__head {
		margin-bottom: 30px;
		text-align: left;
	}

	.sech-blog__head .sech-hero__pill {
		margin-left: 0;
	}

	.sech-blog__head h2 {
		font-size: 38px;
		line-height: 1.12;
	}

	.sech-blog__head > p:not(.sech-hero__pill) {
		font-size: 15px;
		line-height: 1.62;
	}

	.sech-blog__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.sech-blog-card__body {
		padding: 21px;
	}

	.sech-blog-card h3 {
		font-size: 21px;
	}

	.sech-blog__button {
		width: 100%;
	}
}

/* Offer shell widget */
.elementor-widget-se_customer_offer_shell,
.elementor-widget-se_customer_offer_shell .elementor-widget-container {
	overflow-x: clip;
}

.sech-offer {
	overflow: hidden;
	width: 100%;
	max-width: 100%;
	padding: 0;
	background: transparent;
	color: var(--sech-dark);
}

.sech-offer .sech-container {
	width: 100%;
	max-width: none;
	margin: 0;
}

.sech-offer__content {
	position: relative;
	overflow: hidden;
	min-height: 620px;
	padding: 58px;
	border: 1px solid rgba(38, 141, 204, 0.18);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(38, 141, 204, 0.16), transparent 34%),
		linear-gradient(180deg, rgba(7, 14, 31, 0.98), rgba(5, 17, 37, 0.99)),
		var(--sech-dark);
	color: #ffffff;
	box-shadow: 0 28px 80px rgba(7, 14, 31, 0.16);
}

.sech-offer__content::after {
	content: "";
	position: absolute;
	right: -80px;
	bottom: -120px;
	width: 310px;
	height: 310px;
	border: 1px solid rgba(38, 141, 204, 0.32);
	border-radius: 50%;
	box-shadow: 0 0 80px rgba(38, 141, 204, 0.12);
}

.sech-offer__content .sech-hero__pill {
	margin-bottom: 24px;
}

.sech-offer__content h2 {
	position: relative;
	z-index: 1;
	max-width: 620px;
	margin: 0;
	color: #ffffff;
	font-size: 54px;
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: 0;
}

.sech-offer__lead {
	position: relative;
	z-index: 1;
	max-width: 660px;
	margin: 22px 0 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.72;
}

.sech-offer__items {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 20px;
	margin-top: 56px;
}

.sech-offer-info {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 16px;
	align-items: start;
}

.sech-offer-info > span {
	display: inline-flex;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(38, 141, 204, 0.38);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(32, 196, 255, 0.22), rgba(255, 255, 255, 0.04));
	box-shadow: inset 0 0 20px rgba(38, 141, 204, 0.08);
}

.sech-offer-info > span::before {
	content: "";
	width: 14px;
	height: 14px;
	margin: auto;
	border-radius: 50%;
	background: var(--sech-accent);
	box-shadow: 0 0 18px rgba(38, 141, 204, 0.75);
}

.sech-offer-info strong {
	display: block;
	color: #ffffff;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.25;
}

.sech-offer-info p {
	margin: 7px 0 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.58;
}

@media (max-width: 1024px) {
	.sech-offer__content {
		min-height: 0;
	}
}

@media (max-width: 767px) {
	.sech-offer {
		padding: 0 !important;
	}

	.sech-offer__content {
		padding: 32px 24px;
	}

	.sech-offer__content h2 {
		font-size: 38px;
		line-height: 1.12;
	}

	.sech-offer__lead {
		font-size: 15px;
		line-height: 1.66;
	}

	.sech-offer__items {
		margin-top: 34px;
	}

	.sech-offer-info {
		grid-template-columns: 36px minmax(0, 1fr);
		gap: 13px;
	}

	.sech-offer-info > span {
		width: 36px;
		height: 36px;
	}

}

/* Mobile global breathing room */
@media (max-width: 767px) {
	.sech-hero,
	.sech-section {
		box-sizing: border-box;
		padding-top: 25px !important;
		padding-right: 25px !important;
		padding-left: 25px !important;
	}

	.sech-hero > .sech-container,
	.sech-section > .sech-container {
		width: 100% !important;
		max-width: 100% !important;
	}
}

/* Mobile hero visual restore */
@media (max-width: 767px) {
	.sech-hero--showcase .sech-hero__inner {
		position: relative;
		display: grid;
		grid-template-areas:
			"copy"
			"features";
		grid-template-columns: 1fr;
		row-gap: 22px;
	}

	.sech-hero--showcase .sech-hero__copy {
		position: relative;
		z-index: 2;
		max-width: none;
		padding-top: 0;
		padding-right: 0;
	}

	.sech-hero--showcase .sech-hero__pill {
		max-width: 100%;
	}

	.sech-hero--showcase .sech-hero__visual {
		position: absolute;
		top: 88px;
		right: 0;
		z-index: 1;
		display: flex !important;
		width: 161px;
		min-height: 0;
		margin: 0 !important;
		padding: 0;
		align-self: start;
		justify-content: center;
		pointer-events: none;
	}

	.sech-hero--showcase .sech-hero__image-wrap {
		width: 161px;
		min-height: 253px;
		align-items: flex-end;
	}

	.sech-hero--showcase .sech-hero__image-wrap::before {
		inset: 30px -14px 30px 12px;
		border-radius: 20px;
		opacity: 0.78;
	}

	.sech-hero--showcase .sech-hero__image-wrap::after {
		left: 50%;
		right: auto;
		bottom: 10px;
		width: 132px;
		height: 38px;
		border-radius: 50%;
		background:
			radial-gradient(ellipse at center, rgba(32, 196, 255, 0.72) 0%, rgba(38, 141, 204, 0.32) 48%, transparent 72%);
		box-shadow: 0 0 28px rgba(32, 196, 255, 0.45);
		opacity: 0.9;
		transform: translateX(-50%);
	}

	.sech-hero--showcase .sech-hero__visual img {
		position: relative;
		z-index: 2;
		width: 155px;
		max-height: 270px;
		object-fit: contain;
		object-position: bottom center;
	}

	.sech-hero--showcase .sech-hero__title {
		font-size: 38px;
		line-height: 1.08;
		padding-right: 136px;
	}

	.sech-hero--showcase .sech-hero__description {
		font-size: 15px;
		line-height: 1.56;
	}
}

@media (max-width: 390px) {
	.sech-hero--showcase .sech-hero__copy {
		padding-right: 0;
	}

	.sech-hero--showcase .sech-hero__pill {
		max-width: 100%;
	}

	.sech-hero--showcase .sech-hero__visual {
		top: 84px;
	}

	.sech-hero--showcase .sech-hero__visual,
	.sech-hero--showcase .sech-hero__image-wrap {
		width: 129px;
	}

	.sech-hero--showcase .sech-hero__image-wrap {
		min-height: 219px;
	}

	.sech-hero--showcase .sech-hero__visual img {
		width: 124px;
		max-height: 239px;
	}

	.sech-hero--showcase .sech-hero__title {
		font-size: 34px;
		padding-right: 106px;
	}
}
