@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
	--sc-navy: #1a2d4e;
	--sc-navy-dark: #0f1e35;
	--sc-navy-light: #243d63;
	--sc-yellow: #f5a800;
	--sc-yellow-light: #ffc53d;
	--sc-red: #e23a32;
	--sc-text: #243046;
	--sc-muted: #8b95a7;
	--sc-bg: #f8fafc;
	--sc-panel-bg: #f5f6f9;
	--sc-border: #e4e7ee;
	--sc-card-border: #f16c6c;
	--sc-logo-width: 260px;
	--sc-logo-height: 48px;
}

* { box-sizing: border-box; }
body {
	margin: 0;
	font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
	color: var(--sc-text);
	background: var(--sc-bg);
}

.sc-container {
	width: min(1240px, calc(100% - 32px));
	margin: 0 auto;
}

.sc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 18px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	text-decoration: none;
	border: 2px solid transparent;
}

.sc-btn-primary {
	background: var(--sc-yellow);
	color: #0f1e35;
}
.sc-btn-primary:hover { background: var(--sc-yellow-light); }

.sc-btn-outline {
	background: #fff;
	border-color: var(--sc-navy);
	color: var(--sc-navy);
}
.sc-btn-outline:hover {
	background: var(--sc-navy);
	color: #fff;
}

.sc-site-header {
	position: sticky;
	top: 0;
	z-index: 200;
}

.sc-header-top {
	background: #fff;
	border-bottom: 1px solid var(--sc-border);
}

.sc-header-top-inner {
	display: flex;
	align-items: center;
	gap: 22px;
	min-height: 84px;
	padding: 12px 0;
}

.sc-brand {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	width: auto;
	max-width: var(--sc-logo-width);
	height: var(--sc-logo-height);
	font-size: 20px;
	font-weight: 900;
	text-decoration: none;
	color: var(--sc-navy);
	letter-spacing: 0.5px;
	overflow: hidden;
}

.sc-brand .custom-logo-link {
	display: inline-flex;
	align-items: center;
	width: auto;
	max-width: var(--sc-logo-width);
	height: var(--sc-logo-height);
	line-height: 1;
}

.sc-brand .custom-logo,
.sc-header-top .custom-logo {
	display: block;
	width: auto;
	max-width: var(--sc-logo-width);
	height: auto;
	max-height: var(--sc-logo-height);
	object-fit: contain;
}

.sc-brand-text {
	color: var(--sc-navy);
	text-decoration: none;
}

.sc-search {
	flex: 1;
	max-width: 700px;
	display: flex;
	border: 1px solid #cfd6e4;
	border-radius: 0;
	overflow: hidden;
	background: #fff;
}

.sc-search input {
	border: 0;
	padding: 12px 16px;
	width: 100%;
	outline: none;
	font-size: 14px;
	color: var(--sc-navy);
}

.sc-search button {
	display: grid;
	place-items: center;
	border: 0;
	background: var(--sc-navy);
	color: #fff;
	width: 48px;
	padding: 0;
	font-weight: 700;
	cursor: pointer;
}

.sc-search button svg {
	width: 18px;
	height: 18px;
}

.sc-header-links {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-left: auto;
}

.sc-header-icon-link {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	min-width: 54px;
	text-decoration: none;
	color: #243046;
	font-size: 12px;
	line-height: 1.1;
	white-space: nowrap;
}

.sc-header-icon-link svg {
	width: 22px;
	height: 22px;
	color: #4b5568;
}

.sc-header-icon-link:hover,
.sc-header-icon-link:hover svg {
	color: var(--sc-navy);
}

.sc-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 16px;
	height: 16px;
	padding: 0 5px;
	background: var(--sc-yellow);
	border-radius: 999px;
	color: #111827;
	font-size: 10px;
	font-weight: 800;
}

.sc-header-cart-link .sc-count {
	position: absolute;
	top: 14px;
	right: 4px;
}

.sc-mobile-menu-toggle {
	display: none;
}

.sc-mobile-menu-toggle {
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid #cfd6e4;
	border-radius: 0;
	background: #fff;
	color: var(--sc-navy);
	cursor: pointer;
	gap: 5px;
	flex-direction: column;
}

.sc-mobile-menu-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition: transform .18s ease, opacity .18s ease;
}

.sc-site-header.is-mobile-menu-open .sc-mobile-menu-toggle span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.sc-site-header.is-mobile-menu-open .sc-mobile-menu-toggle span:nth-child(2) {
	opacity: 0;
}

.sc-site-header.is-mobile-menu-open .sc-mobile-menu-toggle span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.sc-header-nav {
	background: var(--sc-navy);
}

.sc-main-nav {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	margin: 0;
	padding: 0;
}

.sc-main-nav li {
	position: relative;
	margin: 0;
}

.sc-main-nav a {
	display: block;
	padding: 12px 16px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	text-decoration: none;
	color: #fff;
}

.sc-main-nav a:hover { background: var(--sc-navy-light); }

.sc-main-nav .menu-item-has-children > a {
	position: relative;
	padding-right: 30px;
}

.sc-main-nav .menu-item-has-children > a::after {
	content: "";
	position: absolute;
	right: 14px;
	top: 50%;
	width: 6px;
	height: 6px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-65%) rotate(45deg);
	transition: transform .18s ease;
}

.sc-main-nav .menu-item-has-children.is-open > a::after {
	transform: translateY(-35%) rotate(225deg);
}

.sc-main-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 300;
	display: none;
	min-width: 320px;
	margin: 0;
	padding: 8px 0;
	list-style: none;
	background: var(--sc-navy);
	box-shadow: 0 18px 40px rgba(15, 30, 53, 0.22);
}

.sc-main-nav .menu-item-has-children.is-open > .sub-menu {
	display: block;
}

.sc-main-nav .sub-menu a {
	padding: 12px 18px;
	font-size: 13px;
	line-height: 1.25;
	white-space: nowrap;
}

.sc-hero {
	position: relative;
	min-height: 460px;
	overflow: hidden;
}

.sc-hero-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	filter: brightness(0.4);
	opacity: 0;
	transition: opacity 0.45s ease;
}

.sc-hero-slide.active { opacity: 1; }

.sc-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(15, 30, 53, 0.95) 40%, rgba(15, 30, 53, 0.55));
	z-index: 1;
}

.sc-hero-content {
	position: relative;
	z-index: 2;
	padding: 90px 0;
	max-width: 760px;
	color: #fff;
}

.sc-kicker {
	margin: 0 0 14px;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.13em;
	color: var(--sc-yellow);
}

.sc-hero h1 {
	margin: 0;
	font-weight: 900;
	line-height: 1.06;
	font-size: clamp(34px, 4vw, 56px);
}

.sc-hero p {
	max-width: 620px;
	line-height: 1.65;
	color: #d8deea;
}

.sc-hero-dots {
	position: absolute;
	bottom: 18px;
	right: 18px;
	z-index: 3;
	display: flex;
	gap: 8px;
}

.sc-hero-dots button {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	border: 0;
	background: rgba(255, 255, 255, 0.45);
	cursor: pointer;
}

.sc-hero-dots button.active {
	width: 28px;
	background: var(--sc-yellow);
}

.sc-section { padding: 56px 0; }
.sc-section-muted { background: #eef2f8; }
.sc-center { text-align: center; }

.sc-knowledge-wrap .sc-center {
	margin: 28px 0 0;
}

.sc-knowledge-wrap .sc-btn-outline {
	border-radius: 3px;
	padding: 12px 26px;
	font-size: 12px;
}

.sc-section-head h2,
.sc-roi-left h2,
.sc-page-head h1 {
	margin: 0;
	color: var(--sc-navy);
	font-weight: 900;
	line-height: 1.1;
	font-size: clamp(28px, 3.2vw, 42px);
}

.sc-section-head p,
.sc-roi-left p,
.sc-page-head p {
	color: #66758f;
	line-height: 1.6;
}

.sc-icon-bar {
	background: #fff;
	border-top: 0;
	border-bottom: 1px solid #dfe4ec;
}

.sc-icon-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	padding: 0;
	border-left: 1px solid #dfe4ec;
}

.sc-icon-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 172px;
	padding: 24px 16px;
	border: 0;
	border-right: 1px solid #dfe4ec;
	border-radius: 0;
	background: #fff;
	color: var(--sc-text);
	text-decoration: none;
	text-align: center;
	transition: background 0.16s ease;
}

.sc-icon-item:hover,
.sc-icon-item:focus-visible {
	background: #fff5df;
}

.sc-icon-item strong {
	font-size: 14px;
	letter-spacing: 0.05em;
	color: var(--sc-navy);
	line-height: 1;
	text-transform: uppercase;
}

.sc-icon-item small {
	color: #536176;
	font-size: 12px;
	line-height: 1.35;
}

.sc-icon-item em {
	color: var(--sc-yellow);
	font-size: 12px;
	font-style: normal;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.sc-icon-item .sc-icon {
	width: 48px;
	height: 48px;
	border-radius: 999px;
	background: #e6eaf0;
	display: grid;
	place-items: center;
	color: var(--sc-navy);
	line-height: 1;
}

.sc-icon-item:hover .sc-icon,
.sc-icon-item:focus-visible .sc-icon {
	background: #ffdf90;
}

.sc-icon-svg {
	width: 22px;
	height: 22px;
	display: block;
}

.sc-section-products {
	background: #f6f8fb;
	padding: 36px 0;
}

.sc-section-alt {
	background: #f6f8fb;
	border-top: 1px solid var(--sc-border);
}

.sc-section-line-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 28px;
}

.sc-section-line-head h2 {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
	margin: 0;
	font-size: 20px;
	font-weight: 900;
	line-height: 1;
	color: var(--sc-navy);
	text-transform: uppercase;
}

.sc-section-line-head h2::after {
	content: "";
	height: 1px;
	flex: 1;
	background: #dfe4ec;
	margin-left: 4px;
}

.sc-section-icon {
	width: 36px;
	height: 36px;
	border-radius: 999px;
	background: #e1e7ef;
	display: inline-grid;
	place-items: center;
	color: var(--sc-navy);
	flex: 0 0 auto;
}

.sc-section-icon svg {
	width: 16px;
	height: 16px;
}

.sc-section-line-head a {
	color: var(--sc-navy);
	font-size: 12px;
	font-weight: 900;
	text-decoration: none;
	white-space: nowrap;
	text-transform: uppercase;
}

.sc-section-line-head a:hover {
	color: #0f3d7a;
}

.sc-products-grid {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	padding: 0;
	margin: 0;
	list-style: none;
	grid-auto-flow: row;
	align-items: stretch;
}

.woocommerce ul.products.sc-products-grid::before,
.woocommerce ul.products.sc-products-grid::after,
.woocommerce-page ul.products.sc-products-grid::before,
.woocommerce-page ul.products.sc-products-grid::after,
ul.products.sc-products-grid::before,
ul.products.sc-products-grid::after {
	content: none !important;
	display: none !important;
}

.woocommerce ul.products.sc-products-grid li.product,
.woocommerce-page ul.products.sc-products-grid li.product,
ul.products.sc-products-grid li.product {
	float: none !important;
	clear: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	grid-column: auto !important;
	grid-row: auto !important;
}

.sc-product-card {
	float: none !important;
	clear: none !important;
	grid-column: auto !important;
	grid-row: auto !important;
	margin: 0 !important;
	width: auto !important;
	background: #fff;
	border: 1px solid #dfe5ee;
	border-radius: 2px;
	overflow: hidden;
}

.sc-product-card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	overflow: hidden;
}

