body.iqa-home {
	margin: 0;
	background: #f8f8f8;
	color: #3f3f3f;
	font-family: Arial, Helvetica, sans-serif;
}

body.iqa-home .iqa-home-page,
body.iqa-home .iqa-home-page * {
	box-sizing: border-box;
}

body.iqa-home .iqa-home-page a {
	text-decoration: none;
}

.iqa-shell {
	width: min(100% - 48px, 1180px);
	margin: 0 auto;
}

.iqa-hero {
	position: relative;
	min-height: 590px;
	color: #fff;
	background-image: var(--iqa-hero-image);
	background-position: center;
	background-size: cover;
	overflow: hidden;
}

.iqa-hero-shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(23, 23, 23, .94) 0%, rgba(23, 23, 23, .72) 38%, rgba(23, 23, 23, .25) 100%),
		linear-gradient(180deg, rgba(23, 23, 23, .58), rgba(23, 23, 23, .14));
}

.iqa-topbar,
.iqa-site-header,
.iqa-hero-content {
	position: relative;
	z-index: 2;
}

.iqa-topbar {
	border-bottom: 1px solid rgba(255, 255, 255, .2);
	background: rgba(23, 23, 23, .52);
}

.iqa-topbar-inner {
	display: flex;
	gap: 34px;
	align-items: center;
	min-height: 40px;
	font-size: 15px;
	font-weight: 600;
}

.iqa-topbar a {
	color: #fff;
}

.iqa-topbar a::before {
	display: inline-block;
	margin-right: 9px;
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 700;
}

.iqa-topbar a[href^="tel"]::before {
	content: "\260E";
}

.iqa-topbar a[href^="mailto"]::before {
	content: "\2709";
}

.iqa-site-header {
	padding: 28px 0 10px;
}

.iqa-header-inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 38px;
}

.iqa-logo {
	flex: 0 0 auto;
	max-width: 230px;
}

.iqa-logo img {
	display: block;
	width: auto;
	max-width: 210px;
	max-height: 86px;
	object-fit: contain;
}

.iqa-logo a {
	display: inline-block;
}

.iqa-nav {
	padding-top: 21px;
}

.iqa-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 42px;
	align-items: center;
	justify-content: flex-end;
	padding: 0;
	margin: 0;
	list-style: none;
}

.iqa-menu li {
	position: relative;
	padding: 0;
	margin: 0;
	list-style: none;
}

.iqa-menu a {
	display: block;
	padding-bottom: 7px;
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0;
	text-transform: uppercase;
}

.iqa-menu .current-menu-item > a,
.iqa-menu .current_page_item > a,
.iqa-menu a:hover {
	color: #fff;
}

.iqa-menu .current-menu-item > a::after,
.iqa-menu .current_page_item > a::after,
.iqa-menu a:hover::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 3px;
	background: #ed1b24;
	content: "";
}

.iqa-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 6;
	display: none;
	min-width: 220px;
	padding: 12px;
	margin: 0;
	background: #171717;
	box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}

.iqa-menu li:hover > .sub-menu {
	display: block;
}

.iqa-menu .sub-menu a {
	padding: 9px 10px;
}

.iqa-hero-content {
	max-width: 620px;
	padding-top: 58px;
	padding-bottom: 88px;
}

.iqa-hero h1 {
	max-width: 590px;
	margin: 0 0 18px;
	color: #fff;
	font-size: clamp(42px, 5vw, 64px);
	font-weight: 900;
	line-height: 1.04;
	letter-spacing: 0;
	text-transform: uppercase;
}

.iqa-hero p {
	max-width: 450px;
	margin: 0 0 30px;
	color: #fff;
	font-size: clamp(19px, 2vw, 25px);
	font-weight: 600;
	line-height: 1.35;
}

.iqa-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
}

.iqa-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 55px;
	padding: 0 31px;
	border: 2px solid transparent;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.iqa-button-primary {
	background: #ed1b24;
	color: #fff;
}

.iqa-button-primary:hover {
	background: #cf0006;
	color: #fff;
}

.iqa-button-outline {
	border-color: rgba(255, 255, 255, .72);
	color: #fff;
	background: rgba(23, 23, 23, .18);
}

.iqa-button-outline:hover {
	border-color: #fff;
	color: #fff;
	background: rgba(255, 255, 255, .1);
}

.iqa-section {
	padding: 32px 0 34px;
	background: #fff;
}

