/* Homepage sections (search form styles stay in formHotels.css) */

/* ——— Popular directions ——— */
.popular-directions {
	--pd-radius: 22px;
	--pd-caption-gap: 10px;
	--pd-caption-radius: 10px;
	--pd-caption-bg: #fff;
	position: relative;
	z-index: 1;
	padding: 56px 0 48px;
	background: #fff;
}

.popular-directions__title {
	margin: 0 0 28px;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #0f172a;
}

.popular-directions__grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 16px;
}

.popular-direction {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.popular-direction--featured {
	grid-column: span 6;
}

.popular-direction--wide {
	grid-column: span 6;
}

.popular-direction--compact {
	grid-column: span 3;
}

.popular-direction__shell {
	position: relative;
	border-radius: var(--pd-radius);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.popular-direction__shell:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 40px rgba(var(--color-brand-rgb), 0.2);
}

.popular-direction__card {
	position: relative;
	border-radius: var(--pd-radius);
	overflow: hidden;
	background-color: #e8ecf1;
}

/* Сброс legacy-стилей .topDirections из style.css */
.topDirections.popular-directions .popular-direction__caption,
.topDirections.popular-directions .popular-direction__caption-layer {
	border: none;
}

.popular-direction__hero {
	position: relative;
	display: block;
	min-height: 180px;
	padding: 0;
	border-radius: 0;
	background-color: transparent;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	z-index: 0;
}

.popular-direction--featured .popular-direction__hero {
	min-height: 228px;
}

.popular-direction--compact .popular-direction__hero {
	min-height: 148px;
}

.popular-direction__photo {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
	pointer-events: none;
}

.popular-direction__hero::before {
	content: none;
}

.popular-direction__hero--no-image {
	background:
		radial-gradient(ellipse 80% 60% at 100% 0%, rgba(var(--color-brand-rgb), 0.35) 0%, transparent 55%),
		linear-gradient(145deg, var(--color-brand-deep) 0%, var(--color-2) 55%, var(--color-brand-hover) 100%);
}

.popular-direction__shell:hover .popular-direction__hero {
	text-decoration: none;
}

.popular-direction__caption-layer {
	position: absolute;
	right: var(--pd-caption-gap);
	bottom: var(--pd-caption-gap);
	left: var(--pd-caption-gap);
	z-index: 2;
	display: flex;
	justify-content: flex-end;
	pointer-events: none;
}

.popular-direction__caption {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: flex-end;
	gap: 0.25rem 0.5rem;
	max-width: 100%;
	padding: 6px 10px;
	border-radius: var(--pd-caption-radius);
	background: var(--pd-caption-bg);
	color: #0f172a;
	line-height: 1.15;
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.14);
}

.popular-direction__caption-name {
	font-size: clamp(0.62rem, 1vw, 0.78rem);
	font-weight: 800;
	letter-spacing: 0.04em;
}

.popular-direction__caption-count {
	font-size: clamp(0.58rem, 0.9vw, 0.7rem);
	font-weight: 500;
	color: #475569;
	white-space: nowrap;
}

.popular-direction__name {
	display: none;
}

.popular-direction__hotels {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 10px;
}

.popular-hotel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 14px;
	border: 1px solid #ebe8f4;
	border-radius: 14px;
	background: #fff;
	color: inherit;
	text-decoration: none;
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.popular-hotel:hover {
	border-color: #ddd6fe;
	box-shadow: 0 8px 22px rgba(var(--color-brand-rgb), 0.1);
	color: inherit;
	text-decoration: none;
	transform: translateY(-1px);
}

.popular-hotel__name {
	font-size: 14px;
	font-weight: 600;
	color: #1e293b;
	line-height: 1.35;
}

.popular-direction--compact .popular-hotel__name {
	font-size: 13px;
}

.popular-hotel__meta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}

.popular-hotel__price {
	font-size: 12px;
	color: #64748b;
	white-space: nowrap;
}