.sc-product-thumb {
	position: relative;
	isolation: isolate;
	background: #f7f9fc;
	height: 286px;
	padding: 16px;
	overflow: hidden;
	display: grid;
	place-items: center;
}

.sc-product-thumb img {
	position: static !important;
	float: none !important;
	display: block !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	bottom: auto !important;
	transform: none !important;
	width: auto !important;
	height: auto !important;
	max-width: 100% !important;
	max-height: 252px !important;
	object-fit: contain;
	margin: 0 !important;
	box-shadow: none !important;
	z-index: 1;
}

.sc-product-thumb img + img {
	display: none !important;
}

.sc-product-body {
	position: relative;
	z-index: 2;
	background: #fff;
	padding: 12px 12px 12px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-height: 132px;
}

.sc-product-brand {
	margin: 0;
	font-size: 12px;
	font-weight: 800;
	color: var(--sc-yellow);
	text-transform: uppercase;
	letter-spacing: 0.07em;
}

.sc-product-card .woocommerce-loop-product__title {
	position: static !important;
	float: none !important;
	clear: both !important;
	inset: auto !important;
	transform: none !important;
	margin: 0;
	font-size: 13px !important;
	font-weight: 900;
	color: var(--sc-navy);
	line-height: 1.18;
	min-height: 3.55em;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.sc-product-card .woocommerce-loop-product__title a {
	color: inherit;
	text-decoration: none;
}

.sc-product-sku {
	position: static !important;
	float: none !important;
	inset: auto !important;
	transform: none !important;
	margin: 0;
	font-size: 12px;
	color: #77839b;
}

.sc-product-bottom {
	position: static !important;
	inset: auto !important;
	transform: none !important;
	margin-top: auto;
	display: flex;
	align-items: stretch;
	flex-direction: column;
	justify-content: flex-end;
	gap: 12px;
}

.sc-product-price {
	position: static !important;
	float: none !important;
	inset: auto !important;
	transform: none !important;
	margin: 0 !important;
	font-size: 20px !important;
	font-weight: 900;
	color: var(--sc-navy);
	line-height: 1.2;
}

.sc-price-net {
	display: inline-block;
	font: inherit;
	color: inherit;
}

.sc-price-gross {
	color: #64748b;
	font-size: 12px;
	font-weight: 500;
	white-space: nowrap;
}

.sc-product-bottom .sc-btn {
	position: static !important;
	inset: auto !important;
	transform: none !important;
	white-space: nowrap;
	padding: 0 10px;
	align-self: stretch;
	width: 100%;
}

.sc-product-actions {
	display: block;
}

.sc-product-actions-row {
	display: grid;
	grid-template-columns: 1fr 33px;
	gap: 8px;
}

.sc-btn-cart {
	border: 1px solid #cbd5e1;
	background: #fff;
	color: var(--sc-navy);
	border-radius: 0;
	font-size: 13px;
	font-weight: 900;
	height: 34px;
	line-height: 1;
	gap: 4px;
}

.sc-btn-cart:hover {
	background: var(--sc-navy);
	color: #fff;
}

.sc-btn-arrow {
	border: 1px solid #cbd5e1;
	background: #fff;
	color: var(--sc-navy);
	border-radius: 0;
	font-size: 17px;
	font-weight: 900;
	padding: 0;
	height: 100%;
	min-height: 34px;
	line-height: 1;
}

.sc-cart-icon {
	width: 13px;
	height: 13px;
	display: block;
}

.sc-btn-arrow:hover {
	background: var(--sc-navy);
	color: #fff;
}

.sc-favorite-btn {
	position: absolute;
	top: 9px;
	right: 9px;
	z-index: 4;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	border: 0;
	background: #fff;
	color: #9aa5b5;
	font-size: 22px;
	line-height: 1;
	display: grid;
	place-items: center;
	border: 1px solid #edf1f6;
	box-shadow: 0 4px 12px rgba(16, 24, 40, 0.1);
	cursor: pointer;
}

.sc-favorite-btn:hover {
	color: #ef4444;
	transform: scale(1.05);
}

.woocommerce ul.products li.product .button {
	display: none !important;
}

.sc-product-card .added_to_cart,
.sc-product-card .star-rating {
	display: none !important;
}

.sc-roi-box {
	display: grid;
	grid-template-columns: 40% 60%;
	width: 100%;
	max-width: none;
	margin: 0 auto;
	background: #fff;
	border: 1px solid #e4e7ee;
	border-radius: 10px;
	box-shadow: 0 12px 30px rgba(15, 30, 53, 0.08);
	overflow: hidden;
}

.sc-roi-left,
.sc-roi-right { padding: 56px 38px; }

.sc-roi-left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-right: 1px solid var(--sc-border);
	background: #fff;
}

.sc-roi-left h2 {
	font-size: 30px;
	max-width: 330px;
}

.sc-roi-left p {
	max-width: 340px;
	font-size: 14px;
}

.sc-roi-right label {
	display: block;
	margin: 0 0 10px;
	font-size: 12px;
	font-weight: 700;
	color: #546179;
}

.sc-roi-label {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 24px;
	color: var(--sc-navy);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.sc-roi-label span {
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: var(--sc-yellow);
}

.sc-roi-right label strong {
	float: right;
	color: var(--sc-navy);
	font-size: 16px;
}

.sc-roi-right input[type="range"] {
	width: 100%;
	margin: 0 0 24px;
	accent-color: var(--sc-yellow);
}

.sc-roi-total {
	margin-top: 4px;
	padding: 20px 22px;
	background: var(--sc-navy);
	border-radius: 8px 8px 0 0;
}

.sc-roi-total p {
	margin: 0;
	font-size: 12px;
	color: #c6d2ea;
	text-transform: uppercase;
}

.sc-roi-total h3 {
	margin: 8px 0 0;
	font-size: 28px;
	color: var(--sc-yellow);
}

.sc-roi-cta-wrap {
	margin: 0;
}

.sc-roi-cta-wrap .sc-btn {
	width: 100%;
	border-radius: 0 0 8px 8px;
	padding: 16px 20px;
}

.sc-banner-service-wrap,
.sc-banner-precision-wrap {
	background: #fff;
	padding-top: 28px;
	padding-bottom: 28px;
}

.sc-banner-service,
.sc-banner-precision {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	border-radius: 2px;
	color: #fff;
}

.sc-banner-service {
	min-height: 176px;
	padding: 42px 46px;
	background:
		linear-gradient(90deg, rgba(10, 20, 40, 0.96) 0%, rgba(10, 20, 40, 0.9) 48%, rgba(10, 20, 40, 0.64) 100%),
		url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=1600&q=80') center/cover;
}

.sc-banner-precision {
	min-height: 132px;
	padding: 34px 38px;
	background:
		linear-gradient(135deg, #14294c 0%, #1b3158 74%, #243d68 100%);
}

.sc-banner-precision::after {
	content: "";
	position: absolute;
	right: 42px;
	top: 50%;
	width: 156px;
	height: 156px;
	border: 8px solid rgba(255, 255, 255, 0.09);
	border-radius: 999px;
	transform: translateY(-50%);
}

.sc-banner-service h3,
.sc-banner-precision h3 {
	margin: 0 0 8px;
	font-size: 27px;
	font-weight: 900;
	line-height: 1.1;
	text-transform: uppercase;
}

.sc-banner-precision h3 {
	font-size: 26px;
	text-transform: none;
}

.sc-banner-service p,
.sc-banner-precision p {
	margin: 0;
	color: #dde8ff;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.45;
	max-width: 650px;
}

.sc-banner-precision p {
	color: var(--sc-yellow);
	font-size: 14px;
	font-weight: 900;
}

.sc-banner-service .sc-btn,
.sc-banner-precision .sc-btn {
	position: relative;
	z-index: 1;
	flex: 0 0 auto;
	min-width: 230px;
	border-radius: 0;
	padding: 15px 24px;
	font-size: 12px;
	line-height: 1.15;
	text-align: center;
}

.sc-banner-precision .sc-btn {
	min-width: 174px;
	padding: 13px 20px;
}

.sc-knowledge-wrap {
	background: #fff;
	padding: 54px 0 52px;
}

.sc-knowledge-head {
	display: block;
	margin-bottom: 26px;
	text-align: center;
}

.sc-knowledge-head h2 {
	margin: 0 0 8px;
	font-size: 22px;
	font-weight: 900;
	color: var(--sc-navy);
	text-transform: uppercase;
}

.sc-knowledge-head p {
	margin: 0;
	color: #60708a;
	font-size: 12px;
}

.sc-knowledge-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	width: 100%;
	max-width: none;
	margin: 0 auto;
	align-items: stretch;
}

.sc-knowledge-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--sc-border);
	border-radius: 2px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
}

.sc-knowledge-image {
	height: clamp(190px, 16vw, 245px);
	background: #d8dee9;
	overflow: hidden;
	flex: 0 0 auto;
}

body .sc-knowledge-wrap .sc-knowledge-grid .sc-knowledge-card .sc-knowledge-image {
	aspect-ratio: auto !important;
	height: 245px !important;
	min-height: 245px !important;
	max-height: 245px !important;
	overflow: hidden !important;
}

.sc-knowledge-image img {
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	object-fit: cover;
	display: block !important;
}

body .sc-knowledge-wrap .sc-knowledge-grid .sc-knowledge-card .sc-knowledge-image > img {
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	object-fit: cover !important;
	display: block !important;
}

.sc-knowledge-body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 12px 13px 14px;
	min-height: 118px;
}

.sc-knowledge-body h3 {
	margin: 0 0 10px;
	font-size: 12px;
	line-height: 1.35;
	font-weight: 900;
	color: var(--sc-navy);
}

.sc-knowledge-body span {
	margin-top: auto;
	color: var(--sc-yellow);
	font-size: 11px;
	font-weight: 900;
}

.sc-interview-wrap {
	background: #eef2f8;
	padding: 34px 0;
}

.sc-interview-card {
	display: grid;
	grid-template-columns: 140px minmax(0, 1fr) 250px;
	gap: 24px;
	align-items: center;
	width: 100%;
	max-width: none;
	margin: 0 auto;
	padding: 24px 28px;
	background: #fff;
	border: 1px solid var(--sc-border);
	border-radius: 7px;
	overflow: hidden;
	color: inherit;
	text-decoration: none;
}

.sc-interview-avatar {
	width: 86px;
	height: 86px;
	border-radius: 999px;
	border: 4px solid var(--sc-yellow);
	object-fit: cover;
	display: block;
	justify-self: center;
}

.sc-interview-side {
	width: 100%;
	height: 100px;
	border-radius: 4px;
	object-fit: cover;
	display: block;
}

.sc-interview-content {
	padding: 0;
}

.sc-interview-content .sc-kicker {
	margin: 0 0 5px;
	color: var(--sc-yellow);
	font-size: 10px;
	letter-spacing: 0.08em;
}

.sc-interview-content h3 {
	margin: 0 0 8px;
	color: var(--sc-navy);
	line-height: 1.22;
	font-size: 15px;
	font-weight: 900;
}

.sc-interview-content p {
	margin: 0 0 12px;
	color: #51607a;
	font-size: 12px;
	line-height: 1.45;
}

.sc-interview-content span {
	color: var(--sc-yellow);
	font-size: 11px;
	font-weight: 900;
}

.sc-oemeta-wrap {
	background: #eef2f8;
	padding-top: 18px;
}

.sc-oemeta-banner {
	position: relative;
	display: block;
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	background: #0d2d5c;
}

.sc-oemeta-banner > img:first-child {
	width: 100%;
	height: clamp(220px, 30vw, 320px);
	display: block;
	object-fit: cover;
	filter: brightness(0.58);
}

