.section {
	padding: 56px 0;
}

.section__title {
	margin: 0 0 24px;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -.02em;
}

.section__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 24px;
}

.section__head .section__title {
	margin: 0;
}

.section__link {
	font-size: 14px;
	font-weight: 600;
	color: var(--green);
}

.section__link:hover {
	color: var(--green-dark);
	text-decoration: underline;
}

.hero {
	padding: 56px 0;
	background: linear-gradient(180deg, var(--green-soft) 0%, var(--white) 100%);
}

.hero__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.hero__caption {
	margin: 0;
	padding: 6px 14px;
	border-radius: 999px;
	background: var(--white);
	border: 1px solid var(--green-border);
	font-size: 13px;
	font-weight: 600;
	color: var(--green-dark);
}

.hero__title {
	margin: 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -.03em;
}

.hero__text {
	margin: 0;
	max-width: 560px;
	font-size: 17px;
	line-height: 1.6;
	color: var(--gray);
}

.hero__btn {
	margin-top: 8px;
	padding: 14px 32px;
	font-size: 15px;
}

.hero__note {
	margin: 0;
	font-size: 13px;
	color: var(--gray);
}

.hero__media img {
	width: 100%;
	height: auto;
	border-radius: 24px;
	object-fit: cover;
}

.heading {
	margin: 0;
	font-family: 'Outfit', sans-serif;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -.03em;
}

.section__head--center {
	justify-content: center;
	text-align: center;
}

.section__head--center .heading {
	flex: 1 1 100%;
}

.section__foot {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

.stars {
	display: inline-flex;
	align-items: center;
	gap: 2px;
}

.star {
	width: 12px;
	height: 12px;
	color: var(--line);
}

.star--on {
	color: var(--green);
}

.promo {
	padding: 72px 0 24px;
}

.promo-accordion {
	display: flex;
	gap: 16px;
	height: 460px;
}

.promo-card {
	position: relative;
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	align-items: flex-end;
	border-radius: 20px;
	background: var(--bg-light);
	overflow: hidden;
	cursor: pointer;
	transition: flex-grow .55s cubic-bezier(.22, .61, .36, 1);
}

.promo-card.is-active {
	flex-grow: 3.2;
}

.promo-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.promo-card__text {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 24px;
	color: var(--white);
	background: linear-gradient(0deg, rgba(15, 23, 42, .72), transparent);
}

.promo-card__title {
	margin: 0 0 6px;
	font-family: 'Outfit', sans-serif;
	font-size: 18px;
	font-weight: 700;
}

.promo-card__sub {
	margin: 0;
	font-size: 13px;
	opacity: .9;
}

.category-card {
	display: flex;
	flex-direction: column;
	border-radius: 20px;
	overflow: hidden;
	background: var(--white);
	box-shadow: 0 2px 12px rgba(15, 23, 42, .08);
	transition: box-shadow .2s ease;
}

.category-card:hover {
	box-shadow: 0 12px 28px rgba(15, 23, 42, .12);
}

.category-card__image {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 20px;
	background: var(--bg-light) center/cover no-repeat;
	position: relative;
	z-index: 1;
}

.category-card__info {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-top: -20px;
	padding: 40px 16px 24px;
	border-radius: 12px;
	background: var(--bg-page);
	position: relative;
	z-index: 0;
	transition: background .2s ease;
}

.category-card:hover .category-card__info {
	background: var(--green-soft);
}

.category-card__name {
	font-family: 'Outfit', sans-serif;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -.03em;
	color: var(--dark);
}

.category-card__count {
	font-size: 14px;
	color: var(--gray);
}

.rent {
	background: var(--green-soft);
}

.rent__intro {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.rent__caption {
	padding: 6px 14px;
	border-radius: 999px;
	background: var(--white);
	border: 1px solid var(--green-border);
	font-size: 13px;
	font-weight: 600;
	color: var(--green-dark);
}

.rent__heading {
	font-size: 32px;
}

.rent__text {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	color: var(--gray);
}

.rent__btn {
	margin-top: 8px;
	padding: 14px 32px;
}

.rent__note {
	margin: 0;
	font-size: 13px;
	color: var(--gray);
}

.rent__features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	align-content: center;
}

.rent-feature {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 24px;
	border-radius: 20px;
	background: var(--white);
	box-shadow: 0 2px 12px rgba(15, 23, 42, .06);
}

.rent-feature__title {
	margin: 0;
	font-family: 'Outfit', sans-serif;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: -.02em;
	color: var(--dark);
}

.rent-feature__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--gray);
}

