/* ========== Tools Covered — reference logo strip ========== */
.asmorix-tools {
	--at-ink: #1f2937;
	--at-muted: #4b5563;
	--at-orange: #f5a623;
	--at-blue: #0c5adb;
	--at-font: "Nunito", "Poppins", sans-serif;
	--at-display: "Rajdhani", "Nunito", sans-serif;
	position: relative;
	padding: 56px 0 28px;
	background: #ffffff;
	color: var(--at-ink);
	font-family: var(--at-font);
}

.asmorix-tools__inner {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.asmorix-tools__header {
	text-align: center;
	margin: 0 auto 48px;
	max-width: 920px;
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}

.asmorix-tools__header.is-inview {
	opacity: 1;
	transform: none;
}

.asmorix-tools__title {
	margin: 0 0 14px;
	font-family: var(--at-display);
	font-size: 38px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.01em;
	color: var(--at-ink);
}

.asmorix-tools__underline {
	display: block;
	width: 168px;
	height: 5px;
	margin: 0 auto;
	border-radius: 999px;
	background: var(--at-blue);
}

.asmorix-tools__rail {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	gap: 16px 20px;
	overflow: visible;
	padding: 4px 2px 10px;
}

.asmorix-tools__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
	width: 84px;
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	opacity: 0;
	transform: translateY(16px);
	transition: opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1);
}

.asmorix-tools__item.is-inview {
	opacity: 1;
	transform: none;
}

.asmorix-tools__item:nth-child(1).is-inview { transition-delay: .04s; }
.asmorix-tools__item:nth-child(2).is-inview { transition-delay: .08s; }
.asmorix-tools__item:nth-child(3).is-inview { transition-delay: .12s; }
.asmorix-tools__item:nth-child(4).is-inview { transition-delay: .16s; }
.asmorix-tools__item:nth-child(5).is-inview { transition-delay: .20s; }
.asmorix-tools__item:nth-child(6).is-inview { transition-delay: .24s; }
.asmorix-tools__item:nth-child(7).is-inview { transition-delay: .28s; }
.asmorix-tools__item:nth-child(8).is-inview { transition-delay: .32s; }
.asmorix-tools__item:nth-child(9).is-inview { transition-delay: .36s; }
.asmorix-tools__item:nth-child(10).is-inview { transition-delay: .40s; }
.asmorix-tools__item:nth-child(11).is-inview { transition-delay: .44s; }
.asmorix-tools__item:nth-child(12).is-inview { transition-delay: .48s; }

.asmorix-tools__logo {
	display: inline-flex;
	width: 56px;
	height: 56px;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
	transition: transform .25s ease, box-shadow .25s ease;
}

.asmorix-tools__logo svg {
	width: 100%;
	height: 100%;
	display: block;
}

.asmorix-tools__item:hover .asmorix-tools__logo {
	transform: translateY(-4px) scale(1.04);
	box-shadow: 0 16px 32px rgba(15, 23, 42, 0.16);
}

.asmorix-tools__name {
	margin: 0;
	font-family: var(--at-font);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #111827;
	text-align: center;
	line-height: 1.2;
}

@media (max-width: 900px) {
	.asmorix-tools {
		padding: 44px 0 20px;
	}
	.asmorix-tools__rail {
		gap: 14px 16px;
		justify-content: center;
	}
	.asmorix-tools__item {
		width: 76px;
	}
	.asmorix-tools__logo {
		width: 50px;
		height: 50px;
		border-radius: 12px;
	}
}

@media (max-width: 560px) {
	.asmorix-tools__inner {
		width: min(100% - 28px, 1180px);
	}
	.asmorix-tools__header {
		margin-bottom: 36px;
	}
	.asmorix-tools__title {
		font-size: 26px;
	}
	.asmorix-tools__rail {
		gap: 12px 12px;
		justify-content: center;
	}
	.asmorix-tools__item {
		width: 68px;
	}
	.asmorix-tools__logo {
		width: 46px;
		height: 46px;
	}
	.asmorix-tools__name {
		font-size: 11.5px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.asmorix-tools__header,
	.asmorix-tools__item {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}