.sc-oemeta-logo {
	position: absolute;
	left: 24px;
	top: 20px;
	width: 230px;
	max-width: 40%;
	background: #fff;
	padding: 8px 10px;
	border-radius: 8px;
}

.sc-oemeta-banner p {
	position: absolute;
	left: 24px;
	bottom: 18px;
	margin: 0;
	color: #fff;
	font-size: clamp(24px, 3vw, 40px);
	font-weight: 900;
	line-height: 1.05;
}

.sc-newsletter-wrap {
	background: #f3f6fb;
	padding: 46px 0 56px;
}

.sc-newsletter-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	align-items: start;
}

.sc-newsletter-head h2 {
	margin: 0 0 10px;
	font-size: clamp(28px, 3vw, 44px);
	line-height: 1.08;
	color: var(--sc-navy);
}

.sc-newsletter-head p {
	margin: 0;
	color: #60708a;
	line-height: 1.65;
}

.sc-newsletter-form {
	background: #fff;
	border: 1px solid var(--sc-border);
	border-radius: 12px;
	padding: 14px;
}

.sc-newsletter-row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px;
	margin-bottom: 10px;
}

.sc-newsletter-row input[type="email"] {
	border: 1px solid #cfd6e4;
	border-radius: 8px;
	padding: 12px 14px;
	font-size: 15px;
}

.sc-newsletter-row button {
	border: 0;
	border-radius: 8px;
	padding: 0 16px;
	font-weight: 800;
	background: var(--sc-navy);
	color: #fff;
	cursor: pointer;
}

.sc-newsletter-form label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	color: #6c7890;
	font-size: 12px;
	line-height: 1.4;
}

.sc-page-head,
.sc-shop-hero {
	padding: 70px 0 68px;
	background: linear-gradient(135deg, #0a1428 0%, #0f1e35 65%, #1a2d4e 100%);
	text-align: center;
}

.sc-page-head h1,
.sc-page-head p,
.sc-shop-hero h1,
.sc-shop-hero p { color: #fff; }

.sc-page-head p,
.sc-shop-hero p { opacity: 0.84; }

.sc-shop-hero .sc-kicker {
	margin: 0 0 6px;
	color: var(--sc-yellow);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.sc-shop-hero h1 {
	margin: 0 0 10px;
	font-size: clamp(38px, 5vw, 58px);
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: -0.035em;
}

.sc-shop-hero p:not(.sc-kicker) {
	margin: 0;
	font-size: 15px;
}

.sc-shop-section {
	padding-top: 30px;
	background: #fff;
}

.sc-shop-container {
	width: min(1120px, calc(100% - 32px));
}

.sc-shop-filters {
	background: #fff;
	border: 0;
	border-radius: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 18px;
}

.sc-shop-filter-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	width: 100%;
}

.sc-shop-filter-row-secondary {
	align-items: flex-start;
}

.sc-shop-filters input,
.sc-shop-filters select {
	height: 38px;
	padding: 0 12px;
	border: 1px solid #cfd6e4;
	border-radius: 4px;
	background: #fff;
	color: var(--sc-navy);
	font-size: 13px;
}

.sc-shop-filters input[type="text"] {
	width: 230px;
}

.sc-shop-filters select {
	min-width: 145px;
}

.sc-shop-filters .sc-btn-primary {
	height: 38px;
	padding: 0 15px;
	border-radius: 4px;
	font-size: 12px;
	min-width: 88px;
}

.sc-shop-pills {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.sc-shop-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 0 18px;
	border: 1px solid #d8dee9;
	border-radius: 999px;
	background: #fff;
	color: #516078;
	font-size: 12px;
	font-weight: 900;
	text-decoration: none;
	white-space: nowrap;
}

.sc-shop-pill:hover,
.sc-shop-pill.is-active {
	border-color: var(--sc-navy);
	background: var(--sc-navy);
	color: #fff;
}

.sc-shop-count {
	margin: 0 0 20px;
	color: #9aa4b4;
	font-size: 13px;
}

.sc-shop-section .woocommerce-result-count,
.sc-shop-section .woocommerce-ordering {
	display: none !important;
}

.sc-breadcrumbs {
	font-size: 12px;
	color: #6b7280;
	margin-bottom: 14px;
}

.sc-breadcrumbs span { margin: 0 6px; }

.sc-single-wrap .product {
	background: transparent;
}

.sc-single-product {
	display: grid;
	gap: 36px;
}

.sc-single-main {
	display: grid;
	grid-template-columns: minmax(480px, 0.96fr) minmax(0, 1fr);
	gap: 42px;
	align-items: start;
}

.sc-single-gallery {
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 0;
}

.sc-single-summary {
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 0;
}

.sc-single-main-image-wrap {
	margin: 0;
	background: #fff;
	border: 1px solid var(--sc-border);
	border-radius: 0;
	min-height: 560px;
	display: grid;
	place-items: center;
	position: relative;
}

.sc-single-main-image {
	width: 100%;
	max-height: 535px;
	object-fit: contain;
	padding: 56px;
}

.sc-single-gallery-badge {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 0 12px;
	border-radius: 3px;
	background: #36a852;
	color: #fff;
	font-size: 10px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.sc-single-thumbs {
	margin-top: 12px;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.sc-single-thumb {
	width: 64px;
	height: 64px;
	background: #fff;
	border: 2px solid #d4dae5;
	border-radius: 2px;
	padding: 4px;
	cursor: pointer;
}

.sc-single-thumb.is-active {
	border-color: var(--sc-navy);
}

.sc-single-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.sc-single-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 8px;
	color: #8b95a7;
	font-size: 12px;
	font-weight: 600;
}

.sc-single-summary .product_title {
	margin: 0 0 14px;
	font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
	font-size: 32px;
	line-height: 1.08;
	font-weight: 900;
	color: var(--sc-navy);
	letter-spacing: -0.03em;
	max-width: 600px;
}

.sc-single-price-block {
	margin: 22px 0 6px;
}

.sc-single-price-label {
	color: #7a8497;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin-bottom: 3px;
}

.sc-single-price {
	margin: 0 !important;
	font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
	font-size: 36px !important;
	font-weight: 900;
	line-height: 1;
	color: var(--sc-navy);
	display: flex;
	align-items: baseline;
	gap: 10px;
	flex-wrap: wrap;
}

.sc-single-price small {
	color: #7a8497;
	font-size: 13px;
	font-weight: 500;
}

.sc-single-desc {
	color: #2f3c54;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.58;
	max-width: 600px;
}

.sc-single-sale-note {
	margin: 14px 0 0;
	color: #d83a2f;
	font-size: 13px;
	font-weight: 900;
}

.sc-single-cart-wrap {
	margin-top: 14px;
}

.sc-single-cart-wrap form.cart {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: nowrap;
	margin: 0;
	width: 100%;
}

.sc-single-cart-wrap .quantity .qty {
	height: 42px;
	width: 44px;
	padding: 8px;
	border: 0;
	border-radius: 0;
	text-align: center;
	font-weight: 800;
	color: var(--sc-navy);
	background: #fff;
}

.sc-single-cart-wrap .quantity {
	display: inline-grid;
	grid-template-columns: 34px 44px 34px;
	align-items: center;
	border: 1px solid #cfd6e4;
	background: #fff;
	height: 42px;
	margin: 0 !important;
}

.sc-qty-btn {
	height: 40px;
	border: 0;
	background: #fff;
	color: var(--sc-navy);
	font-weight: 900;
	cursor: pointer;
}

.sc-qty-btn:hover {
	background: #f1f3f7;
}

.sc-single-cart-wrap .single_add_to_cart_button.button {
	background: #dc2626 !important;
	border: 0 !important;
	border-radius: 2px !important;
	min-height: 42px;
	padding: 0 24px !important;
	text-transform: uppercase;
	flex: 1;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.02em;
}

.sc-single-stock {
	color: #20a34a;
	font-size: 13px;
	font-weight: 800;
	margin: 8px 0 0;
}

.sc-wholesale-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 42px;
	margin-top: 10px;
	border: 2px solid var(--sc-navy);
	border-radius: 2px;
	color: var(--sc-navy);
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
}

.sc-wholesale-btn:hover {
	background: var(--sc-navy);
	color: #fff;
}

.sc-single-trust-grid,
.sc-single-spec-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 9px;
	margin-top: 20px;
}

.sc-single-spec-grid {
	margin-top: 10px;
}

.sc-single-trust,
.sc-single-spec {
	background: #f1f3f7;
	border-radius: 2px;
	padding: 13px 14px;
	min-height: 62px;
}

.sc-single-trust {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.sc-single-trust-icon {
	width: 18px;
	height: 18px;
	margin-top: 0;
	color: var(--sc-navy);
	flex: 0 0 auto;
}

.sc-single-trust-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.sc-single-trust strong,
.sc-single-spec strong {
	display: block;
	color: var(--sc-navy);
	font-size: 12px;
	line-height: 1.2;
}

.sc-single-trust small,
.sc-single-spec span {
	display: block;
	color: #7a8497;
	font-size: 11px;
	line-height: 1.25;
}

.sc-single-spec span {
	margin-bottom: 3px;
	font-weight: 700;
	text-transform: uppercase;
}

.sc-single-tds-wrap {
	margin: 14px 0 0;
}

.sc-single-tds-wrap .sc-tds-button {
	min-height: 32px;
	padding: 0.45rem 0.75rem;
	font-size: 11px;
}

.sc-single-tds-wrap .sc-tds-button svg {
	width: 15px;
	height: 15px;
}

.sc-tds-button-disabled {
	opacity: 0.58;
	cursor: not-allowed;
}

.sc-single-category {
	margin: 16px 0 0;
	color: #3f4b62;
}

.sc-single-category a {
	color: #0d4eb3;
}

.sc-single-tabs-wrap {
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 0;
}

.sc-product-support {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
	gap: 58px;
	align-items: center;
	padding: 42px 0;
}

.sc-product-support-copy {
	max-width: 620px;
}

.sc-product-support-kicker {
	margin: 0 0 12px;
	color: #df1f26;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.sc-product-support h2 {
	margin: 0 0 18px;
	color: var(--sc-navy);
	font-size: 34px;
	font-weight: 900;
	line-height: 1.12;
}

.sc-product-support h2 span {
	color: #4b5568;
	font-weight: 400;
}

.sc-product-support-copy > p:not(.sc-product-support-kicker) {
	margin: 0;
	max-width: 640px;
	color: #344155;
	font-size: 15px;
	line-height: 1.6;
}

.sc-product-support-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 22px;
}

.sc-product-support-primary,
.sc-product-support-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 0 22px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 900;
	text-decoration: none;
	text-transform: uppercase;
}

.sc-product-support-primary {
	background: #e5252a;
	color: #fff;
}

.sc-product-support-primary:hover {
	background: #c91f24;
	color: #fff;
}

.sc-product-support-secondary {
	background: transparent;
	border: 1px solid #c5cbd5;
	color: var(--sc-navy);
}

.sc-product-support-secondary:hover {
	border-color: var(--sc-navy);
	background: #fff;
}

.sc-product-support-panel {
	background: var(--sc-navy);
	border-radius: 10px;
	padding: 28px 30px 24px;
	color: #fff;
}

.sc-product-support-panel h3 {
	margin: 0 0 22px;
	color: #b8c1d0;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.sc-product-support-contact {
	display: flex;
	gap: 14px;
	margin-bottom: 22px;
}

.sc-product-support-contact > span {
	color: var(--sc-yellow);
	font-size: 22px;
	line-height: 1;
	width: 20px;
	text-align: center;
}

.sc-product-support-contact p {
	margin: 0;
}

