/* ─── Flexible Service Widget ────────────────────────────────────────────── */

.hbc-fs-wrap {
	width: 100%;
}

.hbc-fs-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 90px;
	padding: 54px 8%;
}

.hbc-fs-left {
	width: 58%;
	min-width: 0;
}

.hbc-fs-right {
	flex: 1;
	min-width: 0;
}

.hbc-fs-label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 34px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	color: #df9b3a;
	text-transform: uppercase;
}

.hbc-fs-label-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #df9b3a;
}

.hbc-fs-label-icon i,
.hbc-fs-label-icon svg {
	font-size: 14px;
	width: 14px;
	height: 14px;
}

.hbc-fs-title {
	margin: 0 0 28px;
	padding: 0;
	font-size: 48px;
	font-weight: 500;
	line-height: 1.18;
	color: #2d333b;
}

.hbc-fs-highlight {
	color: #df9b3a;
}

.hbc-fs-desc {
	max-width: 650px;
	font-size: 19px;
	font-weight: 400;
	line-height: 1.45;
	color: #4b5058;
}

.hbc-fs-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 36px;
}

.hbc-fs-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.hbc-fs-check {
	flex-shrink: 0;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	color: #df9b3a;
}

.hbc-fs-item-text {
	font-size: 17px;
	font-weight: 700;
	line-height: 1.45;
	color: #383d45;
}

.hbc-fs-btn-link {
	display: inline-block;
	text-decoration: none;
}

.hbc-fs-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 18px 36px;
	border-radius: 40px;
	background: #df9b3a;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.hbc-fs-btn:hover,
.hbc-fs-btn-link:hover .hbc-fs-btn {
	opacity: 0.88;
	transform: translateY(-2px);
}

/* ─── Tablet (≤1024px) ───────────────────────────────────────────────────── */

@media (max-width: 1024px) {
	.hbc-fs-inner {
		gap: 48px;
		padding: 48px 5%;
	}

	.hbc-fs-title {
		font-size: 40px;
	}

	.hbc-fs-desc {
		font-size: 16px;
	}

	.hbc-fs-item-text {
		font-size: 15px;
	}
}

/* ─── Mobile (≤767px) ────────────────────────────────────────────────────── */

@media (max-width: 767px) {
	.hbc-fs-inner {
		flex-direction: column;
		align-items: stretch;
		gap: 30px;
		padding: 36px 22px;
	}

	.hbc-fs-left {
		width: 100% !important;
	}

	.hbc-fs-label {
		margin-bottom: 22px;
		font-size: 13px;
	}

	.hbc-fs-title {
		font-size: 32px;
		line-height: 1.18;
		margin-bottom: 20px;
	}

	.hbc-fs-desc {
		max-width: 100%;
		font-size: 15px;
		line-height: 1.55;
	}

	.hbc-fs-list {
		gap: 16px;
		margin-bottom: 26px;
	}

	.hbc-fs-item-text {
		font-size: 14px;
	}

	.hbc-fs-btn {
		width: 100%;
		white-space: normal;
		font-size: 14px;
	}
}

/* ─── Small mobile (≤480px) ─────────────────────────────────────────────── */

@media (max-width: 480px) {
	.hbc-fs-title {
		font-size: 28px;
	}
}
