/* =========================================================================
   Professionals ("Создано для профессионалов")
   ========================================================================= */
#usecases .section-head {
	max-width: none;
	margin-bottom: clamp(28px, 4vw, 44px);
}
#usecases .section-head h2 {
	font-size: clamp(24px, 2.4vw, 30px);
}
.pros {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
	max-width: 1680px;
	margin-inline: auto;
}
.pro {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 22px 18px;
	box-shadow: 0 2px 12px rgba(13, 27, 62, 0.06);
	transition:
		transform 0.2s var(--ease),
		box-shadow 0.2s var(--ease);
}
.pro:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(13, 27, 62, 0.1);
}
.pro__ic {
	position: relative;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--tint);
	color: var(--blue);
	display: grid;
	place-items: center;
	margin-bottom: 18px;
}
.pro__ic svg {
	width: 22px;
	height: 22px;
}
.pro__ic--raw {
	background: none;
	width: max-content;
	height: auto;
	justify-items: start;
}
.pro__ic--raw svg {
	width: 44px;
	height: auto;
}
.pro__ic--dashed {
	border-radius: 12px;
	background-color: var(--tint);
	background-size: 100% 100%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' fill='none'%3E%3Crect x='0.75' y='0.75' width='42.5' height='42.5' rx='11.5' stroke='%230259FF' stroke-width='3' stroke-linecap='round' stroke-dasharray='10 8'/%3E%3C/svg%3E");
}
.pro__ic--dashed svg {
	width: 26px;
	height: 26px;
}
.pro__ic--solid {
	border: 2.5px solid var(--blue);
	border-radius: 12px;
}
.pro__ic--corners::before,
.pro__ic--corners::after,
.pro__ic--corners > span::before,
.pro__ic--corners > span::after {
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	border: 2.5px solid var(--blue);
}
.pro__ic--corners::before {
	top: -7px;
	left: -7px;
	border-right: 0;
	border-bottom: 0;
	border-radius: 6px 0 0 0;
}
.pro__ic--corners::after {
	top: -7px;
	right: -7px;
	border-left: 0;
	border-bottom: 0;
	border-radius: 0 6px 0 0;
}
.pro__ic--corners > span {
	position: absolute;
	inset: 0;
}
.pro__ic--corners > span::before {
	bottom: -7px;
	left: -7px;
	top: auto;
	border-right: 0;
	border-top: 0;
	border-radius: 0 0 0 6px;
}
.pro__ic--corners > span::after {
	bottom: -7px;
	right: -7px;
	top: auto;
	border-left: 0;
	border-top: 0;
	border-radius: 0 0 6px 0;
}
.pro h3 {
	font-size: 15px;
	margin-bottom: 8px;
	color: #0d1b3e;
}
.pro p {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.5;
}

@media (max-width: 1280px) {
	.pros {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 1080px) {
	.pros {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 680px) {
	.pros {
		grid-template-columns: 1fr;
	}
}
