.whoop-help-bot {
	width: 100%;
	position: relative;
	padding: 70px 0;
	overflow: hidden;
	color: #f6f6f6;
	background: #262626;
}

.whoop-help-bot__inner {
	display: grid;
	align-items: center;
	grid-template-columns: minmax(280px, 1fr) minmax(360px, 1fr);
	gap: 40px 48px;
	max-width: 1170px;
	margin: 0 auto;
	padding: 0 15px;
}

.whoop-help-bot__content {
	max-width: 540px;
}

.whoop-help-bot__title {
	margin: 0 0 20px;
	font-size: 56px;
	line-height: 1.4;
	font-weight: 500;
	color: #f6f6f6;
}

.whoop-help-bot__desc {
	margin: 0 0 40px;
	font-size: 18px;
	line-height: 1.4;
	font-weight: 500;
	color: #f6f6f6;
}

.whoop-help-bot__desc p {
	margin: 0 0 10px;
}

a.whoop-help-bot__button {
	display: block;
	width: 100%;
	max-width: 180px;
	padding: 10px 16px;
	font-family: inherit;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	text-align: center;
	color: #181818;
	text-transform: uppercase;
	text-decoration: none;
	background: #A9D000;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

a.whoop-help-bot__button:hover {
	color: #181818;
	background: #b7db17;
	box-shadow: 0 4px 12px rgba(182, 228, 0, 0.25);
	transform: translateY(-2px);
	opacity: 1;
}

.whoop-help-bot__features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
}

.whoop-help-bot__feature {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	color: #f6f6f6;
}

.whoop-help-bot__icon {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 120px;
	height: 120px;
}

.whoop-help-bot__icon i,
.whoop-help-bot__icon svg {
	width: 120px;
	height: 120px;
	color: #f6f6f6;
}

.whoop-help-bot__feature-text {
	font-size: 18px;
	line-height: 1.4;
	font-weight: 500;
	text-align: center;
	color: #f6f6f6;
}

@media (max-width: 1199px) {
	.whoop-help-bot {
		padding: 50px 0;
	}

	.whoop-help-bot__desc {
		margin: 0 0 20px;
	}
}

@media (max-width: 991px) {
	.whoop-help-bot__inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.whoop-help-bot__content {
		display: flex;
		flex-direction: column;
		align-items: center;
		max-width: 100%;
		text-align: center;
	}

	.whoop-help-bot__features {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}

	.whoop-help-bot__feature-text {
		font-size: 16px;
	}

	.whoop-help-bot__icon {
		width: 72px;
		height: 72px;
	}

	.whoop-help-bot__icon i,
	.whoop-help-bot__icon svg {
		width: 72px;
		height: 72px;
	}
}

@media (max-width: 767px) {
	.whoop-help-bot {
		padding: 30px 0;
	}

	.whoop-help-bot__title {
		font-size: 40px;
	}

	.whoop-help-bot__desc {
		font-size: 16px;
	}

	.whoop-help-bot__icon {
		width: 54px;
		height: 54px;
	}

	.whoop-help-bot__icon i,
	.whoop-help-bot__icon svg {
		width: 54px;
		height: 54px;
	}
}