.popular-hotel__meta .bi {
	font-size: 14px;
	color: var(--color-2);
}

.popular-direction__empty {
	margin-top: 10px;
	padding: 14px;
	border-radius: 14px;
	background: #f8f7fc;
	border: 1px dashed #e8ecf1;
	color: #64748b;
	font-size: 13px;
	text-align: center;
}

@media (max-width: 991px) {
	.popular-direction--featured,
	.popular-direction--wide {
		grid-column: span 12;
	}

	.popular-direction--compact {
		grid-column: span 6;
	}
}

@media (max-width: 575px) {
	.popular-directions {
		padding: 36px 0 32px;
		--pd-caption-gap: 8px;
		--pd-caption-radius: 8px;
	}

	.popular-direction--compact {
		grid-column: span 12;
	}

	.popular-hotel {
		flex-direction: column;
		align-items: flex-start;
	}

	.popular-hotel__meta {
		width: 100%;
		justify-content: space-between;
	}
}

/* ——— About / how it works ——— */
.home-about {
	padding: 24px 0 64px;
	background:
		radial-gradient(ellipse 60% 40% at 0% 0%, rgba(var(--color-brand-rgb), 0.05) 0%, transparent 55%),
		#fff;
	position: relative;
	z-index: 0;
}

.home-about__steps {
	margin-bottom: 8px;
}

.home-about__step {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 14px;
	height: 100%;
	min-height: 132px;
	padding: 20px 18px 22px;
	border: 1px solid var(--color-accent-soft);
	border-radius: 18px;
	background: linear-gradient(165deg, #fff 0%, var(--color-accent-soft) 100%);
	box-shadow: 0 4px 20px rgba(var(--color-brand-rgb), 0.06);
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-about__step::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	opacity: 0.9;
	background: linear-gradient(90deg, var(--color-2), var(--color-2));
}

.home-about__step:hover {
	transform: translateY(-2px);
}

.home-about__step-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.home-about__step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: 10px;
	background: var(--color-2);
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	box-shadow: 0 4px 12px rgba(var(--color-brand-rgb), 0.3);
}

.home-about__step-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 12px;
	background: rgba(var(--color-brand-rgb), 0.1);
	color: var(--color-2);
}

.home-about__step-icon .bi {
	font-size: 18px;
	line-height: 1;
}

.home-about__step-text {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	font-weight: 500;
	color: #374151;
}