.sc-product-support-contact small {
	display: block;
	margin-bottom: 4px;
	color: #aab4c5;
	font-size: 12px;
	font-style: normal;
	text-transform: uppercase;
}

.sc-product-support-contact strong {
	display: block;
	color: #fff;
	font-size: 15px;
	line-height: 1.25;
}

.sc-product-support-contact em {
	display: block;
	margin-top: 3px;
	color: #aab4c5;
	font-size: 12px;
	font-style: normal;
}

.sc-product-support-note {
	margin-top: 4px;
	padding: 16px;
	border: 1px solid rgba(229, 37, 42, 0.55);
	border-radius: 4px;
	background: rgba(229, 37, 42, 0.22);
	color: #fff;
	font-size: 12px;
	line-height: 1.65;
}

.sc-product-support-note strong {
	color: #ff7b82;
}

.single_add_to_cart_button.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	background: #dc2626 !important;
	border-radius: 8px;
	font-weight: 800;
	color: #fff !important;
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
	background: #dc2626 !important;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border-radius: 8px;
}

.sc-site-footer {
	margin-top: 64px;
	background: var(--sc-navy-dark);
	color: #d3d9e6;
}

.sc-footer-newsletter {
	background: var(--sc-navy);
	color: #fff;
	padding: 44px 0 36px;
}

.sc-footer-newsletter-inner {
	max-width: 900px;
	text-align: center;
}

.sc-footer-newsletter-head p {
	margin: 0 0 4px;
	color: var(--sc-yellow);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.sc-footer-newsletter-head h2 {
	margin: 0 0 8px;
	color: #fff;
	font-size: 26px;
	font-weight: 900;
	line-height: 1.1;
	text-transform: uppercase;
}

.sc-footer-newsletter-head > span {
	display: block;
	margin: 0 auto 22px;
	max-width: 640px;
	color: #c7d0df;
	font-size: 12px;
	line-height: 1.5;
}

.sc-footer-newsletter-form {
	max-width: 690px;
	margin: 0 auto;
}

.sc-footer-newsletter-row {
	display: grid;
	grid-template-columns: 1fr 128px;
	gap: 12px;
	margin-bottom: 12px;
}

.sc-footer-newsletter-row input[type="email"] {
	width: 100%;
	height: 44px;
	border: 0;
	border-radius: 3px;
	padding: 0 16px;
	font-size: 13px;
}

.sc-footer-newsletter-row button {
	height: 44px;
	border: 0;
	border-radius: 3px;
	background: var(--sc-yellow);
	color: var(--sc-navy);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	cursor: pointer;
}

.sc-footer-newsletter-form label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0;
	color: #aeb9cf;
	font-size: 11px;
	line-height: 1.45;
	text-align: left;
}

.sc-footer-newsletter-form input[type="checkbox"] {
	margin-top: 2px;
	flex: 0 0 auto;
}

.sc-footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 56px;
	padding: 54px 0 46px;
}

.sc-footer-grid h4 {
	margin: 0 0 18px;
	color: var(--sc-yellow);
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 0.08em;
}

.sc-footer-grid p,
.sc-footer-grid a {
	margin: 0 0 10px;
	color: #aeb9cf;
	text-decoration: none;
	font-size: 12px;
	line-height: 1.5;
}

.sc-footer-grid a:hover {
	color: #fff;
}

.sc-footer-logo {
	display: inline-flex;
	align-items: center;
	margin: 0 0 18px;
	text-decoration: none;
}

.sc-footer-logo img {
	display: block;
	width: auto;
	max-width: 180px;
	max-height: 64px;
	object-fit: contain;
}

.sc-footer-logo span {
	color: #fff;
	font-size: 20px;
	font-weight: 900;
}

.sc-footer-about > p {
	max-width: 250px;
	color: #aeb9cf;
	font-size: 12px;
	line-height: 1.55;
}

.sc-footer-socials {
	display: flex;
	gap: 9px;
	margin-top: 18px;
}

.sc-footer-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	margin: 0;
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.1);
	color: #d3d9e6;
	font-size: 11px;
	font-weight: 800;
}

.sc-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 0 20px;
	font-size: 12px;
	color: #aeb9cf;
}

.sc-footer-bottom strong {
	display: inline-block;
	margin-left: 4px;
	padding: 2px 7px;
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 10px;
}

/* Product tabs like React design */
.single-product .woocommerce-tabs {
	margin-top: 0;
}

.single-product .woocommerce-tabs ul.tabs {
	display: flex;
	gap: 0;
	border-bottom: 1px solid var(--sc-border);
	margin: 0 0 1.2rem;
	padding: 0;
	overflow-x: auto;
}

.single-product .woocommerce-tabs ul.tabs::before {
	display: none;
}

.single-product .woocommerce-tabs ul.tabs li {
	border: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
}

.single-product .woocommerce-tabs ul.tabs li::before,
.single-product .woocommerce-tabs ul.tabs li::after {
	display: none !important;
}

.single-product .woocommerce-tabs ul.tabs li a {
	display: inline-block;
	padding: 0.85rem 1.1rem;
	font-weight: 800;
	font-size: 0.93rem;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	color: #596271;
	white-space: nowrap;
}

.single-product .woocommerce-tabs ul.tabs li.active a {
	background: var(--sc-navy);
	color: #fff;
}

.single-product .woocommerce-tabs ul.tabs li + li {
	margin-left: 2px !important;
}

.single-product .woocommerce-tabs .panel {
	background: transparent;
	margin: 0;
	padding: 0;
}

.sc-single-related-wrap {
	background: #fff;
	border: 1px solid var(--sc-border);
	border-radius: 12px;
	padding: 18px 14px;
}

.sc-single-related-wrap > h2 {
	margin: 0 0 14px;
	font-size: 36px;
	font-weight: 900;
	color: var(--sc-navy);
}

.single-product .sc-single-related-wrap .related.products > h2 {
	margin: 0 0 18px;
	font-size: 30px;
	font-weight: 900;
	color: var(--sc-navy);
}

.single-product .sc-single-related-wrap ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
}

.single-product .sc-single-related-wrap ul.products::before,
.single-product .sc-single-related-wrap ul.products::after {
	content: none !important;
	display: none !important;
}

.single-product .sc-single-related-wrap ul.products li.product {
	float: none !important;
	clear: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.single-product .sc-single-related-wrap .sc-product-card {
	width: 100% !important;
	height: 100%;
}

.sc-tds-wrap {
	display: flex;
	justify-content: flex-end;
	margin: 1rem 0;
}

.sc-tds-button {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.65rem 1rem;
	border: 1px solid #cfd6e4;
	border-radius: 0.35rem;
	color: var(--sc-navy) !important;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	background: #fff;
}

.sc-panel-wrap {
	margin-bottom: 1.2rem;
}

.sc-panel-title {
	margin: 0 0 1.25rem;
	color: var(--sc-muted);
	font-size: 1.2rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.sc-features-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.sc-feature-card {
	background: var(--sc-panel-bg);
	border-top: 2px solid var(--sc-card-border);
	border-radius: 0.4rem;
	padding: 1.2rem;
}

.sc-feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	color: var(--sc-navy);
	margin-bottom: 0.7rem;
}

.sc-feature-icon svg {
	display: block;
	width: 1.55rem;
	height: 1.55rem;
}

.sc-feature-card h4 {
	margin: 0 0 0.6rem;
	color: var(--sc-navy);
	font-size: 1.12rem;
	font-weight: 800;
}

.sc-feature-card p {
	margin: 0;
	color: var(--sc-text);
	line-height: 1.6;
}

.sc-tech-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
}

.sc-tech-table thead th {
	background: var(--sc-navy);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.sc-tech-table th,
.sc-tech-table td {
	padding: 0.85rem 1rem;
	border-bottom: 1px solid var(--sc-border);
	text-align: left;
}

.sc-tech-table tbody th {
	width: 34%;
	color: #4b576d;
	font-weight: 700;
	background: #fafbfe;
}

.sc-tech-table td {
	color: #1f2c44;
}

.sc-tech-notice {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-top: 1.5rem;
	padding: 1rem;
	border: 1px solid #f6d58b;
	border-radius: 0.35rem;
	background: #fff7e4;
	color: var(--sc-navy);
}

.sc-tech-notice span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 999px;
	background: var(--sc-yellow);
	color: var(--sc-navy);
	font-weight: 900;
	line-height: 1;
	flex: 0 0 auto;
}

.sc-tech-notice p {
	margin: 0;
	font-weight: 700;
}

.sc-application-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 4rem;
}

