/* RV Roof 911 — Light Homepage */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body.home {
	color-scheme: light dark;
	--home-bg: #ffffff;
	--home-bg-gray: #f7f7f8;
	/* --home-bg-subtle: #f7f8fa; */
	--home-bg-subtle: linear-gradient(to bottom, var(--home-bg) 0%, var(--home-bg-gray) 25%);
	--home-bg-subtle-50: linear-gradient(to bottom, var(--home-bg) 0%, var(--home-bg-gray) 70%);
	--home-border: #e2e5ea;
	--home-border-strong: #d1d5db;
	--color-border-light: #ffffff;
	--home-text: #1f2937;
	--home-text-muted: #5e5f6e;
	--home-text-muted-inverse: #3e424a;
	--home-accent: #22a55b;
	--home-accent-hover: #1d9249;
	--home-accent-soft: #ecfdf3;
	--home-radius: 10px;
	--home-radius-lg: 14px;
	--home-font: 'Inter', Roboto, sans-serif;
	--home-nav-h: 68px;
	--home-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
	--home-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);

	--home-addon--info:#fafafb;

	background: var(--home-bg);
	color: var(--home-text);
	font-family: var(--home-font);

	--color-btn-border: #36363a;
	--color-btn-border-secondary:#d1d5dc;
	--color-btn-bg: #36363a;
	--color-btn-bg-gradient: linear-gradient(135deg, var(--color-btn-bg) 0%, var(--color-btn-bg) 100%);
	--color-btn: #eeeeee;
	--color-btn-invert: #36363a;

	--color-btn-hover: #4e4e51;
	--color-btn-secondary-hover: #f4f4f4;
	--color-btn-border-secondary-hover: #cccccc;

	--warn-note-color: var(--home-text);
	--warn-note-bg: #fffbeb;
	--warn-note-border: rgba(180, 83, 9, 0.35);

	--hero-card-bg: rgba(255, 255, 255, 0.65);
    --hero-card-border: rgba(255, 255, 255, 0.5);
    --hero-card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
	body.home {
		--home-bg: #0a0a0a;
		--home-bg-gray: #141414;
		--home-bg-subtle: linear-gradient(to bottom, var(--home-bg) 0%, var(--home-bg-gray) 25%);
		--home-bg-subtle-50: linear-gradient(to bottom, var(--home-bg) 0%, var(--home-bg-gray) 70%);
		--home-border: #2a2a2a;
		--home-border-strong: #3a3a3a;
		--home-text: #e5e5e5;
		--home-text-muted: #a0a0a0;
		--home-text-muted-inverse: #c0c0c0;
		--home-accent: #2ecc71;
		--home-accent-hover: #27ae60;
		--home-accent-soft: rgba(46, 204, 113, 0.15);
		--home-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
		--home-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);

		--home-addon--info:var(--home-bg-gray);

		--color-btn-border: #4a4a4a;
		--color-btn-border-secondary: #3a3a3a;
		--color-btn-bg: #e5e5e5;
		--color-btn-bg-gradient: linear-gradient(135deg, var(--color-btn-bg) 0%, var(--color-btn-bg) 100%);
		--color-btn: #0a0a0a;
		--color-btn-invert: #e5e5e5;

		--color-btn-hover: #f5f5f5;
		--color-btn-secondary-hover: #2a2a2a;
		--color-btn-border-secondary-hover: #4a4a4a;

		--warn-note-color: #824017;

		--hero-card-bg: rgba(30, 30, 30, 0.75);
		--hero-card-border: rgba(255, 255, 255, 0.1);
		--hero-card-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                    0 2px 8px rgba(0, 0, 0, 0.3);

	}

}

body.home main {
	overflow-x: clip;
}

/* ── Header ── */
body.home nav.home-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	height: var(--home-nav-h);
	background: var(--home-bg);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--home-border);
}

body.home nav.home-nav.is-scrolled {
	box-shadow: var(--home-shadow);
}

body.home .home-nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	padding: 0 1.5rem;
	height: 100%;
	gap: 1.5rem;
}

body.home .nav-brand {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	text-decoration: none;
	color: var(--home-text);
	font-weight: 700;
	font-size: 1.1rem;
	letter-spacing: -0.02em;
	flex-shrink: 0;
}

body.home .nav-brand-mark {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 8px;
	background: var(--home-accent);
	font-size: 0.7rem;
	font-weight: 800;
	color: #fff;
}

body.home .nav-links {
	display: flex;
	align-items: center;
	gap: 0.15rem;
	flex: 1;
	justify-content: flex-end;
}

body.home .nav-links a {
	color: var(--home-text-muted);
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 500;
	padding: 0.4rem 0.65rem;
	border-radius: 6px;
	transition: color 0.2s, background 0.2s;
	white-space: nowrap;
}

body.home .nav-links a:hover {
	color: var(--home-text);
	background: var(--home-bg-subtle);
}

body.home .nav-auth {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

body.home .nav-auth a {
	color: var(--home-text-muted);
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
	padding: 0.45rem 0.75rem;
	border-radius: 6px;
	transition: color 0.2s, background 0.2s;
}

body.home .nav-auth a:hover {
	color: var(--home-text);
	background: var(--home-bg-subtle);
}

body.home .nav-auth a.nav-register {
	color: var(--home-accent);
	font-weight: 600;
}

body.home .nav-auth a.nav-register:hover {
	background: var(--home-accent-soft);
}

body.home .nav-phone {
	display: flex;
	align-items: center;
	/* margin-left: auto; */
	gap: 0.5rem;
	text-decoration: none;
	color: var(--home-text);
	font-weight: 600;
	font-size: 0.95rem;
	padding: 0.5rem 1rem;
	/* border: 1px solid var(--home-border);
	border-radius: var(--home-radius); */
	background: var(--home-bg);
	white-space: nowrap;
	transition: border-color 0.2s, box-shadow 0.2s;
	flex-shrink: 0;
}

body.home .nav-phone:hover {
	border-color: var(--home-border-strong);
	box-shadow: var(--home-shadow);
}

body.home .nav-phone i {
	color: var(--home-accent);
	font-size: 0.85rem;
}

body.home .nav-toggle {
	display: none;
	background: none;
	border: 1px solid var(--home-border);
	color: var(--home-text);
	width: 38px;
	height: 38px;
	border-radius: 8px;
	cursor: pointer;
	font-size: 1rem;
}

body.home .nav-mobile-panel {
	display: none;
}


/* ── Sections ── */
body.home .home-section {
	padding: 5rem 0;
}

body.home .home-section--subtle {
	background: var(--home-bg-subtle);
	border-top: 1px solid var(--home-border);
	border-bottom: 1px solid var(--home-border);
}

body.home .home-section--alt {
	background: var(--home-bg-subtle);
	border-top: 1px solid var(--home-border);
}

body.home .home-eyebrow {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--home-accent);
	margin-bottom: 0.75rem;
}

