.ic-hero {
	--ic-hero-accent: #e71922;
	--ic-hero-accent-hover: #c20f17;
	--ic-hero-text: #151719;
	--ic-hero-text-muted: #4e5358;
	--ic-hero-surface: #ffffff;
	--ic-hero-bg: #f3f4f5;
	--ic-hero-border: rgba(16, 24, 40, 0.1);
	position: relative;
	overflow: hidden;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	background:
		linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.98) 0%,
			rgba(255, 255, 255, 0.95) 38%,
			rgba(255, 255, 255, 0.72) 51%,
			rgba(255, 255, 255, 0.05) 72%
		),
		var(--ic-hero-bg);
	color: var(--ic-hero-text);
}

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

.ic-hero__inner {
	min-height: 680px;
	display: grid;
	grid-template-columns: minmax(560px, 1.1fr) minmax(440px, 0.9fr);
	align-items: stretch;
	max-width: 1200px;
	margin: 0 auto;
}

.ic-hero__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(48px, 4vw, 72px) 32px;
}

.ic-hero__eyebrow {
	margin: 0 0 25px;
	font-size: clamp(17px, 1.35vw, 23px);
	font-weight: 700;
	letter-spacing: -0.035em;
	color: var(--ic-hero-accent);
}

.ic-hero .ic-hero__title {
	margin: 0;
	font-size: clamp(42px, 4.4vw, 68px);
	line-height: 1.14;
	letter-spacing: -0.02em;
	font-weight: 700;
	color: var(--ic-hero-text);
	word-break: keep-all;
}

.ic-hero .ic-hero__title strong {
	font-weight: 850;
	color: var(--ic-hero-text);
}

.ic-hero__description {
	margin: 28px 0 0;
	max-width: 620px;
	font-size: clamp(18px, 1.35vw, 23px);
	line-height: 1.75;
	font-weight: 500;
	letter-spacing: -0.03em;
	color: var(--ic-hero-text-muted);
	word-break: keep-all;
}

.ic-hero__accent-line {
	display: block;
	width: 42px;
	height: 3px;
	margin: 34px 0 28px;
	background: var(--ic-hero-accent);
	border-radius: 999px;
}

.ic-hero__cards {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: stretch;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ic-hero__card {
	min-height: 108px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 10px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 6px 20px rgba(16, 24, 40, 0.08);
	transition:
		transform 180ms ease,
		box-shadow 180ms ease,
		background-color 180ms ease;
}

.ic-hero__card:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 28px rgba(16, 24, 40, 0.14);
}

.ic-hero__card-icon {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	color: var(--ic-hero-accent);
}

.ic-hero__card-icon svg {
	width: 48px;
	height: 48px;
	display: block;
}

.ic-hero__card-title {
	min-height: 2.7em;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	line-height: 1.35;
	font-weight: 750;
	letter-spacing: -0.035em;
	text-align: center;
	color: #232629;
	word-break: keep-all;
}

.ic-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 32px;
}

.ic-hero__btn {
	min-width: 180px;
	min-height: 58px;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 15px 24px;
	border: 2px solid var(--ic-hero-accent);
	border-radius: 6px;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.03em;
	text-decoration: none;
	transition:
		transform 180ms ease,
		box-shadow 180ms ease,
		background-color 180ms ease,
		color 180ms ease;
}

.ic-hero__btn--primary {
	background: var(--ic-hero-accent);
	color: #fff !important;
	box-shadow: 0 10px 24px rgba(231, 25, 34, 0.22);
}

.ic-hero__btn--outline {
	background: rgba(255, 255, 255, 0.75);
	color: var(--ic-hero-accent) !important;
}

.ic-hero__btn:hover {
	transform: translateY(-2px);
}

.ic-hero__btn--primary:hover {
	background: var(--ic-hero-accent-hover);
	border-color: var(--ic-hero-accent-hover);
	box-shadow: 0 14px 28px rgba(194, 15, 23, 0.26);
}

.ic-hero__btn--outline:hover {
	background: var(--ic-hero-accent);
	color: #fff !important;
	box-shadow: 0 12px 24px rgba(231, 25, 34, 0.16);
}

.ic-hero__btn:focus-visible {
	outline: 3px solid rgba(231, 25, 34, 0.35);
	outline-offset: 4px;
}

.ic-hero__media {
	position: relative;
	min-width: 0;
	background:
		linear-gradient(180deg, #eff2f4, #dfe4e7);
}

.ic-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.18) 24%, rgba(255, 255, 255, 0) 55%),
		rgba(255, 255, 255, 0.08);
}

.ic-hero__image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
	filter: saturate(0.15) contrast(1) brightness(1.05);
}

.ic-hero--no-image .ic-hero__media {
	background:
		linear-gradient(135deg, #f5f6f7 0%, #e5e8ea 55%, #d7dcdf 100%);
}

@media (max-width: 1199px) {
	.ic-hero__inner {
		grid-template-columns: minmax(340px, 1.2fr) minmax(260px, 0.8fr);
		min-height: auto;
	}

	.ic-hero__content {
		padding: 40px 28px;
	}

	.ic-hero .ic-hero__title {
		font-size: clamp(32px, 4vw, 48px);
	}

	.ic-hero__btn {
		min-width: 160px;
	}

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

@media (max-width: 767px) {
	.ic-hero {
		background: var(--ic-hero-bg);
	}

	.ic-hero__inner {
		min-height: auto;
		grid-template-columns: 1fr;
	}

	.ic-hero__content {
		padding: 40px 20px 32px;
	}

	.ic-hero__eyebrow {
		margin-bottom: 18px;
		font-size: 16px;
	}

	.ic-hero .ic-hero__title {
		font-size: clamp(32px, 8vw, 44px);
		line-height: 1.18;
	}

	.ic-hero__description {
		margin-top: 21px;
		max-width: none;
		font-size: 16px;
		line-height: 1.65;
	}

	.ic-hero__accent-line {
		margin: 26px 0 22px;
	}

	.ic-hero__card {
		min-height: 100px;
		padding: 12px 8px;
	}

	.ic-hero__card-icon {
		width: 45px;
		height: 45px;
	}

	.ic-hero__card-title {
		font-size: 13px;
	}

	.ic-hero__actions {
		flex-direction: column;
		gap: 11px;
		margin-top: 24px;
	}

	.ic-hero__btn {
		width: 100%;
		min-width: 0;
		min-height: 56px;
	}

	.ic-hero__media {
		height: 300px;
		order: 2;
	}

	.ic-hero__media::after {
		background:
			linear-gradient(180deg, rgba(243, 244, 245, 0.95) 0%, rgba(255, 255, 255, 0.18) 25%, rgba(255, 255, 255, 0) 55%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.ic-hero__card,
	.ic-hero__btn {
		transition: none;
	}
}