.sc-application-list ul {
	display: grid;
	gap: 0.7rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sc-application-list li {
	position: relative;
	padding-left: 1rem;
	color: var(--sc-text);
	font-weight: 700;
	line-height: 1.45;
}

.sc-application-list li::before {
	content: "";
	position: absolute;
	top: 0.55em;
	left: 0;
	width: 0.43rem;
	height: 0.43rem;
	border-radius: 999px;
	background: var(--sc-navy);
}

.sc-application-materials li::before {
	background: var(--sc-red, #e23a32);
}

.sc-usage-steps {
	display: grid;
	gap: 1.05rem;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: sc-usage;
}

.sc-usage-steps li {
	display: grid;
	grid-template-columns: 3.2rem minmax(0, 1fr);
	gap: 1.25rem;
	position: relative;
	padding: 0.1rem 0 1.1rem;
}

.sc-usage-steps li:not(:last-child)::before {
	content: "";
	position: absolute;
	left: 1.55rem;
	top: 2rem;
	bottom: -0.3rem;
	width: 2px;
	background: #dce3ef;
}

.sc-usage-number {
	color: var(--sc-red, #e23a32) !important;
	font-size: 1.05rem;
	font-weight: 900;
	line-height: 1.25;
	text-align: center;
}

.single-product .woocommerce-tabs .sc-usage-number {
	color: var(--sc-red, #e23a32) !important;
}

.sc-usage-steps h4 {
	margin: 0 0 0.3rem;
	color: var(--sc-navy);
	font-size: 1rem;
	font-weight: 900;
}

.sc-usage-steps p {
	margin: 0;
	color: var(--sc-text);
	line-height: 1.6;
}

.sc-wysiwyg {
	color: #243046;
	line-height: 1.75;
}

.sc-wysiwyg p {
	margin: 0 0 0.9rem;
}

@media (max-width: 1100px) {
	.sc-products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.single-product .sc-single-related-wrap ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.sc-roi-box { grid-template-columns: 1fr; }
	.sc-roi-left { border-bottom: 1px solid var(--sc-border); border-right: 0; }
	.sc-shop-filters { grid-template-columns: 1fr 1fr; }
	.sc-icon-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.sc-knowledge-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.sc-interview-card { grid-template-columns: 110px minmax(0, 1fr) 180px; }
	.sc-newsletter-inner { grid-template-columns: 1fr; }
	.sc-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.sc-product-support {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.sc-application-grid {
		gap: 2rem;
	}
	.sc-events-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.sc-events-webinar-grid,
	.sc-event-form-card {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 800px) {
	.sc-site-header {
		position: sticky;
		top: 0;
	}
	.sc-header-top-inner {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 44px;
		gap: 10px;
		min-height: 0;
		padding: 10px 0;
	}
	.sc-brand {
		max-width: min(230px, 100%);
		height: 44px;
	}
	.sc-brand .custom-logo-link {
		height: 44px;
		max-width: 230px;
	}
	.sc-brand .custom-logo,
	.sc-header-top .custom-logo {
		max-width: 230px;
		max-height: 44px;
	}
	.sc-search {
		grid-column: 1 / -1;
		grid-row: 2;
		max-width: none;
		width: 100%;
		order: 3;
	}
	.sc-search input {
		min-width: 0;
		padding: 11px 12px;
		font-size: 13px;
	}
	.sc-search button {
		width: 46px;
		flex: 0 0 46px;
	}
	.sc-header-links {
		display: none;
	}
	.sc-mobile-menu-toggle {
		display: inline-flex !important;
		grid-column: 2;
		grid-row: 1;
		justify-self: end;
		align-self: center;
	}
	.sc-header-nav {
		display: none;
		max-height: calc(100vh - 112px);
		overflow-y: auto;
		border-top: 1px solid rgba(255,255,255,.12);
		box-shadow: 0 18px 34px rgba(8, 18, 35, .22);
	}
	.sc-site-header.is-mobile-menu-open .sc-header-nav {
		display: block;
	}
	.sc-main-nav {
		display: block;
		overflow: visible;
		flex-wrap: nowrap;
		padding: 8px 0 14px;
	}
	.sc-main-nav li {
		border-bottom: 1px solid rgba(255,255,255,.1);
	}
	.sc-main-nav a {
		padding: 15px 4px;
		font-size: 13px;
		line-height: 1.25;
	}
	.sc-main-nav .sub-menu {
		position: static;
		min-width: 0;
		width: 100%;
		padding: 0 0 8px;
		box-shadow: none;
		background: var(--sc-navy-dark);
	}
	.sc-main-nav .sub-menu a {
		white-space: normal;
		padding: 12px 18px;
		font-size: 12px;
	}
	.sc-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.single-product .sc-single-related-wrap ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.sc-footer-grid { grid-template-columns: 1fr; gap: 28px; }
	.sc-footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
	.sc-features-grid { grid-template-columns: 1fr; }
	.sc-application-grid { grid-template-columns: 1fr; }
	.sc-shop-filters { grid-template-columns: 1fr; }
	.sc-section-line-head { flex-direction: column; align-items: flex-start; gap: 8px; }
	.sc-banner-service,
	.sc-banner-precision { flex-direction: column; align-items: flex-start; }
	.sc-knowledge-grid { grid-template-columns: 1fr; }
	.sc-interview-card { grid-template-columns: 1fr; }
	.sc-interview-avatar { width: 86px; height: 86px; }
	.sc-interview-side { display: none; }
	.sc-knowledge-head { flex-direction: column; align-items: flex-start; gap: 4px; }
	.sc-product-support {
		padding: 32px 0;
	}
	.sc-events-intro,
	.sc-events-cta {
		grid-template-columns: 1fr;
		align-items: start;
	}
	.sc-event-featured {
		grid-template-columns: 1fr;
	}
	.sc-event-arrow {
		justify-content: flex-start;
	}
	.sc-product-support h2 {
		font-size: 28px;
	}
	.sc-product-support-panel {
		padding: 22px;
	}
	.single-product .woocommerce-tabs ul.tabs {
		padding-bottom: 4px;
	}
}

@media (max-width: 520px) {
	.sc-products-grid { grid-template-columns: 1fr; }
	.single-product .sc-single-related-wrap ul.products { grid-template-columns: 1fr; }
	.sc-events-grid { grid-template-columns: 1fr; }
	.sc-events-hero { padding: 48px 0; }
	.sc-event-featured,
	.sc-event-form-card {
		padding: 22px;
	}
	.sc-webinar-image {
		height: 220px;
	}
	.sc-icon-grid { grid-template-columns: 1fr; }
	.sc-product-thumb { height: 200px; }
	.sc-newsletter-row { grid-template-columns: 1fr; }
	.sc-footer-newsletter-row { grid-template-columns: 1fr; }
	.sc-product-support-actions {
		display: grid;
		grid-template-columns: 1fr;
	}
	.sc-product-support-primary,
	.sc-product-support-secondary {
		width: 100%;
	}
	.single-product .woocommerce-tabs ul.tabs li a {
		font-size: 0.85rem;
		padding: 0.7rem 0.95rem;
		white-space: nowrap;
	}
}

@media (max-width: 980px) {
	.sc-single-main {
		grid-template-columns: 1fr;
	}
	.sc-single-summary .product_title {
		font-size: clamp(28px, 6vw, 40px);
	}
	.sc-single-price {
		font-size: 34px !important;
	}
	.sc-challenge-layout {
		max-width: 100%;
	}
	.sc-challenge-page {
		padding-top: 36px;
	}
}

/* Project page templates */
.sc-page-hero {
	position: relative;
	background-size: cover;
	background-position: center;
	background-color: var(--sc-navy);
	background-image:
		radial-gradient(circle at 20% 20%, rgba(255, 174, 0, 0.08), transparent 24%),
		linear-gradient(135deg, #081426 0%, #142746 100%);
	color: #fff;
	padding: 76px 0;
	overflow: hidden;
}

.sc-page-hero-inner {
	max-width: 820px;
	text-align: center;
}

.sc-page-hero h1 {
	margin: 0 0 12px;
	color: #fff;
	font-size: clamp(34px, 5vw, 56px);
	font-weight: 900;
	line-height: 1.04;
	letter-spacing: -0.035em;
	text-transform: uppercase;
}

.sc-page-hero p {
	margin: 0 auto;
	max-width: 660px;
	color: #d7deeb;
	font-size: 17px;
	line-height: 1.55;
}

.sc-page-wrap {
	padding: 56px 0;
	background: #fff;
}

.sc-page-muted {
	background: #eef3f9;
}

.sc-narrow {
	max-width: 920px;
}

.sc-page-lead {
	margin: 0 0 36px;
	color: #59677d;
	font-size: 17px;
	line-height: 1.7;
}

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

.sc-contact-card,
.sc-content-card,
.sc-service-form,
.sc-audit-form section {
	border: 1px solid var(--sc-border);
	border-radius: 14px;
	background: #fff;
	padding: 30px;
}

.sc-contact-card-dark {
	background: var(--sc-navy);
	border-color: var(--sc-navy);
	color: #fff;
}

.sc-contact-card h2,
.sc-service-form h2,
.sc-page-heading h2 {
	margin: 0 0 22px;
	color: var(--sc-navy);
	font-size: 20px;
	font-weight: 900;
	text-transform: uppercase;
}

.sc-contact-card-dark h2 {
	color: var(--sc-yellow);
}

.sc-contact-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 18px;
}

.sc-contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 13px;
}

.sc-contact-list li > span {
	width: 22px;
	height: 22px;
	color: var(--sc-yellow);
	flex: 0 0 auto;
}

.sc-contact-list-light li > span {
	color: var(--sc-navy);
}

.sc-contact-list svg {
	display: block;
	width: 100%;
	height: 100%;
}

.sc-contact-list small {
	display: block;
	margin-bottom: 3px;
	color: #9da8ba;
	font-size: 12px;
}

.sc-contact-list a,
.sc-contact-list strong {
	color: inherit;
	font-size: 15px;
	font-weight: 800;
	text-decoration: none;
}

.sc-challenge-intro {
	max-width: 820px;
	margin: 0 auto 34px;
	color: #53647b;
	font-size: 17px;
	line-height: 1.7;
	text-align: center;
}

.sc-challenge-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.sc-challenge-card {
	min-height: 230px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 26px;
	border: 1px solid var(--sc-border);
	border-radius: 14px;
	background: #fff;
	color: var(--sc-navy);
	text-decoration: none;
	box-shadow: 0 18px 45px rgba(16, 35, 62, 0.06);
	transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.sc-challenge-card:hover {
	transform: translateY(-4px);
	border-color: #bac6d6;
	box-shadow: 0 22px 55px rgba(16, 35, 62, 0.11);
}

.sc-challenge-card-icon {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border-radius: 999px;
	background: #eef3f9;
	color: var(--sc-yellow);
	font-size: 22px;
	font-weight: 900;
}

.sc-challenge-card strong {
	display: block;
	font-size: 21px;
	font-weight: 900;
	line-height: 1.12;
}

.sc-challenge-card span:not(.sc-challenge-card-icon) {
	color: #59677d;
	font-size: 14px;
	line-height: 1.55;
}

.sc-challenge-card em {
	margin-top: auto;
	color: var(--sc-yellow);
	font-size: 13px;
	font-style: normal;
	font-weight: 900;
	text-transform: uppercase;
}

.sc-challenge-detail {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 24px;
	align-items: start;
}

.sc-challenge-content {
	color: #34445c;
	font-size: 16px;
	line-height: 1.75;
}

.sc-challenge-content h2 {
	margin: 0 0 14px;
	color: var(--sc-navy);
	font-size: 28px;
	font-weight: 900;
	line-height: 1.12;
}

.sc-challenge-content h2:not(:first-child) {
	margin-top: 34px;
}

.sc-challenge-content ul {
	margin: 0 0 24px;
	padding-left: 20px;
}

.sc-challenge-aside {
	display: grid;
	gap: 18px;
	position: sticky;
	top: 24px;
}

.sc-challenge-aside h2 {
	margin: 0 0 12px;
	color: var(--sc-navy);
	font-size: 18px;
	font-weight: 900;
	text-transform: uppercase;
}

.sc-challenge-aside p {
	margin: 0 0 18px;
	color: #59677d;
	line-height: 1.6;
}

.sc-simple-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.sc-simple-links a {
	color: var(--sc-navy);
	font-weight: 800;
	text-decoration: none;
}

.sc-simple-links a:hover {
	color: var(--sc-yellow);
}

.sc-info-page {
	max-width: 940px;
}

.sc-info-content {
	color: #34445c;
	font-size: 16px;
	line-height: 1.75;
}

.sc-info-content h2 {
	margin: 0 0 14px;
	color: var(--sc-navy);
	font-size: 28px;
	font-weight: 900;
	line-height: 1.12;
}

.sc-info-content h2:not(:first-child) {
	margin-top: 34px;
}

.sc-info-content p {
	margin: 0 0 18px;
}

.sc-info-content ul,
.sc-info-content ol {
	margin: 0 0 24px;
	padding-left: 22px;
}

.sc-info-content li {
	margin-bottom: 8px;
}

.sc-info-content h3 {
	margin: 24px 0 10px;
	color: var(--sc-navy);
	font-size: 15px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.sc-info-content a {
	color: var(--sc-navy);
	font-weight: 800;
}

.sc-faq-page,
.sc-jobs-page {
	max-width: 940px;
}

.sc-faq-list {
	display: grid;
	gap: 8px;
}

.sc-faq-item {
	border: 1px solid #dfe5ee;
	border-radius: 4px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(16, 35, 62, 0.04);
	overflow: hidden;
}

.sc-faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 16px 20px;
	cursor: pointer;
	list-style: none;
	color: var(--sc-navy);
	font-size: 14px;
	font-weight: 900;
	transition: background 0.16s ease;
}

.sc-faq-item summary::-webkit-details-marker {
	display: none;
}

.sc-faq-item summary:hover {
	background: #f7f9fc;
}

.sc-faq-item summary b {
	color: #94a0b2;
	font-size: 18px;
	line-height: 1;
	transition: transform 0.16s ease;
}

.sc-faq-item[open] summary b {
	transform: rotate(180deg);
}

.sc-faq-item > div {
	padding: 14px 20px 18px;
	border-top: 1px solid #edf1f6;
	color: #59677d;
	font-size: 14px;
	line-height: 1.7;
}

.sc-jobs-page {
	display: grid;
	gap: 40px;
}

.sc-job-card {
	border: 1px solid #dfe5ee;
	border-radius: 16px;
	background: #fff;
	overflow: hidden;
	box-shadow: 0 12px 38px rgba(16, 35, 62, 0.06);
}

.sc-job-card-head {
	padding: 26px 32px;
	background: var(--sc-navy);
	color: #d9e1ee;
}

.sc-job-card-head p {
	margin: 0 0 5px;
	color: var(--sc-yellow);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.sc-job-card-head h2 {
	margin: 0 0 13px;
	color: #fff;
	font-size: clamp(21px, 3vw, 28px);
	font-weight: 900;
	line-height: 1.12;
}

.sc-job-card-head div {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 20px;
	font-size: 13px;
}

.sc-job-card-head strong {
	color: #fff;
}

.sc-job-card-body {
	display: grid;
	gap: 26px;
	padding: 28px 32px;
}

.sc-job-card-body h3 {
	margin: 0 0 10px;
	color: var(--sc-navy);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.045em;
}

.sc-job-card-body p {
	margin: 0;
	color: #59677d;
	font-size: 14px;
	line-height: 1.7;
}

.sc-job-card-body ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 9px;
}

.sc-job-card-body li {
	position: relative;
	padding-left: 18px;
	color: #3d4c63;
	font-size: 14px;
	line-height: 1.58;
}

.sc-job-card-body li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.62em;
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--sc-yellow);
}

.sc-job-card-body .sc-job-checks li::before {
	content: "✓";
	top: 0;
	width: auto;
	height: auto;
	background: transparent;
	color: #24a148;
	font-weight: 900;
}

.sc-job-apply {
	padding: 20px;
	border: 1px solid #dfe5ee;
	border-radius: 12px;
	background: #f7f9fc;
}

.sc-job-apply strong {
	display: block;
	margin-bottom: 4px;
	color: var(--sc-navy);
	font-size: 14px;
}

.sc-job-apply p {
	margin-bottom: 10px;
}

.sc-job-apply small {
	display: block;
	margin-bottom: 16px;
	color: #69778d;
	font-size: 12px;
	line-height: 1.6;
	font-style: italic;
}

.sc-job-apply a:not(.sc-btn) {
	color: var(--sc-navy);
	font-weight: 900;
}

.sc-events-page {
	display: grid;
	gap: 28px;
}

.sc-events-intro,
.sc-events-cta {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 24px;
	padding: 30px;
	border: 1px solid #dfe5ee;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 14px 38px rgba(16, 35, 62, 0.06);
}

.sc-kicker {
	margin: 0 0 8px;
	color: var(--sc-yellow);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.sc-events-intro h2,
.sc-events-cta h2 {
	margin: 0 0 10px;
	color: var(--sc-navy);
	font-size: clamp(26px, 3vw, 38px);
	font-weight: 900;
	line-height: 1.08;
}

.sc-events-intro p:not(.sc-kicker),
.sc-events-cta p:not(.sc-kicker) {
	margin: 0;
	max-width: 760px;
	color: #59677d;
	line-height: 1.7;
}

.sc-events-content {
	color: #34445c;
	font-size: 16px;
	line-height: 1.75;
}

.sc-events-content h2 {
	margin: 0 0 14px;
	color: var(--sc-navy);
	font-size: 30px;
	font-weight: 900;
	line-height: 1.12;
}

.sc-events-content h2:not(:first-child),
.sc-events-content h3 {
	margin-top: 28px;
}

.sc-events-content h3 {
	margin-bottom: 8px;
	color: var(--sc-navy);
	font-size: 18px;
	font-weight: 900;
}

.sc-events-content p {
	margin: 0 0 16px;
}

.sc-events-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.sc-event-card {
	padding: 24px;
	border: 1px solid #dfe5ee;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 14px 38px rgba(16, 35, 62, 0.06);
}

.sc-event-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
}

.sc-event-card-top span,
.sc-event-card-top small {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	border-radius: 999px;
	padding: 6px 10px;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.sc-event-card-top span {
	background: var(--sc-navy);
	color: #fff;
}

.sc-event-card-top small {
	background: #fff3d4;
	color: #7a5300;
}

.sc-event-card h2 {
	margin: 0 0 12px;
	color: var(--sc-navy);
	font-size: 22px;
	font-weight: 900;
	line-height: 1.14;
}

.sc-event-card p {
	margin: 0;
	color: #59677d;
	line-height: 1.65;
}

.sc-events-cta {
	background: var(--sc-navy);
	border-color: var(--sc-navy);
}

.sc-events-cta h2 {
	color: #fff;
}

.sc-events-cta p:not(.sc-kicker) {
	color: #d8dfeb;
}

.sc-events-cta .sc-btn-outline {
	border-color: #fff;
	background: transparent;
	color: #fff;
}

.sc-events-cta .sc-btn-outline:hover {
	background: #fff;
	color: var(--sc-navy);
}

.sc-events-hero {
	background: var(--sc-navy);
	color: #fff;
	padding: 62px 0 58px;
	border-top: 1px solid rgba(255,255,255,.28);
}

.sc-events-hero .sc-container {
	max-width: 980px;
}

.sc-events-hero p {
	margin: 0 0 12px;
	color: var(--sc-yellow);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .09em;
}

.sc-events-hero h1 {
	margin: 0 0 20px;
	color: #fff;
	font-size: clamp(34px, 4.2vw, 44px);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: -0.03em;
}

.sc-events-hero div {
	max-width: 720px;
	color: #d9e1ee;
	font-size: 17px;
	line-height: 1.65;
}

.sc-events-page {
	max-width: 980px;
}

.sc-events-block {
	display: grid;
	gap: 22px;
}

.sc-events-section-label {
	margin: 0;
	color: #9aa4b6;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.sc-event-featured {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 48px;
	align-items: center;
	gap: 18px;
	padding: 30px;
	border: 1px solid #d9e1ec;
	border-radius: 10px;
	background: #fff;
}

.sc-event-featured-body {
	display: grid;
	gap: 14px;
}

.sc-event-label {
	margin: 0;
	color: #9aa4b6;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .12em;
}

.sc-event-featured h2,
.sc-webinar-card h2 {
	margin: 0;
	color: var(--sc-navy);
	font-weight: 900;
	line-height: 1.18;
}

.sc-event-featured h2 {
	font-size: 22px;
}

.sc-event-featured p:not(.sc-event-label),
.sc-webinar-card p:not(.sc-event-label) {
	margin: 0;
	color: #59677d;
	line-height: 1.65;
}

.sc-event-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	color: #52627a;
	font-size: 13px;
}

.sc-event-meta span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.sc-event-meta svg {
	width: 15px;
	height: 15px;
	color: var(--sc-navy);
}

.sc-event-card-link {
	display: inline-flex;
	align-items: center;
	width: max-content;
	color: var(--sc-navy);
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
}

.sc-event-card-link:hover {
	color: var(--sc-yellow);
}

.sc-event-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 82px;
	height: 32px;
	background: var(--sc-navy);
	color: #fff;
	font-size: 9px;
	font-weight: 800;
}

.sc-event-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	color: var(--sc-navy);
	font-size: 34px;
	font-weight: 300;
	text-decoration: none;
}

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

.sc-webinar-card {
	overflow: hidden;
	border: 1px solid #d9e1ec;
	border-radius: 10px;
	background: #fff;
}

.sc-webinar-image {
	height: 300px;
	background: #fff;
	overflow: hidden;
}

.sc-webinar-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sc-webinar-image-empty {
	background: #fff;
}

.sc-webinar-body {
	display: grid;
	gap: 12px;
	padding: 24px;
}

.sc-webinar-card h2 {
	font-size: 18px;
}

.sc-event-form-card {
	display: grid;
	grid-template-columns: .75fr 1fr;
	gap: 34px;
	padding: 34px;
	border: 1px solid #d9e1ec;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 12px 34px rgba(16,35,62,.06);
}

.sc-event-form-copy h2 {
	margin: 0 0 12px;
	color: var(--sc-navy);
	font-size: 34px;
	font-weight: 900;
	line-height: 1.08;
}

.sc-event-form-copy p:not(.sc-kicker) {
	margin: 0;
	color: #59677d;
	line-height: 1.7;
}

.sc-event-form {
	display: grid;
	gap: 14px;
}

.sc-event-form .sc-form-field {
	display: grid;
	gap: 7px;
	color: #5d6a7f;
	font-size: 11px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.sc-form-message {
	padding: 12px 14px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.45;
}

.sc-form-message.is-success {
	border: 1px solid #bfe7cc;
	background: #ecfdf3;
	color: #176337;
}

.sc-form-message.is-error {
	border: 1px solid #ffd0d0;
	background: #fff1f1;
	color: #9f1d1d;
}

.sc-event-form input,
.sc-event-form select,
.sc-event-form textarea {
	width: 100%;
	border: 1px solid #cfd6e4;
	border-radius: 6px;
	background: #fff;
	padding: 12px 14px;
	color: var(--sc-navy);
	font: inherit;
	font-size: 14px;
}

.sc-event-form textarea {
	min-height: 110px;
	resize: vertical;
}

.sc-event-form .sc-form-consent {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	color: #59677d;
	font-size: 12px;
	line-height: 1.45;
}

.sc-event-form .sc-form-consent input {
	width: auto;
	margin-top: 2px;
}

.sc-event-form button {
	width: 100%;
	border: 0;
}

.sc-single-event-wrap {
	background: #f3f6fb;
	padding: 34px 0 72px;
}

.sc-single-event-shell {
	max-width: 920px;
	display: grid;
	gap: 24px;
}

.sc-single-event-back {
	display: inline-flex;
	align-items: center;
	width: max-content;
	color: var(--sc-navy);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.sc-single-event-back:hover {
	color: var(--sc-yellow);
}

.sc-single-event-card,
.sc-single-event-signup {
	overflow: hidden;
	border: 1px solid #d9e1ec;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 2px 10px rgba(16,35,62,.05);
}

.sc-single-event-cover {
	height: 190px;
	background:
		linear-gradient(135deg, rgba(13, 31, 57, .1), rgba(13, 31, 57, .22)),
		#dce4ef;
	overflow: hidden;
}

.sc-single-event-cover img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sc-single-event-cover-empty {
	background:
		radial-gradient(circle at 72% 15%, rgba(255,174,0,.16), transparent 28%),
		linear-gradient(135deg, #0b1830 0%, #183762 100%);
}

.sc-single-event-heading {
	padding: 30px 34px 32px;
	background: var(--sc-navy);
	color: #fff;
}

.sc-single-event-heading .sc-event-label {
	margin-bottom: 14px;
	color: #a9b4c6;
}

.sc-single-event-heading h1 {
	max-width: 790px;
	margin: 0 0 18px;
	color: #fff;
	font-size: clamp(25px, 3vw, 34px);
	font-weight: 900;
	line-height: 1.16;
	letter-spacing: -0.03em;
}

.sc-single-event-meta {
	gap: 20px;
	color: #e7edf7;
	font-size: 14px;
	font-weight: 700;
}

.sc-single-event-meta svg {
	width: 16px;
	height: 16px;
	color: var(--sc-yellow);
}

.sc-single-event-content {
	padding: 34px;
	color: #1f2e46;
}

.sc-single-event-lead,
.sc-single-event-content > p:first-child {
	margin: 0 0 26px;
	color: #1d2d45;
	font-size: 17px;
	line-height: 1.65;
}

.sc-single-event-content h2,
.sc-single-event-content h3 {
	margin: 16px 0 0;
	padding: 18px 20px 4px;
	border-left: 4px solid #ff6b6b;
	border-radius: 7px 7px 0 0;
	background: #f8fafc;
	color: var(--sc-navy);
	font-size: 15px;
	font-weight: 900;
	line-height: 1.25;
}

.sc-single-event-content h2 + p,
.sc-single-event-content h2 + ul,
.sc-single-event-content h2 + ol,
.sc-single-event-content h3 + p,
.sc-single-event-content h3 + ul,
.sc-single-event-content h3 + ol {
	margin: 0 0 16px;
	padding: 4px 20px 18px;
	border-left: 4px solid #ff6b6b;
	border-radius: 0 0 7px 7px;
	background: #f8fafc;
	color: #41516a;
	font-size: 14px;
	line-height: 1.65;
}

.sc-single-event-content h2 + ul,
.sc-single-event-content h2 + ol,
.sc-single-event-content h3 + ul,
.sc-single-event-content h3 + ol {
	padding-left: 38px;
}

.sc-single-event-content p {
	margin: 0 0 18px;
	line-height: 1.72;
}

.sc-single-event-content ul,
.sc-single-event-content ol {
	margin: 0 0 22px 20px;
	color: #41516a;
	line-height: 1.7;
}

.sc-single-event-signup {
	padding: 34px;
}

.sc-single-event-form-head {
	margin-bottom: 24px;
}

.sc-single-event-form-head h2 {
	margin: 0 0 8px;
	color: var(--sc-navy);
	font-size: 24px;
	font-weight: 900;
	line-height: 1.2;
}

.sc-single-event-form-head p {
	margin: 0;
	color: #637089;
	line-height: 1.55;
}

.sc-challenge-hero {
	position: relative;
	min-height: 190px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	background-color: var(--sc-navy);
	background-image:
		radial-gradient(circle at 22% 20%, rgba(255, 174, 0, 0.08), transparent 24%),
		linear-gradient(135deg, #081426 0%, #142746 100%);
	color: #fff;
	overflow: hidden;
}

.sc-challenge-hero-inner {
	text-align: center;
}

.sc-challenge-hero p {
	margin: 0 0 10px;
	color: var(--sc-yellow);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.sc-challenge-hero h1 {
	max-width: 760px;
	margin: 0 auto;
	color: #fff;
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 900;
	line-height: 1.03;
	letter-spacing: -0.03em;
	text-transform: uppercase;
}

.sc-challenge-page {
	padding: 52px 0 0;
	background: #fff;
}

.sc-challenge-layout {
	max-width: 940px;
}

.sc-challenge-back {
	display: inline-flex;
	margin-bottom: 26px;
	color: #5c6879;
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
}

.sc-challenge-back:hover {
	color: var(--sc-navy);
}

.sc-challenge-alert {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 34px;
	padding: 18px 20px;
	background: #fff3f2;
	border-left: 3px solid #e94335;
	color: #3e4b5f;
}

.sc-challenge-alert span {
	width: 18px;
	height: 18px;
	display: grid;
	place-items: center;
	margin-top: 1px;
	border: 2px solid #e94335;
	border-radius: 999px;
	color: #e94335;
	font-size: 11px;
	font-weight: 900;
	flex: 0 0 auto;
}

.sc-challenge-alert p {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.55;
}

.sc-challenge-layout > h2 {
	margin: 0 0 20px;
	color: var(--sc-navy);
	font-size: 18px;
	font-weight: 900;
}

.sc-solution-list {
	display: grid;
	gap: 18px;
	margin-bottom: 26px;
}

.sc-solution-card {
	padding: 20px 22px;
	border: 1px solid #dfe5ee;
	border-radius: 4px;
	background: #fff;
}

.sc-solution-card h3 {
	margin: 0 0 11px;
	color: var(--sc-navy);
	font-size: 15px;
	font-weight: 900;
}

.sc-solution-card p {
	margin: 0 0 15px;
	color: #3d4c63;
	font-size: 14px;
	line-height: 1.65;
}

.sc-solution-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.sc-solution-buttons a {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 13px;
	border-radius: 2px;
	background: var(--sc-navy);
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	text-decoration: none;
}

.sc-solution-buttons a:hover {
	background: #223a5e;
}

.sc-challenge-editor-content {
	margin: 26px 0 0;
	padding-top: 24px;
	border-top: 1px solid #edf1f6;
	color: #40506a;
	font-size: 15px;
	line-height: 1.7;
}

.sc-challenge-editor-content h2:first-child,
.sc-challenge-editor-content h3:first-child {
	margin-top: 0;
}

.sc-challenge-cta {
	margin-top: 30px;
	padding: 30px 34px;
	border-radius: 10px 10px 0 0;
	background: var(--sc-navy);
	color: #fff;
	text-align: center;
}

.sc-challenge-cta h2 {
	margin: 0 0 8px;
	color: var(--sc-yellow);
	font-size: 22px;
	font-weight: 900;
	text-transform: uppercase;
}

.sc-challenge-cta p {
	max-width: 620px;
	margin: 0 auto 18px;
	color: #d9e1ee;
	line-height: 1.6;
}

.sc-contact-card:not(.sc-contact-card-dark) strong {
	color: var(--sc-navy);
}

.sc-text-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 900;
}

.sc-prose {
	color: #40506a;
	font-size: 16px;
	line-height: 1.8;
}

.sc-prose h2 {
	margin-top: 38px;
	color: var(--sc-navy);
	font-size: 24px;
	font-weight: 900;
	text-transform: uppercase;
}

.sc-partner-card {
	display: grid;
	grid-template-columns: 130px 1fr auto;
	align-items: center;
	gap: 20px;
	margin: 18px 0 28px;
	padding: 20px;
	border: 1px solid var(--sc-border);
	border-radius: 12px;
	background: #f6f8fb;
}

.sc-partner-card img {
	max-width: 120px;
	border-radius: 6px;
}

.sc-partner-card strong,
.sc-partner-card small {
	display: block;
}

.sc-partner-card strong {
	color: var(--sc-navy);
	font-weight: 900;
}

.sc-contact-strip {
	margin-top: 28px;
	border-radius: 14px;
	background: var(--sc-navy);
	color: #d3d9e6;
	padding: 28px 30px;
}

.sc-contact-strip h2 {
	margin: 0 0 12px;
	color: var(--sc-yellow);
	font-size: 20px;
	font-weight: 900;
	text-transform: uppercase;
}

.sc-contact-strip p {
	margin: 7px 0;
}

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

.sc-kb-card {
	display: block;
	overflow: hidden;
	border: 1px solid var(--sc-border);
	border-radius: 12px;
	background: #fff;
	color: inherit;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.sc-kb-card:hover {
	transform: translateY(-3px);
	border-color: rgba(26,45,78,.35);
	box-shadow: 0 16px 36px rgba(15,30,53,.12);
}

.sc-kb-image {
	aspect-ratio: 16 / 9;
	background: #eef2f7;
}

.sc-kb-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sc-kb-body {
	padding: 20px;
}

.sc-kb-body span {
	display: inline-flex;
	margin-bottom: 12px;
	border-radius: 999px;
	background: #e8eef7;
	color: var(--sc-navy);
	padding: 4px 9px;
	font-size: 11px;
	font-weight: 900;
}

.sc-kb-body h2 {
	margin: 0 0 10px;
	color: var(--sc-navy);
	font-size: 17px;
	font-weight: 900;
	line-height: 1.22;
}

.sc-kb-body p {
	margin: 0 0 14px;
	color: #66748a;
	font-size: 13px;
	line-height: 1.55;
}

.sc-kb-body strong {
	color: var(--sc-yellow);
	font-size: 12px;
	font-weight: 900;
}

.sc-blog-index {
	background: #fff;
}

.sc-blog-grid {
	row-gap: 28px;
}

.sc-blog-card .sc-kb-image {
	aspect-ratio: 16 / 9;
	min-height: 210px;
}

.sc-blog-card .sc-kb-body {
	padding: 22px 24px 24px;
}

.sc-blog-card .sc-kb-body span {
	margin-bottom: 14px;
	background: #e8eef7;
	color: var(--sc-navy);
}

.sc-blog-card .sc-kb-body span.is-interview {
	background: #dce8ff;
	color: #204d9b;
}

.sc-blog-card .sc-kb-body span.is-guide {
	background: #dff6e9;
	color: #187343;
}

.sc-blog-card .sc-kb-body span.is-tech {
	background: #d8f5fb;
	color: #0a7185;
}

.sc-blog-card .sc-kb-body span.is-challenge {
	background: #ffe5e5;
	color: #c52828;
}

.sc-blog-card .sc-kb-body span.is-economy {
	background: #f2e3ff;
	color: #8133a7;
}

.sc-blog-card .sc-kb-body h2 {
	font-size: 17px;
	line-height: 1.25;
}

.sc-blog-card .sc-kb-body strong {
	color: var(--sc-yellow);
}

.sc-blog-pagination {
	margin-top: 36px;
}

.sc-blog-pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
}

.sc-blog-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	border: 1px solid #d7deea;
	border-radius: 8px;
	color: var(--sc-navy);
	font-weight: 800;
	text-decoration: none;
}

.sc-blog-pagination .page-numbers.current,
.sc-blog-pagination .page-numbers:hover {
	background: var(--sc-navy);
	color: #fff;
}

.sc-post-hero {
	position: relative;
	background-color: var(--sc-navy-dark);
	background-size: cover;
	background-position: center;
	color: #fff;
	padding: 104px 0 96px;
}

.sc-post-hero-inner {
	max-width: 820px;
}

.sc-post-kicker {
	margin: 0 0 12px;
	color: var(--sc-yellow);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.sc-post-hero h1 {
	max-width: 790px;
	margin: 0 0 24px;
	color: #fff;
	font-size: clamp(34px, 4.8vw, 48px);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: -0.035em;
}

.sc-post-lead {
	max-width: 750px;
	color: #e1e7f0;
	font-size: 18px;
	line-height: 1.62;
}

.sc-post-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 26px;
}

.sc-post-tags a {
	display: inline-flex;
	align-items: center;
	min-height: 25px;
	padding: 0 13px;
	border-radius: 999px;
	background: rgba(255,255,255,.14);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
}

.sc-post-tags a:hover {
	background: var(--sc-yellow);
	color: var(--sc-navy);
}

.sc-post-wrap {
	background: #fff;
	padding: 56px 0 0;
}

.sc-post-container {
	max-width: 920px;
}

.sc-post-back {
	display: inline-flex;
	margin-bottom: 34px;
	color: #66748a;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.sc-post-back:hover {
	color: var(--sc-navy);
}

.sc-post-author-card {
	display: grid;
	grid-template-columns: 108px minmax(0, 1fr);
	gap: 24px;
	align-items: center;
	margin-bottom: 42px;
	padding: 24px;
	border: 1px solid #d9e1ec;
	border-radius: 8px;
	background: #f8fafc;
}

.sc-post-author-avatar img {
	display: block;
	width: 96px;
	height: 96px;
	border: 5px solid var(--sc-yellow);
	border-radius: 999px;
	object-fit: cover;
}

.sc-post-author-card h2 {
	margin: 0 0 5px;
	color: var(--sc-navy);
	font-size: 18px;
	font-weight: 900;
	line-height: 1.2;
}

.sc-post-author-card p {
	margin: 0;
	color: #7a8496;
	font-size: 14px;
	line-height: 1.45;
}

.sc-post-content {
	color: #1f2d43;
	font-size: 16px;
	line-height: 1.76;
}

.sc-post-content > * {
	margin-left: auto;
	margin-right: auto;
}

.sc-post-content p,
.sc-post-content ul,
.sc-post-content ol,
.sc-post-content h2,
.sc-post-content h3,
.sc-post-content h4,
.sc-post-content blockquote {
	max-width: 820px;
}

.sc-post-content p {
	margin-top: 0;
	margin-bottom: 28px;
}

.sc-post-content h2,
.sc-post-content h3 {
	margin-top: 48px;
	margin-bottom: 14px;
	color: var(--sc-navy);
	font-size: 21px;
	font-weight: 900;
	line-height: 1.35;
}

.sc-post-content h4 {
	margin-top: 34px;
	margin-bottom: 12px;
	color: var(--sc-navy);
	font-size: 17px;
	font-weight: 900;
	line-height: 1.35;
}

.sc-post-content strong {
	font-weight: 900;
}

.sc-post-content blockquote {
	margin-top: 0;
	margin-bottom: 34px;
	padding: 0 0 0 24px;
	border-left: 4px solid var(--sc-yellow);
	color: #35445c;
	font-size: 18px;
	font-style: italic;
	line-height: 1.75;
}

.sc-post-content blockquote p {
	margin-bottom: 0;
}

.sc-post-content img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}

.sc-post-takeaways {
	margin: 56px auto 36px;
	padding: 28px 32px;
	border-radius: 10px;
	background: var(--sc-navy);
	color: #fff;
}

.sc-post-takeaways h2 {
	margin: 0 0 18px;
	color: var(--sc-yellow);
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.sc-post-takeaways ul {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sc-post-takeaways li {
	position: relative;
	padding-left: 24px;
	color: #e8eef8;
	line-height: 1.55;
}

.sc-post-takeaways li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--sc-yellow);
	font-weight: 900;
}

.sc-post-cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin: 0 0 52px;
}

.sc-post-cta-row .sc-btn {
	min-height: 48px;
	border-radius: 4px;
	padding-left: 24px;
	padding-right: 24px;
}

.sc-audit-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #0a1428 0%, #0f1e35 50%, #162845 100%);
	color: #fff;
	padding: 86px 0 60px;
	text-align: center;
}

.sc-audit-hero h1 {
	margin: 0 0 18px;
	color: #fff;
	font-size: clamp(42px, 6vw, 68px);
	font-weight: 900;
	line-height: .98;
	letter-spacing: -0.04em;
	text-transform: uppercase;
}

.sc-audit-hero h1 span,
.sc-audit-hero strong,
.sc-audit-stats strong {
	color: var(--sc-yellow);
}

.sc-audit-hero p {
	max-width: 720px;
	margin: 0 auto 14px;
	color: #c8d2e0;
	font-size: 17px;
	line-height: 1.6;
}

.sc-audit-hero .sc-btn {
	margin-top: 22px;
}

.sc-audit-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
	max-width: 760px;
	margin: 54px auto 0;
}

.sc-audit-stats strong,
.sc-audit-stats span {
	display: block;
}

.sc-audit-stats strong {
	font-size: 34px;
	font-weight: 900;
}

.sc-audit-stats span {
	color: #9eabbf;
	font-size: 12px;
	line-height: 1.4;
}

.sc-page-heading {
	margin-bottom: 34px;
	text-align: center;
}

.sc-page-heading p {
	max-width: 680px;
	margin: 0 auto;
	color: #66748a;
	line-height: 1.6;
}

.sc-audit-form {
	display: grid;
	gap: 22px;
}

.sc-audit-form section {
	display: grid;
	gap: 14px;
}

.sc-audit-form h3 {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 18px;
	color: var(--sc-navy);
	font-size: 16px;
	font-weight: 900;
	text-transform: uppercase;
}

.sc-audit-form h3 em {
	color: #98a3b5;
	font-style: normal;
	font-size: 17px;
}

.sc-audit-form h3 span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: var(--sc-yellow);
	color: var(--sc-navy);
}