.home-about__step--violet {
	border-color: var(--color-accent-soft);
	background: linear-gradient(165deg, #fff 0%, var(--color-accent-soft) 100%);
}

.home-about__step--violet::before {
	background: linear-gradient(90deg, var(--color-2), var(--color-2));
}

.home-about__step--violet .home-about__step-num {
	background: var(--color-2);
	box-shadow: 0 4px 12px rgba(var(--color-brand-rgb), 0.3);
}

.home-about__step--violet .home-about__step-icon {
	background: rgba(var(--color-brand-rgb), 0.1);
	color: var(--color-2);
}

.home-about__step--violet:hover {
	border-color: var(--color-brand-soft-border);
	box-shadow: 0 8px 28px rgba(var(--color-brand-rgb), 0.14);
}

.home-about__step--blue {
	border-color: #dbeafe;
	background: linear-gradient(165deg, #fff 0%, #eff6ff 100%);
}

.home-about__step--blue::before {
	background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.home-about__step--blue .home-about__step-num {
	background: #2563eb;
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.home-about__step--blue .home-about__step-icon {
	background: rgba(37, 99, 235, 0.1);
	color: #2563eb;
}

.home-about__step--blue:hover {
	border-color: #bfdbfe;
	box-shadow: 0 8px 28px rgba(37, 99, 235, 0.14);
}

.home-about__step--amber {
	border-color: #fde68a;
	background: linear-gradient(165deg, #fff 0%, #fffbeb 100%);
}

.home-about__step--amber::before {
	background: linear-gradient(90deg, #d97706, #fbbf24);
}

.home-about__step--amber .home-about__step-num {
	background: #d97706;
	box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.home-about__step--amber .home-about__step-icon {
	background: rgba(217, 119, 6, 0.12);
	color: #d97706;
}

.home-about__step--amber:hover {
	border-color: #fcd34d;
	box-shadow: 0 8px 28px rgba(217, 119, 6, 0.14);
}

.home-about__step--emerald {
	border-color: #a7f3d0;
	background: linear-gradient(165deg, #fff 0%, #ecfdf5 100%);
}

.home-about__step--emerald::before {
	background: linear-gradient(90deg, #059669, #34d399);
}

.home-about__step--emerald .home-about__step-num {
	background: #059669;
	box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.home-about__step--emerald .home-about__step-icon {
	background: rgba(5, 150, 105, 0.1);
	color: #059669;
}

.home-about__step--emerald:hover {
	border-color: #6ee7b7;
	box-shadow: 0 8px 28px rgba(5, 150, 105, 0.14);
}

.home-about__body {
	margin-top: 48px;
}

.home-about__brand {
	display: flex;
	align-items: center;
	gap: 2px;
	margin: 0 0 24px;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 800;
	color: #0f172a;
	letter-spacing: -0.02em;
}

.home-about__brand i,
.home-about__brand .site-logo__icon {
	color: var(--color-2);
	font-size: 0.95em;
	margin: 0 2px;
}

.home-about__text {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 28px;
	font-size: 15px;
	line-height: 1.7;
	color: #334155;
}

.home-about__text p {
	margin: 0;
}

.home-about__mission-title {
	margin: 0 0 10px;
	font-size: 1.125rem;
	font-weight: 700;
	color: #0f172a;
}

.home-about__mission-text {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: #475569;
}

.home-about__features {
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding-top: 8px;
}

.home-about__feature {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 16px 18px;
	border: 1px solid #ebe8f4;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.home-about__feature:hover {
	border-color: #ddd6fe;
	box-shadow: 0 10px 28px rgba(var(--color-brand-rgb), 0.08);
	transform: translateY(-1px);
}

.home-about__feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border: 1px solid var(--color-accent-soft);
	border-radius: 14px;
	color: var(--color-2);
	background: var(--color-accent-soft);
}

.home-about__feature-icon .bi {
	font-size: 18px;
	line-height: 1;
}

.home-about__feature-title {
	margin-bottom: 4px;
	font-size: 16px;
	font-weight: 700;
	color: #0f172a;
}

.home-about__feature-text {
	font-size: 14px;
	line-height: 1.55;
	color: #64748b;
}

@media (max-width: 991px) {
	.home-about__body {
		margin-top: 32px;
	}

	.home-about__features {
		padding-top: 0;
	}
}

@media (max-width: 575px) {
	.home-about {
		padding-bottom: 48px;
	}

	.home-about__step {
		min-height: 116px;
		padding: 16px 14px 18px;
	}

	.home-about__step-text {
		font-size: 13px;
	}

	.home-about__step-icon {
		width: 32px;
		height: 32px;
	}

	.home-about__step-icon .bi {
		font-size: 16px;
	}
}

/* ——— App promo ——— */
.home-app {
	padding: 0 0 64px;
	background: #fff;
	position: relative;
	z-index: 0;
}

.home-app__banner {
	position: relative;
	overflow: hidden;
	padding: 36px 36px 40px;
	border-radius: 20px;
	border: 1px solid #e8ecf1;
	background:
		radial-gradient(ellipse 70% 55% at 100% 0%, rgba(var(--color-brand-rgb), 0.1) 0%, transparent 58%),
		radial-gradient(ellipse 60% 50% at 0% 100%, rgba(var(--color-brand-rgb), 0.08) 0%, transparent 52%),
		linear-gradient(160deg, var(--color-accent-soft) 0%, var(--color-accent-soft-hover) 48%, var(--color-accent-soft) 100%);
	box-shadow: 0 8px 32px rgba(var(--color-brand-rgb), 0.08);
}

.home-app__blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(48px);
	pointer-events: none;
}

.home-app__blob--1 {
	top: -50px;
	right: 8%;
	width: 200px;
	height: 200px;
	background: rgba(var(--color-brand-rgb), 0.12);
}

.home-app__blob--2 {
	bottom: -70px;
	left: 4%;
	width: 240px;
	height: 240px;
	background: rgba(167, 139, 250, 0.14);
}

.home-app__blob--3 {
	top: 40%;
	left: 45%;
	width: 140px;
	height: 140px;
	background: rgba(196, 181, 253, 0.16);
}

.home-app__content {
	position: relative;
	z-index: 1;
	color: #1e293b;
}

.home-app__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 14px;
	padding: 8px 14px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid #e8ecf1;
	font-size: 13px;
	font-weight: 600;
	color: var(--color-brand-deep);
	box-shadow: 0 2px 8px rgba(var(--color-brand-rgb), 0.06);
}

.home-app__eyebrow .bi {
	font-size: 18px;
	color: var(--color-2);
}

.home-app__title {
	margin: 0 0 12px;
	font-size: clamp(1.6rem, 3vw, 2.25rem);
	font-weight: 800;
	line-height: 1.15;
	color: #0f172a;
	letter-spacing: -0.02em;
}

.home-app__lead {
	margin: 0 0 22px;
	max-width: 36rem;
	font-size: 15px;
	line-height: 1.5;
	color: #475569;
}

.home-app__features {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 28px;
}

.home-app__feature {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	line-height: 1.45;
	font-weight: 500;
	color: #374151;
}

.home-app__feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 12px;
	background: #fff;
	border: 1px solid var(--color-accent-soft);
	font-size: 16px;
	color: var(--color-2);
	box-shadow: 0 2px 8px rgba(var(--color-brand-rgb), 0.08);
}

.home-app__feature--yellow .home-app__feature-icon {
	background: #fffbeb;
	border-color: #fde68a;
	color: #d97706;
}

.home-app__feature--pink .home-app__feature-icon {
	background: #fdf2f8;
	border-color: #fbcfe8;
	color: #db2777;
}

.home-app__feature--mint .home-app__feature-icon {
	background: #ecfdf5;
	border-color: #a7f3d0;
	color: #059669;
}

.home-app__download {
	margin-top: 16px;
}

.home-app__download-row {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	--home-app-qr-pad: 12px;
}

.home-app__qr-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.home-app__qr {
	position: relative;
	display: block;
	padding: var(--home-app-qr-pad);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
	line-height: 0;
}

.home-app__qr--soon .home-app__qr-svg {
	opacity: 0.45;
}

.home-app__qr-badge {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--color-2, #7f22fe);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1;
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.18);
}

.home-app__qr-svg {
	display: block;
	width: 108px;
	height: 108px;
	border-radius: 8px;
}

.home-app__qr-caption {
	margin: 0;
	width: calc(108px + var(--home-app-qr-pad) * 2);
	font-size: 11px;
	font-weight: 600;
	color: #64748b;
	text-align: center;
	line-height: 1.3;
}

.home-app__stores {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
	min-width: 200px;
	padding-top: var(--home-app-qr-pad);
}

.home-app__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	margin: 0;
	padding: 12px 18px;
	border-radius: 12px;
	border: 1px solid transparent;
	background: rgba(var(--color-brand-rgb), 0.1);
	color: var(--color-2);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.15s ease, transform 0.15s ease, color 0.15s ease;
}

.home-app__cta:hover {
	background: var(--color-2);
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
}

.home-app__cta--soon {
	cursor: default;
	opacity: 0.88;
}

.home-app__cta--soon:hover {
	background: rgba(var(--color-brand-rgb), 0.1);
	color: var(--color-2);
	transform: none;
}

.home-app__visual {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 320px;
	padding: 20px 0;
}

.home-app__badge {
	position: absolute;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--color-2), var(--color-2));
	color: #fff;
	font-size: 20px;
	font-weight: 800;
	box-shadow: 0 8px 20px rgba(var(--color-brand-rgb), 0.28);
	will-change: transform;
}

.home-app__badge--1 {
	top: 8%;
	left: 8%;
	animation: home-app-drift-1 11s ease-in-out infinite;
}

.home-app__badge--2 {
	top: 18%;
	right: 6%;
	background: linear-gradient(135deg, var(--color-2), var(--color-brand-hover));
	box-shadow: 0 8px 20px rgba(109, 40, 217, 0.28);
	animation: home-app-drift-2 13s ease-in-out infinite;
	animation-delay: -4s;
}

.home-app__globe {
	position: absolute;
	bottom: 8%;
	left: 4%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: linear-gradient(145deg, var(--color-accent-soft), var(--color-2));
	color: var(--color-brand-deep);
	font-size: 34px;
	box-shadow: 0 10px 28px rgba(var(--color-brand-rgb), 0.2);
	will-change: transform;
	animation: home-app-drift-3 15s ease-in-out infinite;
	animation-delay: -7s;
}

@keyframes home-app-drift-1 {
	0%, 100% { transform: translate(0, 0); }
	18% { transform: translate(16px, -14px); }
	36% { transform: translate(-12px, -22px); }
	54% { transform: translate(20px, 6px); }
	72% { transform: translate(-8px, 18px); }
	88% { transform: translate(10px, -6px); }
}

@keyframes home-app-drift-2 {
	0%, 100% { transform: translate(0, 0); }
	15% { transform: translate(-18px, 10px); }
	32% { transform: translate(8px, 20px); }
	48% { transform: translate(22px, -8px); }
	64% { transform: translate(-14px, -16px); }
	82% { transform: translate(6px, 12px); }
}

@keyframes home-app-drift-3 {
	0%, 100% { transform: translate(0, 0); }
	20% { transform: translate(12px, 16px); }
	38% { transform: translate(-20px, 8px); }
	55% { transform: translate(-10px, -18px); }
	70% { transform: translate(18px, -10px); }
	86% { transform: translate(-6px, 14px); }
}

@media (prefers-reduced-motion: reduce) {
	.home-app__badge,
	.home-app__globe {
		animation: none;
	}
}

.home-app__phone {
	position: relative;
	width: 200px;
	padding: 12px 10px 14px;
	border-radius: 28px;
	background: linear-gradient(160deg, #f8fafc 0%, #e2e8f0 100%);
	box-shadow:
		0 0 0 1px rgba(15, 23, 42, 0.06),
		0 24px 60px rgba(15, 23, 42, 0.18),
		0 0 80px rgba(167, 139, 250, 0.22);
	transform: rotate(-4deg);
}

.home-app__phone-notch {
	width: 36%;
	height: 6px;
	margin: 0 auto 10px;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.12);
}

.home-app__screen {
	overflow: hidden;
	height: 340px;
	padding: 12px 10px;
	border-radius: 18px;
	background: #fff;
	box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.05);
}

.home-app__ui--brand {
	margin-bottom: 12px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.04em;
	color: #0f172a;
	text-align: center;
}

.home-app__ui-star {
	color: var(--color-2);
}

.home-app__ui--field {
	height: 24px;
	margin-bottom: 8px;
	border-radius: 8px;
	background: #f1f5f9;
}

.home-app__ui--field-sm {
	height: 18px;
	width: 78%;
	margin-bottom: 12px;
}

.home-app__ui--btn {
	height: 28px;
	margin-top: 10px;
	border-radius: 10px;
	background: linear-gradient(90deg, var(--color-2), #9333ea);
}

.home-app__ui--card {
	display: flex;
	gap: 8px;
	margin-bottom: 8px;
	padding: 8px;
	border-radius: 10px;
	background: #f8fafc;
}

.home-app__ui--thumb {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--color-2), var(--color-2));
}