body.home .home-gradient-text {
	background: linear-gradient(135deg, var(--home-accent) 0%, #16a34a 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

body.home .home-section-title {
	font-size: clamp(1.75rem, 3.5vw, 2.25rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.2;
	margin-bottom: 0.75rem;
	color: var(--home-text);
	text-align: center;
}

body.home .home-section-subtitle {
	text-align: center;
	color: var(--home-text-muted);
	font-size: 1.05rem;
	max-width: 560px;
	margin: 0 auto 2.5rem;
	line-height: 1.6;
}

/* ── Hero ── */
body.home .rv-hero-banner {
	position: relative;
	padding: calc(var(--home-nav-h) + 4rem) 1.5rem 5rem;
	background: var(--home-bg-gray);
}

body.home .rv-hero-inner {
	max-width: 1140px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	background-image: url(/img/rv_roof_service_911_mobile_emergency.webp);
    background-repeat: no-repeat;
    background-position: 80%;
    background-size: 70%;
}

body.home .rv-hero-content {
	text-align: left;
    max-width: none;
	padding: 2rem;
	backdrop-filter: blur(12px);
	border-radius: 2rem;
   	background: var(--hero-card-bg);
    border: 1px solid var(--hero-card-border);
    box-shadow: var(--hero-card-shadow);
}

body.home .rv-hero-eyebrow {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--home-accent);
	margin-bottom: 1rem;
}

body.home .rv-hero-content h1 {
	font-size: clamp(2.25rem, 4.5vw, 3rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.04em;
	margin-bottom: 1.25rem;
	color: var(--home-text);
}

body.home .rv-hero-content .hero-lead {
	font-size: 1.1rem;
	color: var(--home-text-muted);
	margin-bottom: 2rem;
	line-height: 1.65;
	max-width: 480px;
}

body.home .rv-hero-button {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--home-accent);
	color: #fff;
	border: none;
	padding: 0.9rem 1.6rem;
	font-size: 0.95rem;
	font-weight: 600;
	font-family: inherit;
	border-radius: var(--home-radius);
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
}

body.home .rv-hero-button:hover {
	background: var(--home-accent-hover);
	transform: translateY(-1px);
}

body.home .rv-hero-points {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 2rem;
}

body.home .rv-hero-point {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.9rem;
	color: var(--home-text-muted);
}

body.home .rv-hero-point i {
	color: var(--home-accent);
	font-size: 0.8rem;
}

body.home .rv-hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

body.home .rv-hero-photo {
	width: 100%;
	max-width: 540px;
	display: block;
}

/* ── Services / Gallery ── */
body.home .rv-services-section {
	padding: 5rem 0;
}

body.home .rv-services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

body.home .rv-service-card {
	background: var(--home-bg);
	border: 1px solid var(--home-border);
	border-radius: var(--home-radius-lg);
	padding: 1.75rem;
	transition: border-color 0.25s, box-shadow 0.25s;
}

body.home .rv-service-card:hover {
	border-color: var(--home-border-strong);
	box-shadow: var(--home-shadow-md);
}

body.home .rv-service-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	display: grid;
	place-items: center;
	font-size: 1.1rem;
	margin-bottom: 1rem;
	background: var(--home-bg-subtle);
	border: 1px solid var(--home-border);
	color: var(--home-text-muted);
}

body.home .rv-service-card h3 {
	font-size: 1.05rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--home-text);
}

body.home .rv-service-card p {
	color: var(--home-text-muted);
	font-size: 0.875rem;
	line-height: 1.55;
}

body.home .rv-service-card--featured {
	border-color: rgba(34, 165, 91, 0.35);
	background: linear-gradient(180deg, var(--home-accent-soft) 0%, var(--home-bg) 100%);
}

body.home .rv-service-card--featured .rv-service-icon {
	background: var(--home-accent-soft);
	border-color: rgba(34, 165, 91, 0.25);
	color: var(--home-accent);
}

body.home .rv-service-card--accent {
	border-color: rgba(34, 165, 91, 0.35);
	box-shadow: 0 4px 20px rgba(34, 165, 91, 0.08);
}

body.home .rv-service-card--accent .rv-service-icon {
	background: var(--home-accent-soft);
	border-color: rgba(34, 165, 91, 0.25);
	color: var(--home-accent);
}

body.home .rv-services-pricing-link {
	color: var(--home-accent);
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s, color 0.2s;
}

body.home .rv-services-pricing-link:hover {
	color: var(--home-accent-hover);
	border-bottom-color: var(--home-accent);
}

body.home rv-project-gallery.rv-services-grid {
	display: block;
	width: 100%;
}

body.home .rv-services-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 1rem;
}

body.home .rv-services-gallery-item {
	margin: 0;
	border-radius: var(--home-radius-lg);
	overflow: hidden;
	border: 1px solid var(--home-border);
	background: var(--home-bg);
	box-shadow: var(--home-shadow);
	transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

body.home .rv-services-gallery-trigger {
	display: block;
	width: 100%;
	padding: 0;
	border: none;
	background: none;
	cursor: zoom-in;
	font: inherit;
	text-align: inherit;
	color: inherit;
}

body.home .rv-services-gallery-item:hover {
	border-color: rgba(34, 165, 91, 0.35);
	box-shadow: var(--home-shadow-md);
	transform: translateY(-3px);
}

body.home .rv-services-gallery-media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--home-bg-gray);
}

body.home .rv-services-gallery-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	opacity: 0;
	transition: opacity 0.45s ease, transform 0.5s ease;
}

body.home .rv-services-gallery-item.is-loaded .rv-services-gallery-media img {
	opacity: 1;
}

body.home .rv-services-gallery-item:hover .rv-services-gallery-media img {
	transform: scale(1.04);
}

body.home .rv-services-gallery-shimmer {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		110deg,
		var(--home-bg-gray) 8%,
		#eef1f4 18%,
		var(--home-bg-gray) 33%
	);
	background-size: 200% 100%;
	animation: rvGalleryShimmer 1.4s ease-in-out infinite;
}

body.home .rv-services-gallery-item--loading .rv-services-gallery-media {
	background: var(--home-bg-gray);
}

body.home .rv-services-gallery-overlay {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: linear-gradient(180deg, transparent 45%, rgba(15, 20, 25, 0.45) 100%);
	color: #fff;
	font-size: 1.1rem;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

body.home .rv-services-gallery-item.is-loaded:hover .rv-services-gallery-overlay {
	opacity: 1;
}

body.home .rv-services-gallery-status {
	margin: 1.25rem 0 0;
	text-align: center;
	font-size: 0.86rem;
	color: var(--home-text-muted);
}

@keyframes rvGalleryShimmer {
	to { background-position-x: -200%; }
}

/* ── Gallery lightbox ── */
body.home.rv-lightbox-open {
	overflow: hidden;
}

body.home rv-gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: none;
	place-items: center;
	padding: 1rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

body.home rv-gallery-lightbox.is-open {
	display: grid;
	opacity: 1;
	visibility: visible;
}

body.home .rv-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 14, 20, 0.88);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

body.home .rv-lightbox__panel {
	position: relative;
	z-index: 1;
	width: min(96vw, 1100px);
	max-height: 92vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
}

body.home .rv-lightbox__stage {
	position: relative;
	width: 100%;
	max-height: calc(92vh - 3rem);
	display: grid;
	place-items: center;
}

body.home .rv-lightbox__img {
	max-width: 100%;
	max-height: calc(92vh - 3rem);
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: var(--home-radius);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
	opacity: 0;
	transition: opacity 0.3s ease;
}

body.home .rv-lightbox__img.is-loaded {
	opacity: 1;
}

body.home .rv-lightbox__loader {
	position: absolute;
	width: 36px;
	height: 36px;
	border: 3px solid rgba(255, 255, 255, 0.25);
	border-top-color: #fff;
	border-radius: 50%;
	animation: spin 0.7s linear infinite;
}

body.home .rv-lightbox__loader[hidden] {
	display: none;
}

body.home .rv-lightbox__close,
body.home .rv-lightbox__nav {
	position: absolute;
	z-index: 2;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(15, 20, 25, 0.65);
	color: #fff;
	border-radius: 999px;
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

body.home .rv-lightbox__close:hover,
body.home .rv-lightbox__nav:hover {
	background: rgba(34, 165, 91, 0.85);
	transform: scale(1.05);
}

body.home .rv-lightbox__close {
	top: -0.25rem;
	right: 0;
}

body.home .rv-lightbox__nav--prev {
	left: -0.25rem;
	top: 50%;
	transform: translateY(-50%);
}

body.home .rv-lightbox__nav--next {
	right: -0.25rem;
	top: 50%;
	transform: translateY(-50%);
}

body.home .rv-lightbox__nav--prev:hover {
	transform: translateY(-50%) scale(1.05);
}

body.home .rv-lightbox__nav--next:hover {
	transform: translateY(-50%) scale(1.05);
}

body.home .rv-lightbox__counter {
	margin: 0;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
	body.home .rv-lightbox__panel {
		width: 100%;
		max-height: 100vh;
		padding: 0 0.25rem;
	}

	body.home .rv-lightbox__close {
		top: 0.35rem;
		right: 0.35rem;
	}

	body.home .rv-lightbox__nav--prev {
		left: 0.35rem;
	}

	body.home .rv-lightbox__nav--next {
		right: 0.35rem;
	}

	body.home .rv-services-gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
		gap: 0.75rem;
	}
}

/* ── Mobile On-Site Service ── */
body.home .rv-mobile-service-section {
	padding: 5rem 0;
}

body.home .rv-mobile-service-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 2.5rem;
	align-items: start;
	margin-top: 0.5rem;
}

