/* ===============================
   HH HERO (блок 1)
================================ */

.hh-hero {
	padding: 60px 0;
	background-color: #ffffff;
}

.hh-hero__grid {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 60px;
	align-items: center;
	max-width: 1100px;
	margin: 0 auto;
}

.hh-hero__title {
	font-size: 36px;
	line-height: 1.2;
	color: #1f2124;
	margin-bottom: 20px;
}

.hh-hero__subtitle {
	font-size: 15px;
	line-height: 1.6;
	color: #6b6b6b;
	margin-bottom: 28px;
	max-width: 520px;
}

/* цена */
.hh-hero__price {
	display: flex;
	align-items: flex-end;
	gap: 8px;
	margin-bottom: 28px;
}

.hh-hero__currency {
	font-size: 20px;
	font-weight: 500;
	color: #1f2124;
	margin-bottom: 6px;
}

.hh-hero__value {
	font-family: "Poppins", sans-serif;
	font-size: 48px;
	font-weight: 700;
	color: #1f2124;
	line-height: 1;
}

.hh-hero__period {
	font-size: 14px;
	color: #9b9b9b;
	margin-bottom: 8px;
}

/* буллеты */
.hh-hero__list {
	list-style: none;
	margin-bottom: 32px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hh-hero__list li {
	position: relative;
	padding-left: 26px;
	font-size: 14px;
	color: #1f2124;
}

.hh-hero__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	width: 16px;
	height: 16px;
	background: url("../img/check-yellow.svg") center / contain no-repeat;
}

/* кнопки */
.hh-hero__btns {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 280px;
}

.hh-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 12px 28px;
	background-color: #f6c23e;
	color: #111;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hh-hero__btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(246, 194, 62, 0.35);
}

/* декоративная карточка */
.hh-hero__card-wrap {
	display: flex;
	justify-content: center;
}

.hh-demo-card {
	background: #2c2f33;
	border-radius: 24px;
	padding: 28px;
	width: 100%;
	max-width: 360px;
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(246, 194, 62, 0.3);
	color: #fff;
}

.hh-demo-card__header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 20px;
}

.hh-demo-card__avatar {
	width: 52px;
	height: 52px;
	background: #f6c23e;
	color: #111;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 18px;
	flex-shrink: 0;
}

.hh-demo-card__name {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 6px;
}

.hh-demo-card__badge {
	display: inline-block;
	background: rgba(14, 113, 70, 0.25);
	color: #4ade80;
	font-size: 12px;
	font-weight: 600;
	padding: 3px 10px;
	border-radius: 999px;
	border: 1px solid rgba(74, 222, 128, 0.3);
}

.hh-demo-card__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 14px;
}

.hh-demo-card__label {
	color: #9b9b9b;
}

.hh-demo-card__status {
	color: #4ade80;
	font-weight: 500;
}

.hh-demo-card__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
}

.hh-demo-card__price {
	font-family: "Poppins", sans-serif;
	font-size: 26px;
	font-weight: 700;
	color: #f6c23e;
}

.hh-demo-card__ready {
	font-size: 13px;
	color: #9b9b9b;
}


/* ===============================
   HH STEPS (блок 2)
================================ */

.hh-steps {
	padding: 60px 0;
	background: url("../img/bg_gray.jpg") center / cover no-repeat;
	position: relative;
	overflow: hidden;
}

.hh-steps::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(255, 255, 255, 0.15);
	pointer-events: none;
}

.hh-steps .container {
	position: relative;
	z-index: 1;
}

.hh-steps__title {
	text-align: center;
	font-size: 26px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 48px;
}

.hh-steps__list {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
	max-width: 1100px;
	margin: 0 auto 32px;
}

.hh-step {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 20px;
	padding: 24px 20px;
	transition: transform 0.3s ease, background 0.3s ease;
}

.hh-step:hover {
	transform: translateY(-6px);
	background: rgba(255, 255, 255, 0.14);
}

.hh-step__num {
	font-family: "Poppins", sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: #f6c23e;
	margin-bottom: 12px;
}

.hh-step__text {
	font-size: 13px;
	line-height: 1.6;
	color: #d0d0d0;
}

.hh-steps__note {
	text-align: center;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
	max-width: 600px;
	margin: 0 auto;
}


/* ===============================
   HH SLIDER (блок 3)
================================ */

.hh-slider {
	padding: 60px 0;
	background-color: #f8f8f8;
}

.hh-slider__title {
	text-align: center;
	font-size: 26px;
	font-weight: 600;
	color: #7aaedc;
	margin-bottom: 12px;
}

.hh-slider__subtitle {
	text-align: center;
	font-size: 14px;
	color: #9b9b9b;
	margin-bottom: 40px;
}

/* карточка аккаунта */
.hh-acc-card {
	background: #ffffff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
	border: 1px solid #e5e5e5;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
}

.hh-acc-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.hh-acc-card__body {
	padding: 20px;
	flex: 1;
}

.hh-acc-card__header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}

.hh-acc-card__avatar {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	flex-shrink: 0;
}

.hh-acc-card__name {
	font-size: 15px;
	font-weight: 600;
	color: #1f2124;
	margin-bottom: 4px;
}

.hh-acc-card__badge {
	display: inline-block;
	background: #e8f3eb;
	color: #0e7146;
	font-size: 11px;
	font-weight: 600;
	padding: 3px 8px;
	border-radius: 999px;
}

.hh-acc-card__type {
	font-size: 12px;
	color: #9b9b9b;
	margin-bottom: 12px;
}

.hh-acc-card__stats {
	display: flex;
	gap: 16px;
	font-size: 13px;
	color: #6b6b6b;
}

