/* ============================================================
   BIZ SERVICES — section-biz.css
   ============================================================ */

.biz-services {
	padding: 150px 0;

 background-image: url('/wp-content/uploads/2026/05/biznes-uslugi.png'); 

	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.biz-services__head {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
	text-align: center;
	margin-bottom: 60px;
}

.biz-services__title {
	font-size: var(--h2-size);
	line-height: var(--h2-line-height);
	font-weight: var(--h2-weight);
	color: var(--dark);
	max-width: 782px;
}

.biz-services__subtitle {
	font-size: var(--text-size);
	line-height: var(--text-line-height);
	color: var(--dark);
	max-width: 548px;
}

/* ---------- Grid ---------- */
.biz-services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

/* ---------- Card ---------- */
.biz-services__card {
	background: var(--fon, #fff);
	border-radius: 20px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 25px;
	align-items: center;
	box-shadow: var(--shadow-card, 4px 4px 17px 0px rgba(38, 59, 128, 0.15));
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.biz-services__card:hover {
	transform: translateY(-4px);
	box-shadow: 4px 8px 24px rgba(38, 59, 128, 0.2);
}

.biz-services__card-img {
	width: 100%;
	height: 195px;
	object-fit: cover;
	border-radius: 20px;
	flex-shrink: 0;
}

.biz-services__card-body {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: center;
	width: 100%;
	text-align: center;
}

.biz-services__card-title {
	font-size: 32px;
	line-height: 110%;
	font-weight: 700;
	color: var(--dark);
}

.biz-services__card-desc {
	font-size: var(--text-size);
	line-height: var(--text-line-height);
	color: var(--dark);
}

.biz-services__card-more {
	display: inline-flex;
	flex-direction: row;
	gap: 8px;
	align-items: center;
	background: none;
	border: none;
	cursor: pointer;
	font-family: var(--font-base);
	font-size: var(--text-size);
	line-height: var(--text-line-height);
	color: var(--dark);
	text-decoration: none;
	transition: color 0.2s ease;
	padding: 0;
	flex-grow: 1;
}

.biz-services__card-more:hover { color: var(--main); }

.biz-services__card-price {
	color: var(--main);
	font-size: 32px;
	line-height: 130%;
	font-weight: 700;
	text-align: center;
	width: 100%;
}

.biz-services__card-btn {
	width: 100%;
	max-width: 392px;
	font-size: 18px;
	padding: 10px 20px 12px;
	height: 45px;
}

/* ---------- Promo card ---------- */
.biz-services__card--promo {
	border-radius: 20px;
	padding: 20px 20px 30px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	box-shadow: 4px 4px 17px 0px rgba(38, 59, 128, 0.25);
	background-color: #c8d0ef; /* фоллбэк */
	min-height: 300px;
}

.biz-services-promo__info {
	background: #fff;
	border-radius: 20px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 40px;
	align-items: center;
	width: 100%;
	max-width: 413px;
}

.biz-services-promo__text {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
	text-align: center;
}

.biz-services-promo__title {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: baseline;
	gap: 6px;
	text-align: center;
}

.biz-services-promo__title-regular {
	color: #222;
	font-family: "Manrope-Bold", sans-serif;
	font-size: 40px;
	line-height: 110%;
	font-weight: 700;
}

.biz-services-promo__title-accent {
	color: var(--main, #2a3a81);
	font-family: "Manrope-Bold", sans-serif;
	font-size: 50px;
	line-height: 110%;
	font-weight: 700;
}

.biz-services-promo__desc {
	color: #222;
	font-family: "Manrope-Regular", sans-serif;
	font-size: 22px;
	line-height: 130%;
	margin: 0;
	text-align: center;
}

.biz-services-promo__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: stretch;
	background: var(--main, #2a3a81);
	border: none;
	border-radius: 10px;
	padding: 10px 20px 12px;
	height: 45px;
	color: #fff;
	font-family: "Manrope-Regular", sans-serif;
	font-size: 18px;
	line-height: 120%;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.biz-services-promo__btn:hover { opacity: 0.85; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
	.biz-services__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.biz-services {
		padding: 80px 0;
	}
	.biz-services__grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.biz-services__card--promo {
		padding: 180px 20px 30px 20px;
	}
	.biz-services-promo__title-regular { font-size: 26px; }
	.biz-services-promo__title-accent  { font-size: 40px; }
	.biz-services-promo__desc          { font-size: 18px; }
	.biz-services-promo__info          { gap: 20px; }
}