.home-app__ui--thumb-alt {
	background: linear-gradient(135deg, #93c5fd, #2563eb);
}

.home-app__ui--lines {
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex: 1;
	min-width: 0;
	padding-top: 2px;
}

.home-app__ui--lines span {
	display: block;
	height: 5px;
	border-radius: 4px;
	background: #e2e8f0;
}

.home-app__ui--lines span:nth-child(1) { width: 92%; }
.home-app__ui--lines span:nth-child(2) { width: 64%; }

.home-app__ui--price {
	width: 48% !important;
	margin-top: 2px;
	background: rgba(var(--color-brand-rgb), 0.18) !important;
}

@media (max-width: 991px) {
	.home-app__visual {
		min-height: 280px;
		margin-top: 8px;
	}

	.home-app__phone {
		width: 180px;
		transform: rotate(-2deg);
	}

	.home-app__screen {
		height: 300px;
	}
}

@media (max-width: 575px) {
	.home-app {
		padding-bottom: 48px;
	}

	.home-app__banner {
		padding: 24px 18px 28px;
		border-radius: 18px;
	}

	.home-app__download-row {
		flex-direction: column;
		align-items: center;
	}

	.home-app__stores {
		width: 100%;
		min-width: 0;
		padding-top: 0;
	}

	.home-app__phone {
		width: 164px;
	}

	.home-app__screen {
		height: 272px;
	}

	.home-app__globe {
		width: 56px;
		height: 56px;
		font-size: 26px;
	}
}

/* ——— FAQ ——— */
.questBlock {
	display: block;
	margin: 0;
	padding: 48px 0 24px;
	background:
		radial-gradient(ellipse 50% 40% at 100% 0%, rgba(var(--color-brand-rgb), 0.04) 0%, transparent 55%),
		#f8fafc;
}

.questBlock .questions > .h3 {
	margin: 0 0 8px;
	font-size: clamp(1.4rem, 2.4vw, 1.85rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #0f172a;
}

.questList {
	margin: 20px 0 0;
	letter-spacing: normal;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.questBlock .quest {
	margin: 0;
	padding: 16px 20px;
	font-size: 15px;
	font-weight: 600;
	color: #1e293b;
	cursor: pointer;
	border: 1px solid #e8ecf1;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
	transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.questBlock .quest::after {
	content: '\F282';
	font-family: 'bootstrap-icons';
	font-size: 0.95rem;
	font-weight: 400;
	color: #64748b;
	opacity: 0.45;
	transition: transform 0.2s ease, color 0.15s ease, opacity 0.15s ease;
}

.questBlock .quest:hover,
.questBlock .quest:focus {
	color: var(--color-2);
	border-color: #ddd6fe;
}

.questBlock .quest.active {
	color: var(--color-2);
	border-color: #e8ecf1;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	background: var(--color-accent-soft);
	padding-bottom: 14px;
	box-shadow: none;
}

.questBlock .quest.active::after {
	transform: rotate(180deg);
	opacity: 1;
	color: var(--color-2);
}

.questBlock .answer {
	display: none;
	margin: -1px 0 0;
	padding: 4px 20px 18px;
	font-size: 15px;
	line-height: 1.65;
	color: #475569;
	background: #fff;
	border: 1px solid #e8ecf1;
	border-top: none;
	border-radius: 0 0 14px 14px;
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.questBlock .answer.active {
	display: block;
}

@media (max-width: 575px) {
	.questBlock {
		padding: 36px 0 16px;
	}

	.questBlock .quest {
		padding: 14px 16px;
		font-size: 14px;
	}

	.questBlock .answer {
		padding: 2px 16px 16px;
		font-size: 14px;
	}
}