.sc-audit-form h3 span.is-red {
	background: #ef4444;
	color: #fff;
}

.sc-audit-form h3 span.is-green {
	background: #22c55e;
	color: #fff;
}

.sc-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.sc-form-grid input,
.sc-form-grid select,
.sc-audit-form textarea,
.sc-audit-form input,
.sc-audit-form select,
.sc-service-form textarea,
.sc-service-form input {
	width: 100%;
	border: 1px solid #cfd6e4;
	border-radius: 6px;
	background: #fff;
	padding: 12px 14px;
	color: var(--sc-navy);
	font: inherit;
	font-size: 14px;
}

.sc-audit-form label {
	display: grid;
	gap: 7px;
	color: #66748a;
	font-size: 12px;
	font-weight: 800;
}

.sc-audit-form textarea,
.sc-service-form textarea {
	min-height: 120px;
	resize: vertical;
}

.sc-audit-pill-row {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.sc-audit-pill-row label,
.sc-audit-problem-grid label {
	display: block;
	cursor: pointer;
}

.sc-audit-pill-row input,
.sc-audit-problem-grid input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.sc-audit-pill-row span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 16px;
	border: 1px solid #d3dae6;
	border-radius: 999px;
	background: #fff;
	color: #617088;
	font-size: 13px;
	font-weight: 800;
}