body.home .rv-mobile-service-lead {
	color: var(--home-text-muted);
	font-size: 1rem;
	line-height: 1.65;
	margin-bottom: 1.25rem;
	max-width: 36rem;
}

body.home .rv-mobile-service-locations {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.65rem;
}

body.home .rv-mobile-service-locations li {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	color: var(--home-text);
	font-size: 0.9rem;
	font-weight: 500;
}

body.home .rv-mobile-service-locations i {
	color: var(--home-accent);
	width: 1rem;
	text-align: center;
}

body.home .rv-mobile-service-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

body.home .rv-mobile-service-card {
	background: var(--home-bg);
	border: 1px solid var(--home-border);
	border-radius: var(--home-radius-lg);
	padding: 1.35rem;
	transition: border-color 0.25s, box-shadow 0.25s;
}

body.home .rv-mobile-service-card:hover {
	border-color: var(--home-border-strong);
	box-shadow: var(--home-shadow-md);
}

body.home .rv-mobile-service-card-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: grid;
	place-items: center;
	font-size: 1rem;
	margin-bottom: 0.85rem;
	background: var(--home-accent-soft);
	color: var(--home-accent);
}

body.home .rv-mobile-service-card h4 {
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 0.4rem;
	color: var(--home-text);
}

body.home .rv-mobile-service-card p {
	color: var(--home-text-muted);
	font-size: 0.84rem;
	line-height: 1.55;
}

/* ── Pricing ── */
body.home .rv-pricing-section {
	padding: 5rem 0;
}

body.home .rv-pricing-mobile-banner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	flex-wrap: wrap;
	max-width: 40rem;
	margin: 0 auto 2.5rem;
	padding: 0.85rem 1.15rem;
	background: var(--home-accent-soft);
	border: 1px solid rgba(34, 165, 91, 0.22);
	border-radius: 999px;
	font-size: 0.88rem;
	color: var(--home-text-muted);
	text-align: center;
}

body.home .rv-pricing-mobile-banner i {
	color: var(--home-accent);
}

body.home .rv-pricing-mobile-banner strong {
	color: var(--home-text);
}

body.home .rv-pricing-tiers {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-bottom: 2.5rem;
}

body.home .rv-pricing-tier {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 2.5rem;
	align-items: start;
	padding: 2.5rem 0;
	border-bottom: 1px solid var(--home-border);
}

body.home .rv-pricing-tier:last-child {
	border-bottom: none;
}

body.home .rv-pricing-tier-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--home-text-muted);
	margin-bottom: 0.65rem;
}

body.home .rv-pricing-tier-eyebrow--accent {
	color: var(--home-accent);
}

body.home .rv-pricing-tier-title {
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	font-weight: 700;
	line-height: 1.25;
	color: var(--home-text);
	margin: 0 0 0.5rem;
}

body.home .rv-pricing-tier-spec {
	font-size: 0.82em;
	font-weight: 500;
	color: var(--home-text-muted);
}

body.home .rv-pricing-tier-tagline {
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.45;
	color: var(--home-text);
	margin: 0 0 0.65rem;
	max-width: 34rem;
}

body.home .rv-pricing-tier-desc {
	font-size: 0.95rem;
	line-height: 1.65;
	color: var(--home-text-muted);
	margin: 0;
	max-width: 34rem;
}

body.home .rv-pricing-tier-block-title {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--home-text-muted);
	margin: 1.5rem 0 0.7rem;
}

body.home .rv-pricing-tier-includes {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.5rem;
}

body.home .rv-pricing-tier-includes li {
	position: relative;
	padding-left: 1.4rem;
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--home-text-muted);
}

body.home .rv-pricing-tier-includes li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0.05em;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--home-text-muted);
}

body.home .rv-pricing-tier-benefits {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.55rem;
}

body.home .rv-pricing-tier-benefits li {
	position: relative;
	padding-left: 1.35rem;
	font-size: 0.9rem;
	line-height: 1.5;
	color: var(--home-text);
}

body.home .rv-pricing-tier-benefits li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--home-accent);
}

body.home .rv-pricing-tier-card {
	position: sticky;
    top: calc(var(--home-nav-h) + 1.5rem);
    background: var(--home-bg-gray);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-lg);
    box-shadow: var(--home-shadow-md);
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

body.home .rv-pricing-tier-card:hover {
	border-color: var(--home-border-strong);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}

.rv-pricing-tier-card header {
    padding: 1.75rem 1.5rem;
    border-bottom: 1px solid var(--home-border);
}

body.home .rv-pricing-tier-card--featured {
	border-color: rgba(34, 165, 91, 0.35);
	box-shadow: 0 8px 32px rgba(34, 165, 91, 0.1);
}

body.home .rv-pricing-tier-card-badge {
	position: absolute;
	top: -0.65rem;
	right: 1.25rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #fff;
	background: var(--home-accent);
	padding: 0.3rem 0.65rem;
	border-radius: 999px;
}

body.home .rv-pricing-tier-card-label {
	margin: 0 0 0.2rem;
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--home-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

body.home .rv-pricing-tier-card-price {
	margin: 0 0 0.35rem;
	font-size: 2.35rem;
	font-weight: 700;
	line-height: 1;
	color: var(--home-text);
	font-variant-numeric: tabular-nums;
}

body.home .rv-pricing-tier-card-meta {
	font-size: 0.84rem;
	color: var(--home-text-muted);
}

body.home .rv-pricing-tier-card-rates {
    display: grid;
    gap: 0.45rem;
    padding: 1.75rem;
    background: var(--home-bg);
}

body.home .rv-pricing-tier-card-rates li {
    display: flex;
    align-items: center;
	justify-content: space-between;
    font-size: 0.86rem;
    color: var(--home-text-muted);
    margin-bottom: .5rem;
}

body.home .rv-pricing-tier-card-rates li span:last-child {
	font-variant-numeric: tabular-nums;
}

body.home .rv-pricing-tier-card-features {
	list-style: none;
	margin: 0 0 1.25rem;
	padding: 0;
	display: grid;
	gap: 0.5rem;
}

body.home .rv-pricing-tier-card-features li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.86rem;
	color: var(--home-text);
}

body.home .rv-pricing-tier-card-features i {
	color: var(--home-accent);
	font-size: 0.75rem;
	flex-shrink: 0;
}

.rv-pricing-tier-card footer {
    background: var(--home-bg);
    padding: 1.75rem 1.5rem;
    border-top: 1px solid var(--home-border);
    border-radius: 0 0 var(--home-radius-lg) var(--home-radius-lg);
}

body.home .rv-pricing-tier-cta {
	width: 100%;
	margin-top: auto;
	padding: 0.5rem 1rem;
	border-radius: var(--home-radius);
    border: 1px solid var(--color-btn-bg);
    background: var(--color-btn-bg);
    color: var(--color-btn);
	font-family: inherit;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
}

body.home .rv-pricing-tier-cta:hover {
	border-color: var(--color-btn-hover);
	background: var(--color-btn-hover);
}

body.home .rv-pricing-tier-cta--primary {
	background: var(--home-accent);
	border-color: var(--home-accent);
	color: #fff;
}

body.home .rv-pricing-tier-cta--primary:hover {
	background: var(--home-accent-hover);
	border-color: var(--home-accent-hover);
	color: #fff;
}

body.home .rv-pricing-extra {
	background: var(--home-bg);
	border: 1px solid var(--home-border);
	border-radius: var(--home-radius-lg);
	padding: 2rem 2rem 1.75rem;
	margin-bottom: 2rem;
	box-shadow: var(--home-shadow-md);
}

body.home .rv-pricing-extra-header {
	text-align: center;
	max-width: 36rem;
	margin: 0 auto 1.75rem;
}

body.home .rv-pricing-extra-title {
	font-size: 1.35rem;
	font-weight: 700;
	margin: 0 0 0.4rem;
	color: var(--home-text);
}

body.home .rv-pricing-extra-header p {
	margin: 0;
	font-size: 0.9rem;
	color: var(--home-text-muted);
	line-height: 1.55;
}

body.home .rv-pricing-extra-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
	margin-bottom: 1.75rem;
}