.iqa-section h2 {
	margin: 0 0 24px;
	color: #202020;
	font-size: clamp(26px, 3vw, 34px);
	font-weight: 900;
	line-height: 1.2;
	text-align: center;
}

.iqa-solution-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.iqa-solution-card {
	position: relative;
	display: block;
	min-height: 214px;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 13px 25px rgba(0, 0, 0, .14);
}

.iqa-solution-card img {
	display: block;
	width: 100%;
	height: 214px;
	object-fit: cover;
	transition: transform .3s ease;
}

.iqa-solution-card:hover img {
	transform: scale(1.05);
}

.iqa-solution-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(23, 23, 23, .06), rgba(23, 23, 23, .92));
}

.iqa-solution-label {
	position: absolute;
	right: 18px;
	bottom: 18px;
	left: 18px;
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	gap: 13px;
	align-items: center;
	color: #fff;
	font-size: 19px;
	font-weight: 900;
	line-height: 1.15;
}

.iqa-solution-icon,
.iqa-product-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.iqa-solution-icon {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #fff;
	color: #ed1b24;
}

.iqa-products {
	padding-top: 36px;
	padding-bottom: 70px;
	background: #f4f6f7;
}

.iqa-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px 28px;
}

.iqa-product-card {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	align-items: center;
	min-height: 96px;
	padding: 19px 23px;
	border: 1px solid #ecf0f1;
	border-radius: 8px;
	background: #fff;
	color: #3f3f3f;
	box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
	font-size: 17px;
	font-weight: 800;
	line-height: 1.25;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.iqa-product-card:hover {
	border-color: rgba(237, 27, 36, .48);
	color: #202020;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, .13);
}

.iqa-product-icon {
	width: 50px;
	height: 50px;
	color: #ed1b24;
}

.iqa-product-icon svg,
.iqa-solution-icon svg,
.iqa-footer-item svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.iqa-product-icon text,
.iqa-footer-item text {
	fill: currentColor;
	stroke: none;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 700;
}

.iqa-footer-strip {
	position: relative;
	padding: 28px 0;
	background: #171717;
	color: #fff;
}

.iqa-footer-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
	align-items: center;
	gap: 24px;
}

.iqa-footer-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	min-height: 58px;
	padding: 0 20px;
	border-right: 1px solid rgba(255, 255, 255, .35);
	color: #fff;
	font-size: 18px;
	font-weight: 700;
}

.iqa-footer-item svg {
	width: 44px;
	height: 44px;
	color: #ed1b24;
}

.iqa-whatsapp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border: 8px solid #fff;
	border-radius: 50%;
	background: #ed1b24;
	color: #fff;
	font-size: 0;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
}

.iqa-whatsapp::before {
	content: "W";
	font-size: 31px;
	font-weight: 900;
	line-height: 1;
}

@media (max-width: 1100px) {
	.iqa-header-inner {
		align-items: center;
	}

	.iqa-nav {
		padding-top: 0;
	}

	.iqa-menu {
		gap: 8px 22px;
	}

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

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

	.iqa-footer-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.iqa-whatsapp {
		position: fixed;
		right: 22px;
		bottom: 22px;
		z-index: 20;
	}
}

@media (max-width: 760px) {
	.iqa-shell {
		width: min(100% - 32px, 1180px);
	}

	.iqa-hero {
		min-height: auto;
	}

	.iqa-topbar-inner {
		flex-direction: column;
		gap: 4px;
		align-items: flex-start;
		padding: 8px 0;
		font-size: 14px;
	}

	.iqa-header-inner {
		align-items: flex-start;
		flex-direction: column;
		gap: 20px;
	}

	.iqa-logo img {
		max-width: 168px;
		max-height: 72px;
	}

	.iqa-menu {
		justify-content: flex-start;
		gap: 12px 18px;
	}

	.iqa-menu a {
		font-size: 13px;
	}

	.iqa-hero-content {
		padding-top: 42px;
		padding-bottom: 64px;
	}

	.iqa-hero h1 {
		font-size: 38px;
	}

	.iqa-button {
		width: 100%;
	}

	.iqa-section {
		padding: 28px 0;
	}

	.iqa-solution-grid,
	.iqa-product-grid,
	.iqa-footer-grid {
		grid-template-columns: 1fr;
	}

	.iqa-product-card {
		grid-template-columns: 62px minmax(0, 1fr);
		min-height: 88px;
		font-size: 16px;
	}

	.iqa-footer-item {
		justify-content: flex-start;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, .2);
	}
}
