.home .hero {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 780px;
	padding-block: 280px 60px;
}
/* Слои-оверлеи (decoration → absolute оправдан) */
.home .hero .hero-video,

.home .hero .hero-gradient,
.home .hero .hero-fade-bottom {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.home .hero .hero-video { width: 100%; height: 100%; object-fit: cover; z-index: 0; }

.home .hero .hero-gradient {
	left: 25%;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.0) 0%, rgb(40 40 40 / 45%) 50%, #93D5B8 100%);

	z-index: 2;
}
.home .hero .hero-fade-bottom {
	top: auto; height: 180px; bottom: 0;
	background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
	z-index: 3;
}

.home .hero .hero-inner {
	position: relative;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;

}

/* Правая колонка (в RTL — первая) */
.home .hero .hero-main { flex: 1; max-width: calc(100% - 535px); text-align: right; }
.home .hero .hero-title {
	color: #fff; text-shadow: var(--shadow-text); margin-bottom: 28px;
	font-family: var(--font-noto);
}
.home .hero .hero-title-main { display: block; font-size: clamp(56px, 5vw, 96px); font-weight: 700; line-height: 1.05; }
.home .hero .hero-title-sub  { display: block; font-size: clamp(36px, 3.1vw, 60px); font-weight: 700; line-height: 1.1; }
.home .hero .hero-description {
	width: 450px;
	color: #fff; font-size: 20px; font-weight: 500; line-height: 1.6; margin-bottom: 36px;
}

.home .hero .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.home .hero .btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 16px 32px;
	border-radius: 60px;
	font-size: 18px; font-weight: 500;
	font-family: var(--font-noto);
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
}
.home .hero .btn-primary {
	background: var(--gradient-accent); color: #000;
	box-shadow: 0px 10px 7.5px rgba(0, 0, 0, 0.1), 0px 4px 3px rgba(0, 0, 0, 0.1);
}
.home .hero .btn-primary:hover { transform: translateY(-2px); }
.home .hero .btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.home .hero .btn-outline:hover { background: rgba(255,255,255,0.12); }

.home .hero .button.tour {margin: 0; gap: .5rem;}
.home .hero .button.tour i {width: 16px; margin-top: 3px;}


.home .hero .hero-aside {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 535px;
	flex-shrink: 0;
	align-items: end;
}
.home .hero .rating-card {
	display: inline-flex; align-items: center; gap: 14px;
	background: #fff; border-radius: 60px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
	padding: 12px 22px;

}
.home .hero .rating-value { font-size: 20px; flex-shrink: 0; }
.home .hero .rating-divider { width: 1px; height: 37px; background: #d0d0d0; flex-shrink: 0; }
.home .hero .rating-reviews { font-size: 18px; font-weight: 300; white-space: nowrap; flex-shrink: 0; }
.home .hero .rating-stars { flex-shrink: 0; }
.home .hero .rating-stars svg { display: block; width: 95px; height: auto; }
.home .hero .rating-avatars { display: flex; align-items: center; flex-shrink: 0; padding: 0 12px; }
.home .hero .avatar {
	width: 35px; height: 35px; border-radius: 50%;
	border: 2px solid #fff; margin-inline-start: -18px;
	display: inline-block; flex-shrink: 0;
}
.home .hero .avatar:first-child { margin-inline-start: 0; }
.home .hero .avatar-more {
	background: #93d5b8; color: #000; font-size: 14px; font-weight: 600;
	display: flex; align-items: center; justify-content: center;
}

.home .hero .feature-card {
	display: flex; align-items: center; gap: 14px;
	width: 300px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 20px;
	backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
	padding: 12px;
	outline: 1px solid #fffa;
}
.home .hero .feature-card-icon {
	flex-shrink: 0;
	width: 120px; height: 93px;
	background: #cdfee8; border-radius: 20px;
	display: flex; align-items: center; justify-content: center;
}
.home .hero .feature-card-text { flex: 1; text-align: right; color: #000; }
.home .hero .feature-card-title { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.home .hero .feature-card-desc { font-size: 18px; font-weight: 300; line-height: 1.3; }