body.home .rv-pricing-extra-card {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	background: var(--home-bg);
	border: 1px solid var(--home-border);
	border-radius: var(--home-radius-lg);
	padding: 1.35rem 1.25rem;
	box-shadow: var(--home-shadow);
	transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

body.home .rv-pricing-extra-card:hover {
	border-color: var(--home-border-strong);
	box-shadow: var(--home-shadow-md);
	transform: translateY(-2px);
}

body.home .rv-pricing-extra-card-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	display: grid;
	place-items: center;
	font-size: 1rem;
	background: var(--home-accent-soft);
	border: 1px solid rgba(34, 165, 91, 0.22);
	color: var(--home-accent);
}

body.home .rv-pricing-extra-card-body {
	min-width: 0;
	flex: 1;
}

body.home .rv-pricing-extra-card-head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.35rem 1rem;
	margin-bottom: 0.5rem;
}

body.home .rv-pricing-extra-card-head h4 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--home-text);
	margin: 0;
}

body.home .rv-pricing-extra-price {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--home-accent);
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

body.home .rv-pricing-extra-price small {
	font-size: 0.78rem;
	font-weight: 500;
	color: var(--home-text-muted);
}

body.home .rv-pricing-extra-card-body p {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--home-text-muted);
}

body.home .rv-pricing-extra-parts {
	background: var(--home-bg-gray);
	border: 1px solid var(--home-border);
	border-radius: var(--home-radius-lg);
	padding: 1.35rem 1.5rem;
	margin-bottom: 1.25rem;
}

body.home .rv-pricing-extra-parts-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem 1rem;
	margin-bottom: 1rem;
}

body.home .rv-pricing-extra-parts-head h4 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--home-text);
	margin: 0;
}

body.home .rv-pricing-extra-parts-badge {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--home-accent);
	background: var(--home-accent-soft);
	border: 1px solid rgba(34, 165, 91, 0.22);
	padding: 0.3rem 0.6rem;
	border-radius: 999px;
}

body.home .rv-pricing-extra-table-wrap {
	overflow-x: auto;
	border-radius: var(--home-radius);
	border: 1px solid var(--home-border);
	background: var(--home-bg);
}

body.home .rv-pricing-extra-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.875rem;
}

body.home .rv-pricing-extra-table th,
body.home .rv-pricing-extra-table td {
	padding: 0.75rem 1rem;
	text-align: left;
	border-bottom: 1px solid var(--home-border);
}

body.home .rv-pricing-extra-table th {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--home-text-muted);
	background: var(--home-bg-subtle);
}

body.home .rv-pricing-extra-table tbody tr:last-child td {
	border-bottom: none;
}

body.home .rv-pricing-extra-table td:first-child {
	color: var(--home-text);
	font-weight: 500;
}

body.home .rv-pricing-extra-table td:last-child {
	color: var(--home-accent);
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	text-align: right;
	white-space: nowrap;
}

body.home .rv-pricing-extra-note {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 1rem 1.15rem;
	background: var(--home-accent-soft);
	border: 1px solid rgba(34, 165, 91, 0.2);
	border-radius: var(--home-radius);
}

body.home .rv-pricing-extra-note i {
	flex-shrink: 0;
	margin-top: 0.15rem;
	color: var(--home-accent);
	font-size: 1rem;
}

body.home .rv-pricing-extra-note p {
	margin: 0;
	font-size: 0.84rem;
	line-height: 1.6;
	color: var(--home-text-muted);
}

body.home .rv-pricing-extra-note strong {
	color: var(--home-text);
}

body.home .rv-pricing-cta {
	text-align: center;
	padding: 2rem 1.5rem;
	background: var(--home-bg);
	border: 1px solid var(--home-border);
	border-radius: var(--home-radius-lg);
}

body.home .rv-pricing-cta p {
	color: var(--home-text);
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 1.25rem;
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
}

/* ── Price Estimator (rv-price-estimator) ── */
body.home .rpe-section {
	padding-top: 3.5rem;
	padding-bottom: 3.5rem;
}

body.home .rpe-header {
	text-align: center;
	max-width: 46rem;
	margin: 0 auto 2.5rem;
}

body.home .rpe-title {
	margin-bottom: 0.75rem;
}

body.home .rpe-subtitle {
	margin: 0 auto;
}

body.home .rpe-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 1.75rem;
	align-items: start;
}

body.home .rpe-main {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

body.home .rpe-step {
	background: var(--home-bg);
	border: 1px solid var(--home-border);
	border-radius: var(--home-radius-lg);
	padding: 1.25rem 1.35rem;
	box-shadow: var(--home-shadow);
}

body.home .rpe-step-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.65rem;
	margin-bottom: 1rem;
}

body.home .rpe-step-head h3 {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 600;
}

body.home .rpe-step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.65rem;
	height: 1.65rem;
	border-radius: 999px;
	background: var(--home-accent-soft);
	color: var(--home-accent);
	font-size: 0.8rem;
	font-weight: 700;
}

body.home .rpe-step-hint {
	width: 100%;
	margin: 0;
	font-size: 0.84rem;
	color: var(--home-text-muted);
}

body.home .rpe-services {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
}

body.home .rpe-service {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.35rem;
	padding: 1rem;
	text-align: left;
	border: 2px solid var(--home-border);
	border-radius: var(--home-radius);
	background: var(--home-bg-gray);
	cursor: pointer;
	transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
	font-family: inherit;
	color: inherit;
}

body.home .rpe-service:hover {
	border-color: var(--home-border-strong);
	box-shadow: var(--home-shadow-md);
}

body.home .rpe-service.is-active {
	border-color: var(--home-accent);
	background: var(--home-accent-soft);
	box-shadow: 0 0 0 1px rgba(34, 165, 91, 0.15);
}

body.home .rpe-service-badge {
	position: absolute;
	top: 0.55rem;
	right: 0.55rem;
	font-size: 0.62rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 0.2rem 0.45rem;
	border-radius: 999px;
	background: var(--home-accent);
	color: #fff;
}

body.home .rpe-service-icon {
	font-size: 1.15rem;
	color: var(--home-accent);
}

body.home .rpe-service-label {
	font-size: 0.95rem;
	font-weight: 600;
}

body.home .rpe-service-tagline {
	font-size: 0.78rem;
	color: var(--home-text-muted);
	line-height: 1.35;
}

