/* Home Content Sections */

.rbz-section {
	padding: clamp(4rem, 8vw, 6.5rem) var(--rbz-gutter);
	background: #ffffff;
}

.rbz-section__inner {
	width: 100%;
	max-width: var(--rbz-container);
	margin: 0 auto;
}

.rbz-section__eyebrow,
.products__eyebrow,
.process__eyebrow,
.guide__eyebrow {
	display: block;
	margin-bottom: 0.875rem;
	color: #3f9a44;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.14em;
}

.rbz-section__title,
.products__title,
.process__title,
.guide__title {
	margin-bottom: 0.875rem;
	color: #1a2332;
	font-size: clamp(1.5rem, 3vw, 2.125rem);
	font-weight: 800;
	line-height: 1.45;
	letter-spacing: -0.02em;
}

.products__desc,
.process__desc,
.guide__desc {
	max-width: 560px;
	margin-bottom: clamp(2rem, 4vw, 3rem);
	color: #64748b;
	font-size: 0.9375rem;
	line-height: 1.95;
}

.rbz-reveal {
	opacity: 1;
	transform: none;
}

.rbz-reveal.is-visible {
	animation: content-reveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes content-reveal {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* FAQ + CTA moved to support.css */

@media (prefers-reduced-motion: reduce) {
	.rbz-reveal.is-visible {
		animation: none !important;
	}
}
