/* Why choose us */
.rtb-why {
	padding: 3rem 1.25rem;
	background: var(--rtb-white);
}

.rtb-why__inner {
	width: min(1100px, 100%);
	margin: 0 auto;
	text-align: center;
}

.rtb-why__title {
	margin: 0 0 0.5rem;
	color: var(--rtb-primary);
	font-size: clamp(1.4rem, 3vw, 1.9rem);
	font-weight: 700;
}

.rtb-why__subtitle {
	margin: 0 auto 2rem;
	max-width: 34rem;
	color: var(--rtb-muted);
}

.rtb-why__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.1rem;
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: left;
}

.rtb-why__item {
	background: var(--rtb-bg);
	border-radius: var(--rtb-radius);
	padding: 1.25rem 1.15rem;
	border: 1px solid var(--rtb-border);
}

.rtb-why__icon {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: rgba(22, 131, 232, 0.12);
	color: var(--rtb-secondary);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.75rem;
}

.rtb-why__icon svg {
	width: 1.2rem;
	height: 1.2rem;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.7;
}

.rtb-why__item-title {
	margin: 0 0 0.35rem;
	color: var(--rtb-primary);
	font-size: 1.05rem;
}

.rtb-why__item-text {
	margin: 0;
	color: var(--rtb-muted);
	font-size: 0.9rem;
	line-height: 1.45;
}

@media (max-width: 800px) {
	.rtb-why__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 480px) {
	.rtb-why__grid {
		grid-template-columns: 1fr;
	}
}