body.home .rpe-length-controls {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

body.home .rpe-length-label {
	font-size: 0.88rem;
	font-weight: 500;
}

body.home .rpe-length-select {
	width: 100%;
	max-width: 220px;
	padding: 0.65rem 0.75rem;
	border: 1px solid var(--home-border);
	border-radius: var(--home-radius);
	font: inherit;
	background: var(--home-bg);
	color: var(--home-text);
}

body.home .rpe-length-range {
	width: 100%;
	accent-color: var(--home-accent);
}

body.home .rpe-length-hint {
	margin: 0;
	font-size: 0.8rem;
	color: var(--home-text-muted);
}

body.home .rpe-included {
	border: 1px solid var(--home-border);
	border-radius: var(--home-radius);
	overflow: hidden;
}

body.home .rpe-included summary {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 0.5rem;
	padding: 0.85rem 1rem;
	cursor: pointer;
	font-weight: 600;
	font-size: 0.9rem;
	list-style: none;
	background: var(--home-bg-gray);
	transition: background 0.2s ease;
}

body.home .rpe-included summary:hover {
	background: var(--home-border);
}

body.home .rpe-included summary::-webkit-details-marker {
	display: none;
}

body.home .rpe-included-warranty {
	font-size: 0.78rem;
	font-weight: 500;
	color: var(--home-accent);
}

body.home .rpe-included-chevron {
	flex-shrink: 0;
	width: 1rem;
	height: 1rem;
	color: var(--home-text-muted);
	transition: transform 0.3s ease, color 0.2s ease;
}

body.home .rpe-included summary:hover .rpe-included-chevron {
	color: var(--home-text);
}

body.home .rpe-included[open] summary .rpe-included-chevron {
	transform: rotate(180deg);
}

body.home .rpe-included-body {
	padding: 1rem;
	font-size: 0.88rem;
	line-height: 1.55;
}

body.home .rpe-included-list {
	margin: 0.75rem 0;
	padding-left: 1.15rem;
}

body.home .rpe-included-list li {
	margin-bottom: 0.35rem;
}

body.home .rpe-why,
body.home .rpe-recommended {
	margin: 0;
	color: var(--home-text-muted);
}

body.home .rpe-addons {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

body.home .rpe-addon {
	border: 1px solid var(--home-border);
	border-radius: var(--home-radius);
	padding: 0.85rem 1rem;
	background: var(--home-bg-gray);
}

body.home .rpe-addon--toggle {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	cursor: pointer;
}

body.home .rpe-addon--toggle input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

body.home .rpe-addon-check {
	flex-shrink: 0;
	width: 1.15rem;
	height: 1.15rem;
	margin-top: 0.15rem;
	border: 2px solid var(--home-border-strong);
	border-radius: 4px;
	background: var(--home-bg);
	transition: background 0.15s, border-color 0.15s;
}

body.home .rpe-addon--toggle input:checked + .rpe-addon-check {
	background: var(--home-accent);
	border-color: var(--home-accent);
	box-shadow: inset 0 0 0 2px #fff;
}

body.home .rpe-addon-content {
	flex: 1;
	min-width: 0;
}

body.home .rpe-addon-head {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.35rem;
	font-weight: 600;
	font-size: 0.88rem;
}

body.home .rpe-addon-price {
	font-weight: 600;
	color: var(--home-text);
	white-space: nowrap;
}

body.home .rpe-addon-price small {
	font-weight: 500;
	color: var(--home-text-muted);
}

body.home .rpe-addon-subtitle {
	display: block;
	font-size: 0.76rem;
	font-weight: 500;
	color: var(--home-text-muted);
	margin-top: 0.15rem;
}

body.home .rpe-addon-desc,
body.home .rpe-addon-why {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.8rem;
	color: var(--home-text-muted);
	line-height: 1.45;
}

body.home .rpe-addon-range {
	margin: 0.35rem 0 0;
	font-size: 0.75rem;
	color: var(--home-text-muted);
}

body.home .rpe-process-steps {
	margin: 0.5rem 0 0;
	padding-left: 1.15rem;
	font-size: 0.78rem;
	color: var(--home-text-muted);
	line-height: 1.45;
}

body.home .rpe-coating-note {
	margin: 0 0 0.75rem;
	padding: 0.65rem 0.75rem;
	background: var(--home-accent-soft);
	border: 1px solid rgba(34, 165, 91, 0.25);
	border-radius: var(--home-radius);
	font-size: 0.84rem;
	color: var(--home-text);
}

body.home .rpe-coating-note i {
	color: var(--home-accent);
	margin-right: 0.35rem;
}

body.home .rpe-included-layers-note {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--home-accent);
}

body.home .rpe-addon--info {
	background: var(--home-addon--info);
	border-style: dashed;
}

body.home .rpe-inspection-note {
	margin: 0.5rem 0 0;
	padding: 0.55rem 0.65rem;
	background: var(--warn-note-bg);
	border: 1px solid var(--warn-note-border);
	border-radius: 6px;
	font-size: 0.78rem;
	color: var(--warn-note-color);
	line-height: 1.4;
}

body.home .rpe-addon--highlight {
	border-color: rgba(34, 165, 91, 0.45);
	background: var(--home-accent-soft);
}

body.home .rpe-addon-why i {
	color: var(--home-accent);
	margin-right: 0.25rem;
}

body.home .rpe-addon--warn {
	border-color: var(--warn-note-border);
	background: var(--warn-note-bg);;
}

body.home .rpe-qty-row {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-top: 0.5rem;
}

body.home .rpe-qty-row input {
	width: 3rem;
	text-align: center;
	padding: 0.4rem;
	border: 1px solid var(--home-border);
	border-radius: 6px;
	font: inherit;
}

body.home .rpe-qty-btn {
	width: 2rem;
	height: 2rem;
	border: 1px solid var(--home-border);
	border-radius: 6px;
	background: var(--home-bg);
	cursor: pointer;
	font-size: 1rem;
	line-height: 1;
}

body.home .rpe-tip {
	border: none;
	background: none;
	color: var(--home-accent);
	cursor: help;
	padding: 0;
}

body.home .rpe-sidebar {
	position: sticky;
	top: calc(var(--home-nav-h) + 1rem);
}

body.home .rpe-summary {
	background: var(--home-bg);
	border: 1px solid var(--home-border);
	border-radius: var(--home-radius-lg);
	padding: 1.25rem;
	box-shadow: var(--home-shadow-md);
}

body.home .rpe-summary-title {
	margin: 0 0 1rem;
	font-size: 1rem;
	font-weight: 600;
}

body.home .rpe-breakdown {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
	border-top: 1px solid var(--home-border);
}

body.home .rpe-breakdown-row {
	display: flex;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.55rem 0;
	border-bottom: 1px solid var(--home-border);
	font-size: 0.84rem;
	line-height: 1.35;
}

body.home .rpe-breakdown-row span:last-child {
	font-weight: 600;
	white-space: nowrap;
}

body.home .rpe-total-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 0.75rem;
	padding: 0.85rem 0 0.5rem;
	font-size: 0.95rem;
	font-weight: 600;
}

body.home .rpe-total-row strong {
	font-size: 1.45rem;
	color: var(--home-accent);
}

body.home .rpe-disclaimer {
	margin: 0 0 1rem;
	font-size: 0.78rem;
	color: var(--home-text-muted);
	line-height: 1.45;
}

body.home .rpe-cta {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

body.home .rpe-cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1rem;
	border-radius: var(--home-radius);
	font-size: 0.88rem;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	border: 1px solid var(--home-border-strong);
	color: var(--home-text);
	background: var(--home-bg);
	transition: background 0.15s, border-color 0.15s;
}

body.home .rpe-cta-btn:hover {
	background: var(--home-bg-gray);
}

body.home .rpe-cta-btn--primary {
	background: var(--home-accent);
	border-color: var(--home-accent);
	color: #fff;
}

body.home .rpe-cta-btn--primary:hover {
	background: var(--home-accent-hover);
	border-color: var(--home-accent-hover);
}

body.home .rpe-cta-phone {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--home-accent);
	text-decoration: none;
	padding-top: 0.25rem;
}

body.home .rpe-education {
	margin-top: 0.5rem;
	padding: 1.35rem;
	background: var(--home-bg);
	border: 1px solid var(--home-border);
	border-radius: var(--home-radius-lg);
}

body.home .rpe-edu-title {
	margin: 0 0 0.35rem;
	font-size: 1.05rem;
}

body.home .rpe-edu-intro {
	margin: 0 0 1rem;
	font-size: 0.88rem;
	color: var(--home-text-muted);
}

body.home .rpe-edu-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
}

body.home .rpe-edu-card {
	padding: 1rem;
	border: 1px solid var(--home-border);
	border-radius: var(--home-radius);
	background: var(--home-bg-gray);
	font-size: 0.84rem;
	line-height: 1.5;
}

body.home .rpe-edu-card.is-active {
	border-color: var(--home-accent);
	background: var(--home-accent-soft);
}

body.home .rpe-edu-card h4 {
	margin: 0 0 0.35rem;
	font-size: 0.92rem;
}

body.home .rpe-edu-summary {
	margin: 0 0 0.5rem;
	font-weight: 600;
	color: var(--home-text);
}

body.home .rpe-edu-detail {
	margin: 0;
	color: var(--home-text-muted);
}

@media (max-width: 960px) {
	body.home .rpe-layout {
		grid-template-columns: 1fr;
	}

	body.home .rpe-sidebar {
		position: static;
		order: -1;
	}

	body.home .rpe-services,
	body.home .rpe-edu-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 520px) {
	body.home .rpe-step {
		padding: 1rem;
	}
}

/* ── Why Us ── */
body.home .why-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem;
	align-items: center;
	margin-top: 1rem;
}

body.home .why-features {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

body.home .why-feature {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	padding: 1.25rem;
	background: var(--home-bg);
	border: 1px solid var(--home-border);
	border-radius: var(--home-radius-lg);
	transition: border-color 0.25s, box-shadow 0.25s;
}

body.home .why-feature:hover {
	border-color: var(--home-border-strong);
	box-shadow: var(--home-shadow-md);
}

body.home .why-feature-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	display: grid;
	place-items: center;
	font-size: 1rem;
	background: var(--home-accent-soft);
	color: var(--home-accent);
}

body.home .why-feature h4 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.35rem;
	color: var(--home-text);
}

body.home .why-feature p {
	color: var(--home-text-muted);
	font-size: 0.875rem;
	line-height: 1.55;
}