.sc-audit-pill-row input:checked + span {
	border-color: var(--sc-navy);
	background: var(--sc-navy);
	color: #fff;
}

.sc-audit-problem-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.sc-audit-problem-grid span {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 52px;
	padding: 0 16px;
	border: 1px solid #dce2ec;
	border-radius: 8px;
	background: #f8fafc;
	color: #4f5f77;
	font-size: 13px;
	font-weight: 800;
}

.sc-audit-problem-grid b {
	font-size: 17px;
	line-height: 1;
}

.sc-audit-problem-grid input:checked + span {
	border-color: var(--sc-navy);
	background: #eef3fa;
	color: var(--sc-navy);
}

.sc-audit-form > .sc-form-consent {
	background: #fff;
	border: 1px solid var(--sc-border);
	border-radius: 10px;
	padding: 18px 20px;
}

.sc-audit-form > button {
	width: 100%;
	border-radius: 8px;
}

.sc-form-consent {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	color: #66748a;
	font-size: 13px;
}

.sc-red-band {
	background: #dc2626;
	color: #fff;
	padding: 20px 16px;
	text-align: center;
	font-weight: 900;
	line-height: 1.5;
}

.sc-service-intro h2,
.sc-service-section h2,
.sc-service-video-wrap h2,
.sc-maintenance-scope h2 {
	margin: 0 0 18px;
	color: var(--sc-navy);
	font-size: 28px;
	font-weight: 900;
	letter-spacing: -0.02em;
}