.hh-acc-card__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 20px;
	border-top: 1px dashed #e5e5e5;
	font-size: 13px;
	color: #9b9b9b;
}

.hh-acc-card__price {
	font-family: "Poppins", sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #1f2124;
}

/* swiper кастомизация под стиль сайта */
.hh-swiper {
	padding: 8px 4px 48px !important;
}

.hh-swiper .swiper-pagination-bullet-active {
	background: #f6c23e !important;
}

.hh-swiper .swiper-button-next,
.hh-swiper .swiper-button-prev {
	color: #1f2124 !important;
	background: #fff;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
	border: 1px solid #e5e5e5;
	transition: background 0.3s ease, color 0.3s ease;
}

.hh-swiper .swiper-button-next:hover,
.hh-swiper .swiper-button-prev:hover {
	background: #f6c23e;
	color: #111 !important;
}

.hh-swiper .swiper-button-next::after,
.hh-swiper .swiper-button-prev::after {
	font-size: 18px !important;
}


/* ===============================
   HH ADVANTAGES (блок 4)
================================ */

.hh-advantages {
	padding: 60px 0;
	background-color: #ffffff;
}

.hh-advantages__title {
	text-align: center;
	font-size: 26px;
	font-weight: 600;
	color: #7aaedc;
	margin-bottom: 48px;
}

.hh-advantages__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	max-width: 1100px;
	margin: 0 auto;
}

.hh-adv-card {
	background: #f8f8f8;
	border-radius: 20px;
	padding: 28px 24px;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.hh-adv-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
}

.hh-adv-card__icon {
	width: 48px;
	height: 48px;
	background: #fde68a;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	color: #1f2124;
	transition: background 0.3s ease;
}

.hh-adv-card:hover .hh-adv-card__icon {
	background: #f6c23e;
}

.hh-adv-card__icon svg {
	width: 26px;
	height: 26px;
}

.hh-adv-card__title {
	font-size: 16px;
	font-weight: 600;
	color: #111;
	margin-bottom: 10px;
}

.hh-adv-card__text {
	font-size: 13px;
	line-height: 1.6;
	color: #6b6b6b;
}


/* ===============================
   HH FAQ (блок 5)
================================ */

.hh-faq {
	padding: 60px 0;
	background: url("../img/bg_gray.jpg") center / cover no-repeat;
	position: relative;
	overflow: hidden;
}

.hh-faq::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(255, 255, 255, 0.7);
	pointer-events: none;
}

.hh-faq .container {
	position: relative;
	z-index: 1;
	max-width: 860px;
}

.hh-faq__title {
	text-align: center;
	font-size: 26px;
	font-weight: 600;
	color: #1f2124;
	margin-bottom: 40px;
}

.hh-faq__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}


/* ===============================
   HH ORDER / ФОРМА (блок 6)
================================ */

.hh-order {
	padding: 60px 0;
	background: url("../img/bg_yellow.jpg") center / cover no-repeat;
	position: relative;
	overflow: hidden;
}

.hh-order::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(255, 255, 255, 0.15);
	pointer-events: none;
}

.hh-order .container {
	position: relative;
	z-index: 1;
}

.hh-order__inner {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.hh-order__title {
	font-size: 28px;
	font-weight: 600;
	color: #1f2124;
	margin-bottom: 12px;
}

.hh-order__subtitle {
	font-size: 15px;
	color: #3a3a3a;
	margin-bottom: 32px;
}

.hh-order__fields {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.hh-order__input {
	flex: 1;
	min-width: 180px;
	padding: 14px 20px;
	border-radius: 999px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	background: rgba(255, 255, 255, 0.85);
	font-size: 15px;
	color: #1f2124;
	outline: none;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hh-order__input:focus {
	border-color: #f6c23e;
	box-shadow: 0 0 0 3px rgba(246, 194, 62, 0.2);
}

.hh-order__input::placeholder {
	color: #9b9b9b;
}

.hh-order__btn {
	padding: 14px 32px;
	background: #1f2124;
	color: #f6c23e;
	border: none;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	white-space: nowrap;
}

.hh-order__btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.hh-order__note {
	margin-top: 20px;
	font-size: 13px;
	color: #3a3a3a;
}


/* ===============================
   HH SEO (блок 7)
================================ */

.hh-seo {
	padding: 60px 0;
	background-color: #ffffff;
}

.hh-seo__title {
	text-align: center;
	font-size: 22px;
	font-weight: 600;
	color: #7aaedc;
	margin-bottom: 32px;
}

.hh-seo__content {
	max-width: 900px;
	margin: 0 auto;
}

.hh-seo__content p {
	font-size: 14px;
	line-height: 1.75;
	color: #6b6b6b;
	margin-bottom: 14px;
}

.hh-seo__content p:last-child {
	margin-bottom: 0;
}


/* ===============================
   АДАПТИВ
================================ */

@media (max-width: 1024px) {
	.hh-hero__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.hh-hero__card-wrap {
		max-width: 400px;
		margin: 0 auto;
		width: 100%;
	}

	.hh-steps__list {
		grid-template-columns: repeat(3, 1fr);
	}

	.hh-advantages__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.hh-hero__title {
		font-size: 26px;
	}

	.hh-hero__value {
		font-size: 38px;
	}

	.hh-hero__btns {
		max-width: 100%;
	}

	.hh-steps__list {
		grid-template-columns: 1fr;
	}

	.hh-advantages__grid {
		grid-template-columns: 1fr;
	}

	.hh-order__fields {
		flex-direction: column;
	}

	.hh-order__btn {
		width: 100%;
	}

	.hh-order__input {
		width: 100%;
	}
}