body.home .why-visual-inner {
	background: var(--home-bg);
	border: 1px solid var(--home-border);
	border-radius: var(--home-radius-lg);
	padding: 2.5rem;
	position: relative;
	overflow: hidden;
}

body.home .why-visual-inner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--home-accent), #16a34a);
}

body.home .why-visual-tag {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--home-accent);
	margin-bottom: 1.25rem;
}

body.home .why-visual-inner h3 {
	font-size: 1.35rem;
	font-weight: 600;
	line-height: 1.45;
	color: var(--home-text);
	font-style: italic;
}

/* ── Gallery ── */
body.home .gallery-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

body.home .gallery-item {
	background: var(--home-bg);
	border: 1px solid var(--home-border);
	border-radius: var(--home-radius-lg);
	overflow: hidden;
	transition: border-color 0.25s, box-shadow 0.25s;
}

body.home .gallery-item:hover {
	border-color: var(--home-border-strong);
	box-shadow: var(--home-shadow-md);
}

body.home .gallery-compare {
	display: grid;
	grid-template-columns: 1fr 1fr;
	height: 140px;
}

body.home .gallery-side {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

body.home .gallery-side--before {
	background: #fef2f2;
}

body.home .gallery-side--after {
	background: var(--home-accent-soft);
}

body.home .gallery-side-label {
	position: absolute;
	top: 0.5rem;
	left: 0.5rem;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.2rem 0.5rem;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.9);
	color: var(--home-text-muted);
}

body.home .gallery-side-pattern {
	position: absolute;
	inset: 0;
	opacity: 0.15;
	background-image: repeating-linear-gradient(
		45deg,
		currentColor 0,
		currentColor 1px,
		transparent 0,
		transparent 50%
	);
	background-size: 8px 8px;
}

body.home .gallery-side--before .gallery-side-pattern { color: #ef4444; }
body.home .gallery-side--after .gallery-side-pattern { color: var(--home-accent); }

body.home .gallery-side-icon {
	font-size: 2rem;
	position: relative;
	z-index: 1;
}

body.home .gallery-caption {
	padding: 1.25rem;
}

body.home .gallery-caption h4 {
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 0.4rem;
	color: var(--home-text);
}

body.home .gallery-caption p {
	font-size: 0.8rem;
	color: var(--home-text-muted);
	line-height: 1.5;
}

/* ── Testimonials ── */
body.home .testimonials-track {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

body.home .testimonial-card {
	background: var(--home-bg);
	border: 1px solid var(--home-border);
	border-radius: var(--home-radius-lg);
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	transition: border-color 0.25s, box-shadow 0.25s;
}

body.home .testimonial-card:hover {
	border-color: var(--home-border-strong);
	box-shadow: var(--home-shadow-md);
}

body.home .testimonial-stars {
	color: #f59e0b;
	font-size: 0.9rem;
	letter-spacing: 0.05em;
	margin-bottom: 1rem;
}

body.home .testimonial-quote {
	flex: 1;
	font-size: 0.9rem;
	line-height: 1.65;
	color: var(--home-text-muted);
	margin-bottom: 1.5rem;
}

body.home .testimonial-author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

body.home .testimonial-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--home-accent-soft);
	color: var(--home-accent);
	font-size: 0.75rem;
	font-weight: 700;
	display: grid;
	place-items: center;
	flex-shrink: 0;
}

body.home .testimonial-name {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--home-text);
}

body.home .testimonial-meta {
	font-size: 0.75rem;
	color: var(--home-text-muted);
}

/* ── Contact ── */
body.home .contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 2rem;
	align-items: start;
}

body.home .contact-info {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

body.home .contact-card {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	padding: 1.25rem;
	background: var(--home-bg);
	border: 1px solid var(--home-border);
	border-radius: var(--home-radius-lg);
	transition: border-color 0.25s, box-shadow 0.25s;
}

body.home .contact-card:hover {
	border-color: var(--home-border-strong);
	box-shadow: var(--home-shadow);
}

body.home .contact-card-icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: grid;
	place-items: center;
	font-size: 0.95rem;
	background: var(--home-accent-soft);
	color: var(--home-accent);
}

body.home .contact-card h4 {
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
	color: var(--home-text);
}

body.home .contact-card p {
	font-size: 0.85rem;
	color: var(--home-text-muted);
	line-height: 1.5;
}

body.home .contact-card a {
	color: var(--home-accent);
	text-decoration: none;
	font-weight: 500;
}

body.home .contact-card a:hover {
	text-decoration: underline;
}

body.home .contact-form-card {
	background: var(--home-bg);
	border: 1px solid var(--home-border);
	border-radius: var(--home-radius-lg);
	padding: 2rem;
	box-shadow: var(--home-shadow-md);
}

body.home .contact-form-card h3 {
	font-size: 1.15rem;
	font-weight: 600;
	margin-bottom: 1.25rem;
	color: var(--home-text);
}

/* ── Forms Section ── */
body.home .rv-form-section {
	padding: 5rem 0;
}

body.home .rv-form-options {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
	margin-bottom: 2rem;
}

body.home .rv-option-card {
	display: flex;
    flex-direction: column;
	background: var(--home-bg-subtle);
	border: 1px solid var(--home-border);
	border-radius: var(--home-radius-lg);
	padding: 2rem;
	transition: border-color 0.25s, box-shadow 0.25s;
	box-shadow: none;
	cursor: default;
}

body.home .rv-option-card:hover {
	border-color: var(--home-border-strong);
	box-shadow: var(--home-shadow-md);
	transform: none;
}

body.home .rv-option-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.75rem;
}

body.home .rv-option-header h3 {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--home-text);
}

body.home .rv-price {
	background: var(--home-accent-soft);
	color: var(--home-accent);
	border: 1px solid rgba(34, 165, 91, 0.2);
	padding: 0.25rem 0.7rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.8rem;
}

body.home .rv-price--free {
	background: var(--home-bg-subtle);
	color: var(--home-text-muted-inverse);
	border-color: var(--home-border);
}

body.home .rv-option-card p {
	color: var(--home-text-muted-inverse);
	font-size: 0.9rem;
	margin-bottom: 1.25rem;
}

body.home .rv-option-features {
	flex: 1;
	list-style: none;
	margin-bottom: 1.5rem;
}

body.home .rv-option-features li {
	color: var(--home-text-muted-inverse);
	font-size: 0.875rem;
	padding: 0.4rem 0;
	border-bottom: 1px solid var(--home-border);
}

body.home .rv-option-features li:last-child {
	border-bottom: none;
}

body.home .rv-option-button {
	width: 100%;
	background: var(--color-btn-bg);
    border-color: var(--color-btn-border);
    color: var(--color-btn);
	padding: 0.8rem 1.25rem;
	font-size: 0.9rem;
	font-weight: 600;
	font-family: inherit;
	border-radius: var(--home-radius);
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
}

body.home .rv-option-button:hover {
	background: var(--color-btn-hover);
    border-color: var(--color-btn-hover);
	transform: none;
	box-shadow: none;
}

body.home .rv-form-container {
	background: var(--home-bg-gray);
	border: 1px solid var(--home-border);
	border-radius: var(--home-radius-lg);
	padding: 2rem;
	max-width: 640px;
	margin: 0 auto;
	box-shadow: var(--home-shadow-md);
}

body.home .rv-form-container.hidden,
.rv-service-form.hidden {
	display: none;
}

body.home .rv-back-button {
	background: var(--home-bg);
	color: var(--home-text-muted);
	border: 1px solid var(--home-border);
	padding: 0.5rem 0.9rem;
	border-radius: 8px;
	font-family: inherit;
	font-size: 0.875rem;
	cursor: pointer;
	margin-bottom: 1.5rem;
	transition: border-color 0.2s, color 0.2s;
}

body.home .rv-back-button:hover {
	border-color: var(--home-border-strong);
	color: var(--home-text);
	background: var(--home-bg-subtle);
}

body.home .rv-service-form h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1.25rem;
	color: var(--home-text);
}

/* ── Form slider wizard ── */
body.home .form-slider-progress {
	margin-bottom: 1.75rem;
}

body.home .form-slider-steps {
	display: flex;
	gap: 0.35rem;
	list-style: none;
	padding: 0;
	margin: 0 0 0.65rem;
}