.sc-service-intro h2:not(:first-child) {
	margin-top: 38px;
}

.sc-check-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0 0 12px;
	color: #44536a;
	font-size: 15px;
	line-height: 1.55;
}

.sc-check-item span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	margin-top: 2px;
	border-radius: 999px;
	background: #e6f6ec;
	color: #169447;
	flex: 0 0 auto;
}

.sc-check-item svg {
	width: 15px;
	height: 15px;
}

.sc-two-col {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 44px;
	align-items: start;
}

.sc-service-section {
	padding-top: 60px;
}

.sc-service-section p,
.sc-service-video-wrap p {
	color: #56647a;
	font-size: 15px;
	line-height: 1.75;
}

.sc-service-section h3 {
	margin: 22px 0 12px;
	color: var(--sc-navy);
	font-size: 15px;
	font-weight: 900;
}

.sc-service-strong {
	color: var(--sc-navy) !important;
	font-weight: 900;
}

.sc-before-after-stack > p {
	margin: 0 0 14px;
	color: #8a94a6;
	font-size: 12px;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.sc-before-after {
	margin-bottom: 16px;
}

.sc-before-after strong {
	display: block;
	margin-bottom: 7px;
	color: #66748a;
	font-size: 13px;
}

.sc-before-after > div {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.sc-before-after figure {
	position: relative;
	margin: 0;
}

.sc-before-after img {
	display: block;
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 7px;
}

.sc-before-after span {
	position: absolute;
	top: 8px;
	left: 8px;
	border-radius: 4px;
	background: #dc2626;
	color: #fff;
	padding: 3px 8px;
	font-size: 10px;
	font-weight: 900;
	text-transform: uppercase;
}

.sc-before-after figure + figure span {
	background: #16a34a;
}

.sc-service-video-wrap {
	margin-top: 56px;
	padding: 56px 0;
}

.sc-maintenance-scope {
	padding-top: 58px;
	align-items: center;
}

.sc-maintenance-image {
	display: flex;
	justify-content: center;
}

.sc-maintenance-image img {
	display: block;
	width: min(100%, 330px);
	border-radius: 10px;
	box-shadow: 0 12px 34px rgba(15,30,53,.12);
}

.sc-video-card {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	border-radius: 12px;
	background: #000;
	box-shadow: 0 16px 40px rgba(15,30,53,.18);
}

.sc-video-card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .78;
}

.sc-video-card span {
	position: absolute;
	inset: 0;
	margin: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 999px;
	background: #dc2626;
	color: #fff;
}

.sc-video-card svg {
	width: 34px;
	height: 34px;
}

.sc-service-form {
	max-width: 620px;
	margin-top: 64px;
	padding: 0;
	overflow: hidden;
	box-shadow: 0 16px 44px rgba(15,30,53,.14);
}

.sc-service-form form {
	display: grid;
	gap: 14px;
	padding: 30px;
}

.sc-service-form-head {
	background: var(--sc-navy);
	color: #fff;
	padding: 22px 30px;
}

.sc-service-form-head h2 {
	margin: 0;
	color: #fff;
	font-size: 18px;
	font-weight: 900;
	text-transform: none;
}

.sc-service-form-head p {
	margin: 4px 0 0;
	color: var(--sc-yellow);
	font-size: 12px;
	font-weight: 800;
}

.sc-service-form h3 {
	margin: 6px 0 2px;
	color: var(--sc-yellow);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.sc-service-form label {
	display: grid;
	gap: 6px;
	color: #66748a;
	font-size: 12px;
	font-weight: 700;
}

.sc-service-form .sc-form-grid {
	gap: 14px;
}

.sc-service-choice-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.sc-service-choice-row label {
	display: inline-flex;
	align-items: center;
	gap: 0;
	cursor: pointer;
}

.sc-service-choice-row input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.sc-service-choice-row span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 0 16px;
	border: 1px solid #d6dde8;
	border-radius: 999px;
	background: #fff;
	color: #66748a;
	font-size: 13px;
	font-weight: 800;
}

.sc-service-choice-row input:checked + span {
	border-color: var(--sc-navy);
	background: var(--sc-navy);
	color: #fff;
}

.sc-service-form .sc-form-consent {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	font-size: 11px;
	font-weight: 500;
	line-height: 1.45;
}

.sc-service-form .sc-form-consent input {
	width: auto;
	margin-top: 2px;
}

.sc-service-form button {
	width: 100%;
	border-radius: 4px;
}

@media (max-width: 900px) {
	.sc-contact-grid,
	.sc-kb-grid,
	.sc-two-col,
	.sc-audit-stats,
	.sc-form-grid,
	.sc-partner-card,
	.sc-events-webinar-grid,
	.sc-event-form-card,
	.sc-single-event-form {
		grid-template-columns: 1fr;
	}

	.sc-page-hero,
	.sc-audit-hero {
		padding: 58px 0;
	}

	.sc-post-hero {
		padding: 72px 0;
	}

	.sc-post-author-card {
		grid-template-columns: 1fr;
	}

	.sc-post-author-avatar img {
		width: 82px;
		height: 82px;
	}

	.sc-post-content {
		font-size: 15px;
	}

	.sc-post-takeaways,
	.sc-post-cta-row {
		margin-left: 0;
		margin-right: 0;
	}
}

@media (max-width: 640px) {
	.sc-post-hero h1 {
		font-size: 31px;
	}

	.sc-post-lead {
		font-size: 16px;
	}

	.sc-post-author-card,
	.sc-post-takeaways {
		padding: 22px;
	}

	.sc-post-cta-row .sc-btn {
		width: 100%;
	}
}