@media (max-width: 1100px) {
	.rent__features {
		margin-top: 32px;
	}
}

@media (max-width: 768px) {
	.rent__heading {
		font-size: 24px;
	}

	.rent__features {
		grid-template-columns: minmax(0, 1fr);
	}
}

.section--reviews {
	background: var(--bg-page);
}

.review {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 30px;
	border-radius: 20px;
	background: var(--white);
	box-shadow: 0 0 15px 0 rgba(15, 23, 42, .07);
}

.review__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--dark);
}

.review__author {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: auto;
}

.review__author img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}

.review__name {
	font-size: 14px;
	font-weight: 600;
}

@media (max-width: 768px) {
	.promo-accordion {
		flex-direction: column;
		height: auto;
	}

	.promo-card {
		flex: none;
		height: 220px;
	}

	.grid--scroll-mobile {
		display: flex;
		flex-wrap: nowrap;
		gap: 12px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-padding: 0 16px;
		margin: 0 -16px;
		padding: 4px 16px 12px;
		scrollbar-width: none;
	}

	.grid--scroll-mobile::-webkit-scrollbar {
		display: none;
	}

	.grid--scroll-mobile > * {
		flex: 0 0 auto;
		scroll-snap-align: start;
		width: 76%;
		max-width: 300px;
	}
}

@media (max-width: 919.98px) {
	.grid--scroll-reviews {
		display: flex;
		flex-wrap: nowrap;
		gap: 12px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-padding: 0 16px;
		margin: 0 -16px;
		padding: 4px 16px 12px;
		scrollbar-width: none;
	}

	.grid--scroll-reviews::-webkit-scrollbar {
		display: none;
	}

	.grid--scroll-reviews > .review {
		flex: 0 0 auto;
		scroll-snap-align: start;
		width: 80%;
		max-width: 300px;
	}
}

.cookie-notice {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 900;
	width: 340px;
	max-width: calc(100% - 32px);
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 20px;
	border-radius: 16px;
	background: var(--white);
	box-shadow: 0 12px 40px rgba(15, 23, 42, .18);
	opacity: 0;
	transform: translateY(16px);
	transition: opacity .3s ease, transform .3s ease;
}

.cookie-notice.is-hidden {
	display: none;
}

.cookie-notice.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.cookie-notice__text {
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
	color: var(--gray);
}

.cookie-notice__link {
	color: var(--green);
	text-decoration: underline;
}

.socials__icon {
	width: 20px;
	height: 20px;
}


.page {
	padding-bottom: 64px;
}

.page__title {
	margin: 0 0 20px;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -.02em;
}

.page__intro {
	max-width: 860px;
	margin-bottom: 32px;
	font-size: 16px;
	line-height: 1.7;
	color: var(--gray);
}

.page__content {
	max-width: 860px;
	margin-top: 32px;
	line-height: 1.7;
}

.page--wide .page__content {
	max-width: none;
	line-height: 1.4;
}

.page__content > h2 {
	font-size: 24px;
	margin: 32px 0 12px;
}

.page__content > h3 {
	font-size: 19px;
	margin: 24px 0 10px;
}

.contacts-card {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: 20px;
	background: var(--white);
	box-shadow: 0 2px 12px rgba(15, 23, 42, .04);
}

.contact-row {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.contact-row__label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: -.02em;
	color: var(--gray);
}

.contact-row__value {
	font-size: 16px;
	font-weight: 600;
	color: var(--dark);
}

a.contact-row__value:hover {
	color: var(--green);
}

.contact-row__line {
	display: block;
	font-size: 15px;
	font-weight: 500;
}

.contacts-map {
	border-radius: 20px;
	overflow: hidden;
	background: var(--bg-light);
}

.contacts-map img {
	width: 100%;
	height: auto;
}

.about-stats {
	margin-bottom: 32px;
}

.stat-card {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 20px;
	background: var(--white);
}

.stat-card__num {
	font-size: 30px;
	font-weight: 700;
	line-height: 1.1;
	color: var(--green);
}

.stat-card__label {
	font-size: 15px;
	font-weight: 600;
}

.stat-card__desc {
	font-size: 13px;
	color: var(--gray);
}

@media (max-width: 1100px) {
	.hero__title {
		font-size: 38px;
	}
}

@media (max-width: 768px) {
	.section,
	.hero {
		padding: 32px 0;
	}

	.section__title {
		font-size: 22px;
	}

	.hero__title {
		font-size: 28px;
	}

	.hero__text {
		font-size: 15px;
	}

	.page__title {
		font-size: 26px;
	}

	.promo-card {
		min-height: 180px;
	}
}