body.home .form-slider-steps li {
	flex: 1;
	text-align: center;
	font-size: 0.68rem;
	line-height: 1.2;
	color: var(--home-text-muted);
	padding: 0.45rem 0.25rem;
	border-radius: 6px;
	background: #eef0f3;
	border: 1px solid transparent;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

body.home .form-slider-steps li.is-active {
	background: #fff;
	color: var(--home-text);
	font-weight: 600;
	border-color: var(--home-border-strong);
	box-shadow: var(--home-shadow);
}

body.home .form-slider-steps li.is-complete {
	color: var(--home-accent);
	background: #e8f5ee;
}

body.home .form-slider-track {
	height: 3px;
	background: var(--home-border);
	border-radius: 999px;
	overflow: hidden;
}

body.home .form-slider-bar {
	height: 100%;
	width: 0%;
	background: var(--home-accent);
	border-radius: 999px;
	transition: width 0.35s ease;
}

body.home .form-slider-panel {
	display: none;
	animation: formSliderIn 0.28s ease;
}

body.home .form-slider-panel.is-active {
	display: block;
}

@keyframes formSliderIn {
	from { opacity: 0; transform: translateX(8px); }
	to { opacity: 1; transform: translateX(0); }
}

body.home .form-slider-title {
	font-size: 1.15rem;
	font-weight: 600;
	margin-bottom: 0.3rem;
	color: var(--home-text);
}

body.home .form-slider-subtitle {
	font-size: 0.85rem;
	color: var(--home-text-muted);
	margin-bottom: 1.25rem;
	line-height: 1.5;
}

body.home .form-slider-panels {
	background: #fff;
	border: 1px solid var(--home-border);
	border-radius: var(--home-radius);
	padding: 1.5rem;
}

body.home .form-slider-nav {
	display: flex;
	gap: 0.75rem;
	margin-top: 1.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--home-border);
}

body.home .form-slider-nav .form-slider-back {
	flex: 0 0 auto;
	margin-bottom: 0;
}

body.home .form-slider-nav .form-slider-next,
body.home .form-slider-nav .rv-submit-button {
	flex: 1;
	margin-bottom: 0;
}

body.home .form-slider-success {
	text-align: center;
	padding: 2rem 1rem;
}

body.home .form-slider-success-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 1rem;
	border-radius: 50%;
	background: var(--home-accent-soft);
	color: var(--home-accent);
	font-size: 1.75rem;
	font-weight: 700;
	display: grid;
	place-items: center;
	border: 2px solid rgba(34, 165, 91, 0.25);
}

body.home .form-slider-success .form-slider-title {
	margin-bottom: 0.5rem;
}

body.home .form-slider-success .form-slider-subtitle {
	margin-bottom: 0;
}

body.home .rv-form-row {
	display: flex;
	gap: 1rem;
}

body.home .rv-form-group {
	margin-bottom: 1.1rem;
}

body.home .rv-form-group label {
	display: block;
	margin-bottom: 0.35rem;
	font-weight: 500;
	font-size: 0.85rem;
	color: var(--home-text);
}

body.home .rv-form-group input,
body.home .rv-form-group select,
body.home .rv-form-group textarea {
	width: 100%;
	padding: 0.7rem 0.9rem;
	background: var(--home-bg-gray);
	border: 1px solid var(--home-border);
	border-radius: 8px;
	color: var(--home-text);
	font-size: 0.9rem;
	font-family: inherit;
	transition: border-color 0.2s, box-shadow 0.2s;
}

body.home .rv-form-group input::placeholder,
body.home .rv-form-group textarea::placeholder {
	color: #9ca3af;
}

body.home .rv-form-group input:focus,
body.home .rv-form-group select:focus,
body.home .rv-form-group textarea:focus {
	outline: none;
	border-color: var(--home-accent);
	box-shadow: 0 0 0 3px rgba(34, 165, 91, 0.12);
}

body.home .rv-form-group.is-invalid input,
body.home .rv-form-group.is-invalid select,
body.home .rv-form-group.is-invalid textarea {
	border-color: #ef4444;
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

body.home .rv-field-error {
	display: none;
	margin-top: 0.3rem;
	font-size: 0.78rem;
	color: #dc2626;
}

body.home .rv-form-group.is-invalid .rv-field-error {
	display: block;
}

/* Google Place Autocomplete element — match rv-form inputs */
body.home .rv-form-group gmp-place-autocomplete {
	width: 100%;
	display: block;
	color-scheme: light only;
	background-color: var(--home-bg);
	border: 1px solid var(--home-border-strong);
	border-radius: var(--home-radius);
	color: var(--home-text);
	font-family: var(--home-font);
	font-size: 1rem;
	line-height: 1.4;
}

body.home .rv-form-group gmp-place-autocomplete:focus-within {
	border-color: var(--home-accent);
	box-shadow: 0 0 0 3px rgba(34, 165, 91, 0.12);
}

body.home .rv-form-group gmp-place-autocomplete::part(input) {
	padding: 0.7rem 0.9rem;
}

body.home .rv-form-group gmp-place-autocomplete::part(prediction-list) {
	z-index: 10000;
	font-family: inherit;
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

body.home .rv-form-group gmp-place-autocomplete::part(prediction-item):hover {
	background: rgba(59, 130, 246, 0.08);
}

body.home .rv-form-group small {
	color: var(--home-text-muted);
	font-size: 0.78rem;
}

body.home .rv-radio-group {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

body.home .rv-radio-label {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.55rem 0.9rem;
	border-radius: 8px;
	border: 1px solid var(--home-border);
	background: var(--home-bg);
	cursor: pointer;
	font-size: 0.875rem;
	color: var(--home-text-muted);
	transition: border-color 0.2s, background 0.2s;
}

body.home .rv-radio-label:has(input:checked) {
	border-color: var(--home-accent);
	background: var(--home-accent-soft);
	color: var(--home-text);
}

body.home .rv-radio-label input {
	width: auto;
	accent-color: var(--home-accent);
}

body.home .rv-form-summary {
	background: var(--home-bg-subtle);
	border: 1px solid var(--home-border);
	border-radius: 8px;
	padding: 1rem;
	margin-bottom: 1.25rem;
}

body.home .rv-form-summary p {
	margin: 0.25rem 0;
	color: var(--home-text-muted);
	font-size: 0.875rem;
}

body.home .rv-submit-button {
	width: 100%;
	background: var(--color-btn-bg);
	color: #fff;
	border: none;
	padding: 0.85rem;
	font-size: 0.95rem;
	font-weight: 600;
	font-family: inherit;
	border-radius: var(--home-radius);
	cursor: pointer;
	transition: background 0.2s;
}

body.home .rv-submit-button:hover:not(:disabled) {
	background: var(--color-btn-hover);
	transform: none;
	box-shadow: none;
}

body.home .rv-submit-button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

body.home .rv-form-actions {
	display: flex;
	gap: 0.75rem;
	margin-top: 1rem;
}

body.home .rv-form-actions .rv-submit-button {
	flex: 1;
}

body.home .rv-form-message {
	margin: 1rem 0;
	padding: 0.75rem 1rem;
	border-radius: 8px;
	font-size: 0.875rem;
	line-height: 1.5;
}

body.home .rv-form-message.error {
	background: #fef2f2;
	color: #b91c1c;
	border: 1px solid #fecaca;
}

body.home .rv-form-message.success {
	background: var(--home-accent-soft);
	color: #166534;
	border: 1px solid rgba(34, 165, 91, 0.25);
}

body.home .rv-step-note {
	background: var(--home-bg-subtle) !important;
	color: var(--home-text-muted) !important;
	border: 1px solid var(--home-border) !important;
	padding: 0.9rem !important;
	border-radius: 8px !important;
	font-size: 0.85rem !important;
	line-height: 1.55;
}

body.home #verification-error {
	color: #b91c1c !important;
	background: #fef2f2;
	padding: 0.6rem 0.9rem;
	border-radius: 8px;
	border: 1px solid #fecaca;
}

body.home #inspection-success-panel {
	background: var(--home-accent-soft) !important;
	color: #166534 !important;
	border: 1px solid rgba(34, 165, 91, 0.25);
}

body.home .rv-verify-row {
	display: flex;
	gap: 0.6rem;
}

body.home .rv-verify-row input {
	flex: 1;
}

body.home .rv-verify-row .rv-option-button {
	width: auto;
	padding: 0.7rem 0.9rem;
	font-size: 0.8rem;
	white-space: nowrap;
	background: transparent;
    color: var(--color-btn-invert);
}

body.home .rv-dropzone {
	position: relative;
	border: 1px dashed var(--home-border-strong);
	border-radius: var(--home-radius);
	padding: 1.75rem 1.25rem;
	text-align: center;
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s;
	background: var(--home-bg-subtle);
}

body.home .rv-dropzone:hover,
body.home .rv-dropzone.is-dragover {
	border-color: var(--home-accent);
	background: var(--home-accent-soft);
}

body.home .rv-dropzone input[type="file"] {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
}

body.home .rv-dropzone-icon {
	font-size: 1.5rem;
	color: var(--home-text-muted);
	margin-bottom: 0.4rem;
}

body.home .rv-dropzone-text {
	font-size: 0.85rem;
	color: var(--home-text-muted);
}

body.home #photo-previews {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-top: 0.75rem;
}

