.rv-page {
	color: #161616;
}

.rv-page section {
	margin-bottom: 56px;
}

.rv-crumbs {
	margin-bottom: 22px;
	font-size: 15px;
	color: #666;
}

.rv-crumbs a {
	color: inherit;
	text-decoration: none;
}

/* Hero */
.rv-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
	gap: 26px;
	align-items: stretch;
	padding: 48px;
	border-radius: 32px;
	background: #fff;
	margin-bottom: 40px;
}

.rv-hero__label {
	display: inline-block;
	margin-bottom: 14px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: #6a5b00;
}

.rv-hero h1 {
	margin-bottom: 18px;
}

.rv-hero__lead {
	max-width: 720px;
	margin-bottom: 28px;
	font-size: 20px;
	line-height: 1.55;
}

.rv-hero__panel {
	display: grid;
	gap: 12px;
	align-content: center;
}

.rv-hero__panel div {
	padding: 14px 18px;
	border-radius: 12px;
	background: #f9f5e7;
	font-size: 15px;
	font-weight: 600;
}

/* Actions */
.rv-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

.rv-link-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 10px 20px;
	border: 1px solid #1f2937;
	border-radius: 8px;
	background: #fff;
	color: #111;
	font-weight: 700;
	text-decoration: none;
}

.rv-link-btn:hover {
	color: #111;
	text-decoration: none;
	background: #f5f5f5;
}

/* Section */
.rv-section {
	margin-bottom: 56px;
}

.rv-section h2 {
	margin-bottom: 16px;
}

.rv-lead-text {
	margin-bottom: 24px;
	font-size: 17px;
	color: #444;
}

/* Yandex block */
.rv-yandex-block {
	display: inline-block;
}

.rv-yandex-link {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	padding: 16px 24px;
	border: 2px solid #FFD700;
	border-radius: 16px;
	text-decoration: none;
	color: #111;
	font-weight: 600;
	font-size: 16px;
	transition: background .15s;
}

.rv-yandex-link:hover {
	background: #fffde7;
	color: #111;
	text-decoration: none;
}

.rv-yandex-link img {
	flex-shrink: 0;
}

/* Review grid */
.rv-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 24px;
}

.rv-card {
	display: flex;
	flex-direction: column;
	border: 1px solid #e8e8e8;
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	transition: box-shadow .2s ease, transform .2s ease;
}

.rv-card:hover {
	box-shadow: 0 6px 28px rgba(0,0,0,.1);
	transform: translateY(-3px);
}

.rv-card__body {
	padding: 20px 22px 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.rv-card__service {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: #6a5b00;
	display: block;
	margin-bottom: 12px;
}

.rv-card__quote {
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 15px;
	line-height: 1.65;
	color: #333;
	font-style: italic;
	margin: 0;
}

.rv-card__client {
	font-size: 13px;
	color: #888;
	margin-top: auto;
	padding-top: 12px;
	margin-bottom: 0;
}

.rv-card__open {
	display: block;
	padding: 9px 16px;
	border-radius: 8px;
	background: #FFD700;
	color: #111;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	text-align: center;
	transition: background .15s;
	margin-top: 16px;
}

.rv-card__open:hover {
	background: #f0c800;
	color: #111;
	text-decoration: none;
}

/* SEO text */
.rv-seo-text p {
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 16px;
	color: #333;
}

/* FAQ */
.rv-faq__item {
	border-bottom: 1px solid #e8e8e8;
	padding: 4px 0;
}

.rv-faq__q {
	padding: 16px 8px 16px 0;
	font-size: 17px;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}

.rv-faq__q::-webkit-details-marker { display: none; }

.rv-faq__q::after {
	content: '+';
	flex-shrink: 0;
	font-size: 22px;
	font-weight: 400;
	color: #999;
	transition: transform .2s;
}

details[open] .rv-faq__q::after {
	transform: rotate(45deg);
}

.rv-faq__q:focus-visible {
	outline: 3px solid rgba(249, 66, 58, .35);
	outline-offset: 3px;
	border-radius: 4px;
}

.rv-faq__a {
	padding: 0 8px 18px;
	font-size: 16px;
	line-height: 1.65;
	color: #333;
	margin: 0;
}

/* CTA block */
.rv-cta {
	padding: 48px;
	border-radius: 24px;
	background: #FFD700;
}

.rv-cta h2 {
	margin-bottom: 14px;
}

.rv-cta p {
	font-size: 18px;
	margin-bottom: 28px;
	max-width: 680px;
}

.rv-cta .rv-link-btn {
	border-color: #111;
	background: #fff;
}

/* Responsive */
@media (max-width: 767px) {
	.rv-hero {
		grid-template-columns: 1fr;
		padding: 28px 22px;
		border-radius: 20px;
	}

	.rv-hero__panel {
		display: none;
	}

	.rv-hero__lead {
		font-size: 17px;
	}

	.rv-cta {
		padding: 32px 22px;
		border-radius: 18px;
	}

	.rv-grid {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
		gap: 16px;
	}
}

@media (max-width: 479px) {
	.rv-grid {
		grid-template-columns: 1fr 1fr;
	}
}
