/**
 * Блок reb/hub-hero (блок 02 хаба услуг).
 * Светлый фон, крошки сверху, справа зеленая карточка экспресс-оффера.
 */

.reb-hub-hero {
	background: var(--reb-bg);
	border-bottom: 1px solid var(--reb-border);
}

.reb-hub-hero__inner {
	padding-top: 24px;
	padding-bottom: 48px;
}

/* Крошки. */
.reb-hub-hero__crumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 26px;
	font-size: 13px;
	color: var(--reb-text-faint);
}

.reb-hub-hero__crumb {
	color: var(--reb-text-muted);
}

.reb-hub-hero__crumb:hover {
	color: var(--reb-accent);
}

.reb-hub-hero__crumb--current {
	color: var(--reb-text);
	font-weight: 600;
}

.reb-hub-hero__crumb-sep {
	color: var(--reb-text-faint);
}

.reb-hub-hero__row {
	display: flex;
	align-items: flex-start;
	gap: 40px;
}

/* Левая колонка: заголовок и факты. */
.reb-hub-hero__main {
	flex: 1;
	min-width: 0;
}

.reb-hub-hero__title {
	margin: 0 0 18px;
	font-size: 40px;
	line-height: 1.1;
	max-width: 640px;
}

.reb-hub-hero__intro {
	margin: 0;
	max-width: 620px;
	font-size: 17px;
	line-height: 1.55;
	color: var(--reb-text-muted);
}

.reb-hub-hero__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.reb-hub-hero-fact {
	flex: 1 1 160px;
	max-width: 220px;
	padding: 16px 18px;
	background: #fff;
	border: 1px solid var(--reb-border);
}

.reb-hub-hero-fact__value {
	font-size: 22px;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--reb-accent);
}

.reb-hub-hero-fact__label {
	margin-top: 4px;
	font-size: 13px;
	line-height: 1.35;
	color: var(--reb-text-muted);
}

/* Карточка экспресс-оффера. */
.reb-hub-hero__offer {
	flex: 0 0 380px;
	width: 380px;
	padding: 26px 28px;
	background: linear-gradient(120deg, var(--reb-text) 0%, var(--reb-plate) 100%);
	color: #fff;
}

.reb-hub-hero__offer-kicker {
	font-family: var(--reb-font-mono);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #7FD6A6;
}

.reb-hub-hero__offer-title {
	margin-top: 10px;
	font-size: 21px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: -0.01em;
}

.reb-hub-hero__offer-text {
	margin: 10px 0 0;
	font-size: 14px;
	line-height: 1.5;
	color: #DCEFE3;
}

.reb-hub-hero__offer-btn {
	width: 100%;
	margin-top: 18px;
}

.reb-hub-hero__offer-contacts {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 6px 12px;
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.reb-hub-hero__offer-phone {
	font-size: 18px;
	font-weight: 800;
	color: #fff;
}

.reb-hub-hero__offer-phone:hover {
	color: #DCEFE3;
}

.reb-hub-hero__offer-messenger {
	font-size: 14px;
	font-weight: 600;
	color: #7FD6A6;
}

.reb-hub-hero__offer-messenger:hover {
	color: #fff;
}

/* Адаптив. */
@media (max-width: 1024px) {
	.reb-hub-hero__row {
		flex-direction: column;
	}

	.reb-hub-hero__offer {
		flex: 1 1 100%;
		width: 100%;
		max-width: 520px;
	}
}

@media (max-width: 768px) {
	.reb-hub-hero__inner {
		padding-top: 18px;
		padding-bottom: 36px;
	}

	.reb-hub-hero__title {
		font-size: 28px;
	}

	.reb-hub-hero__intro {
		font-size: 15px;
	}

	.reb-hub-hero-fact {
		flex-basis: 45%;
		max-width: none;
	}
}

@media (max-width: 480px) {
	.reb-hub-hero-fact {
		flex-basis: 100%;
	}
}