body.home .photo-preview-item {
	position: relative;
	width: 80px;
	height: 80px;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid var(--home-border);
}

body.home .photo-preview-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

body.home .photo-preview-remove {
	position: absolute;
	top: 3px;
	right: 3px;
	width: 20px;
	height: 20px;
	border: none;
	border-radius: 50%;
	background: #ef4444;
	color: #fff;
	font-size: 12px;
	cursor: pointer;
	display: grid;
	place-items: center;
}

body.home #photo-progress {
	width: 100%;
	height: 4px;
	margin-top: 0.6rem;
	appearance: none;
	-webkit-appearance: none;
	background: var(--home-border);
	border-radius: 999px;
}

body.home #photo-progress::-webkit-progress-value {
	background: var(--home-accent);
	border-radius: 999px;
}

/* ── Footer ── */
body.home footer.home-footer {
	padding: 1.5rem;
	border-top: 1px solid var(--home-border);
	background: var(--home-bg);
}

body.home .copyright-text {
	color: var(--home-text-muted);
	font-size: 0.8rem;
}

/* ── Reveal (Intersection Observer adds .is-visible) ── */
body.home .reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

body.home .reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

body.home .fade-in {
	animation: homeFadeIn 0.4s ease both;
}

@keyframes homeFadeIn {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Hero entrance — pure CSS on .hero-ready */
body.home .rv-hero-banner [data-el="hero-eyebrow"],
body.home .rv-hero-banner [data-el="hero-title"],
body.home .rv-hero-banner [data-el="hero-lead"],
body.home .rv-hero-banner [data-el="hero-button"],
body.home .rv-hero-banner [data-el="hero-point"],
body.home .rv-hero-banner [data-el="hero-illustration"] {
	opacity: 0;
	transform: translateY(16px);
}

body.home .rv-hero-banner.hero-ready [data-el="hero-eyebrow"] {
	animation: homeFadeIn 0.5s ease 0.05s both;
}

body.home .rv-hero-banner.hero-ready [data-el="hero-title"] {
	animation: homeFadeIn 0.6s ease 0.12s both;
}

body.home .rv-hero-banner.hero-ready [data-el="hero-lead"] {
	animation: homeFadeIn 0.5s ease 0.2s both;
}

body.home .rv-hero-banner.hero-ready [data-el="hero-button"] {
	animation: homeFadeIn 0.45s ease 0.28s both;
}

body.home .rv-hero-banner.hero-ready [data-el="hero-point"] {
	animation: homeFadeIn 0.4s ease both;
}

body.home .rv-hero-banner.hero-ready [data-el="hero-point"]:nth-child(1) { animation-delay: 0.34s; }
body.home .rv-hero-banner.hero-ready [data-el="hero-point"]:nth-child(2) { animation-delay: 0.4s; }
body.home .rv-hero-banner.hero-ready [data-el="hero-point"]:nth-child(3) { animation-delay: 0.46s; }
body.home .rv-hero-banner.hero-ready [data-el="hero-point"]:nth-child(4) { animation-delay: 0.52s; }

body.home .rv-hero-banner.hero-ready [data-el="hero-illustration"] {
	animation: homeFadeIn 0.65s ease 0.18s both;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

body.home .spinner {
	display: inline-block;
	width: 14px;
	height: 14px;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: spin 0.6s linear infinite;
	vertical-align: middle;
	margin-right: 6px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
	body.home .nav-links {
		display: none;
	}

	body.home .rv-hero-inner {
		grid-template-columns: 1fr;
		gap: 2.5rem;
		text-align: center;
	}

	body.home .rv-hero-content {
		text-align: center;
	}

	body.home .rv-hero-content .hero-lead {
		margin-left: auto;
		margin-right: auto;
	}

	body.home .rv-hero-points {
		align-items: center;
	}

	body.home .rv-hero-photo {
		max-width: min(540px, 100%);
	}

	body.home .why-grid,
	body.home .contact-grid,
	body.home .rv-mobile-service-grid {
		grid-template-columns: 1fr;
	}

	body.home .rv-pricing-tier {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		padding: 1.5rem 0;
	}

	body.home .rv-pricing-tier-copy {
		order: 1;
	}

	body.home .rv-pricing-tier-card {
		order: 2;
		max-width: none;
		width: 100%;
		position: static;
	}

	body.home .rv-pricing-extra-grid {
		grid-template-columns: 1fr;
	}

	body.home .rv-pricing-extra {
		padding: 1.5rem 1.25rem;
	}

	body.home .testimonials-track {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	body.home .nav-auth {
		display: none;
	}

	body.home .home-nav-inner {
		gap: 0.5rem;
		padding: 0 0.75rem;
	}

	body.home .nav-brand {
		min-width: 0;
		flex: 1 1 auto;
	}

	body.home .nav-brand > span:not(.nav-brand-mark) {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	body.home .nav-phone {
		display: flex;
		margin-left: auto;
		padding: 0.4rem 0.65rem;
		font-size: 0.8rem;
		max-width: 46vw;
	}

	body.home .nav-phone span {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	body.home .nav-toggle {
		display: grid;
		place-items: center;
		flex-shrink: 0;
		margin-left: 0.25rem;
		min-width: 44px;
		min-height: 44px;
		touch-action: manipulation;
	}

	body.home .nav-mobile-panel {
		display: none;
		position: fixed;
		top: var(--home-nav-h);
		left: 0;
		right: 0;
		z-index: 199;
		padding: 1rem 1.5rem 1.25rem;
		background: #fff;
		border-bottom: 1px solid var(--home-border);
		flex-direction: column;
		gap: 0.5rem;
		box-shadow: var(--home-shadow-md);
	}

	body.home .nav-mobile-panel.is-open {
		display: flex;
	}

	body.home .nav-mobile-panel a {
		text-decoration: none;
		color: var(--home-text);
		font-size: 0.9rem;
		font-weight: 500;
		padding: 0.65rem 0;
		border-bottom: 1px solid var(--home-border);
	}

	body.home .nav-mobile-panel a:last-child {
		border-bottom: none;
	}

	body.home .nav-mobile-panel .nav-phone-mobile {
		display: flex;
		align-items: center;
		gap: 0.5rem;
		font-weight: 600;
		color: var(--home-accent);
		border-bottom: none;
		padding-top: 0.5rem;
	}

	body.home .rv-form-options,
	body.home .gallery-grid,
	body.home .rv-mobile-service-cards {
		grid-template-columns: 1fr;
	}

	body.home .rv-form-row {
		flex-direction: column;
		gap: 0;
	}

	body.home .rv-form-container {
		padding: 1.5rem;
	}

	body.home .form-slider-steps li {
		font-size: 0.58rem;
		padding: 0.35rem 0.15rem;
	}

	body.home .form-slider-panels {
		padding: 1.15rem;
	}
}

@media (max-width: 480px) {
	body.home .nav-phone {
		font-size: 0.9rem;
		padding: 0 1rem 0 0;
		max-width: 52vw;
	}

	body.home .nav-brand {
		font-size: 0.95rem;
	}
}

body.home.nav-mobile-open {
	overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
	body.home .reveal,
	body.home .rv-hero-banner [data-el] {
		opacity: 1;
		transform: none;
		animation: none !important;
		transition: none !important;
	}

	body.home .fade-in {
		animation: none !important;
	}
}