.rd-home {
	background: #ffffff;
}

/* =========================================================
   HERO — DESKTOP
   ========================================================= */

.rd-hero {
	overflow: hidden;
	padding: 38px 0 34px;
	background:
		radial-gradient(
			circle at 76% 48%,
			rgba(129, 190, 42, 0.10),
			transparent 36%
		),
		linear-gradient(
			180deg,
			#ffffff 0%,
			#fbfdf9 100%
		);
}

.rd-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: 24px;
	align-items: center;
	min-height: 500px;
}

.rd-hero__content {
	position: relative;
	z-index: 2;
	max-width: 570px;
}

.rd-hero__title {
	margin: 0;
	color: var(--rd-green);
	font-size: clamp(2.9rem, 3.65vw, 3.85rem);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.035em;
}


.rd-hero__services {
	margin: 20px 0 0;
	color: var(--rd-green);
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.35;
}

.rd-hero__services span {
	margin-inline: 5px;
}

.rd-hero__description {
	max-width: 410px;
	margin: 16px 0 0;
	color: var(--rd-text);
	font-size: 1.05rem;
	line-height: 1.55;
}

.rd-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 26px;
}

.rd-hero__visual {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-width: 0;
}

.rd-hero__image {
	display: block;
	width: min(108%, 720px);
	max-width: none;
	height: auto;
	object-fit: contain;
	transform: translateX(12px);
	filter: drop-shadow(0 16px 24px rgba(11, 107, 43, 0.06));
}

/* =========================================================
   HERO WHATSAPP BUTTON
   ========================================================= */

.rd-button--whatsapp {
	gap: 9px;
}

.rd-button--whatsapp img {
	display: block;

	width: 24px;
	height: 24px;

	flex: 0 0 24px;

	object-fit: contain;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

	.rd-hero {
		padding: 46px 0 42px;
	}

	.rd-hero__grid {
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
		gap: 24px;
		min-height: 470px;
	}

	.rd-hero__content {
		max-width: 460px;
	}

	.rd-hero__title {
		font-size: clamp(2.7rem, 5.8vw, 3.8rem);
	}

	.rd-hero__services {
		margin-top: 18px;
		font-size: 1.08rem;
	}

	.rd-hero__description {
		font-size: 1rem;
	}

	.rd-hero__image {
		width: min(118%, 620px);
		transform: translateX(20px);
	}
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

	.rd-hero {
		padding: 5px 0 32px;
	}

	.rd-hero__grid {
		grid-template-columns: 1fr;
		gap: 24px;
		min-height: 0;
	}

	.rd-hero__content {
		max-width: none;
	}

	.rd-hero__title {
		font-size: clamp(2.5rem, 11vw, 3.35rem);
		line-height: 1;
		letter-spacing: -0.035em;
	}

	.rd-hero__services {
		margin-top: 16px;
		font-size: 1rem;
	}

	.rd-hero__description {
		max-width: none;
		margin-top: 14px;
		font-size: 1rem;
		line-height: 1.55;
	}

	.rd-hero__actions {
		gap: 10px;
		margin-top: 22px;
	}

	.rd-button {
		flex: 1 1 auto;
	}

	.rd-hero__visual {
		order: 2;
		justify-content: center;
	}

	.rd-hero__image {
		width: min(110%, 520px);
		max-width: none;
		height: auto;
		margin-inline: -5%;
		transform: none;
	}
}

@media (max-width: 767px) {

	.rd-button--whatsapp img {
		width: 24px;
		height: 24px;
		flex-basis: 24px;
	}

}

/* =========================================================
   SERVICES
   ========================================================= */

.rd-services {
	padding: 28px 0 42px;
	background: #ffffff;
}

.rd-services__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	align-items: stretch;
}


/* =========================================================
   SERVICE CARD
   ========================================================= */

.rd-service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;

	background: #ffffff;
	border: 1px solid #dfe6dc;
	border-top: 5px solid var(--rd-green);
	border-radius: 12px;

	box-shadow:
		0 8px 22px rgba(15, 64, 26, 0.07);

	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.rd-service-card:hover {
	transform: translateY(-3px);

	box-shadow:
		0 14px 30px rgba(15, 64, 26, 0.11);
}


/* =========================================================
   CARD HEADER
   ========================================================= */

.rd-service-card__header {
	display: flex;
	align-items: center;
	gap: 12px;

	padding:
		18px
		18px
		4px;
}

.rd-service-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	flex: 0 0 auto;

	width: 46px;
	height: 46px;

	border-radius: 50%;

	background: var(--rd-green);
	color: #ffffff;
}

.rd-service-card__icon svg {
	width: 25px;
	height: 25px;

	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.rd-service-card__title {
	margin: 0;

	color: var(--rd-green);

	font-size: 1.7rem;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
}


/* =========================================================
   CARD INTRO / IMAGE
   ========================================================= */

.rd-service-card__intro {
	display: grid;
	grid-template-columns:
		minmax(0, 1fr)
		minmax(120px, 42%);

	align-items: center;

	min-height: 165px;

	padding:
		2px
		10px
		0
		18px;
}

.rd-service-card__copy {
	position: relative;
	z-index: 2;
}

.rd-service-card__copy p {
	margin: 0;

	color: var(--rd-text);

	font-size: 0.94rem;
	line-height: 1.5;
}

.rd-service-card__visual {
	display: flex;
	align-items: center;
	justify-content: center;

	min-width: 0;
	height: 160px;
}

.rd-service-card__visual img {
	display: block;

	width: 145%;
	max-width: 235px;
	height: 100%;

	object-fit: contain;

	transform: translateX(7px);
}


/* =========================================================
   SERVICE LIST
   ========================================================= */

.rd-service-card__list {
	display: grid;
	gap: 8px;

	margin:
		2px
		18px
		20px;

	padding: 0;

	list-style: none;

	color: var(--rd-text);

	font-size: 0.93rem;
	line-height: 1.35;
}

.rd-service-card__list li {
	position: relative;

	padding-left: 24px;
}

.rd-service-card__list li::before {
	content: "✓";

	position: absolute;
	left: 0;
	top: 0;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 17px;
	height: 17px;

	border-radius: 50%;

	background: var(--rd-green);
	color: #ffffff;

	font-size: 11px;
	font-weight: 800;
	line-height: 1;
}


/* =========================================================
   CARD BUTTON
   ========================================================= */

.rd-service-card__button {
	display: flex;
	align-items: center;
	justify-content: space-between;

	margin-top: auto;

	min-height: 50px;

	padding:
		12px
		22px;

	background: var(--rd-green);

	color: #ffffff;

	font-size: 1rem;
	font-weight: 700;
	line-height: 1;

	text-decoration: none;

	transition:
		background-color 0.2s ease;
}

.rd-service-card__button:hover,
.rd-service-card__button:focus-visible {
	background: var(--rd-green-dark);
	color: #ffffff;
}

.rd-service-card__button span:last-child {
	font-size: 1.45rem;
	font-weight: 400;

	transition:
		transform 0.2s ease;
}

.rd-service-card__button:hover span:last-child {
	transform: translateX(4px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

	.rd-services {
		padding:
			24px
			0
			36px;
	}

	.rd-services__grid {
		grid-template-columns:
			repeat(2, minmax(0, 1fr));

		gap: 18px;
	}

	.rd-service-card:last-child {
		grid-column: 1 / -1;

		width: min(100%, 520px);

		justify-self: center;
	}

	.rd-service-card__title {
		font-size: 1.55rem;
	}
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

	.rd-services {
		padding:
			16px
			0
			30px;
	}

	.rd-services__grid {
		grid-template-columns: 1fr;

		gap: 16px;
	}

	.rd-service-card:last-child {
		grid-column: auto;

		width: 100%;
	}

	.rd-service-card {
		border-radius: 10px;
	}

	.rd-service-card__header {
		padding:
			16px
			16px
			2px;
	}

	.rd-service-card__icon {
		width: 42px;
		height: 42px;
	}

	.rd-service-card__icon svg {
		width: 23px;
		height: 23px;
	}

	.rd-service-card__title {
		font-size: 1.5rem;
	}

	.rd-service-card__intro {
		grid-template-columns:
			minmax(0, 1fr)
			135px;

		min-height: 145px;

		padding:
			0
			8px
			0
			16px;
	}

	.rd-service-card__visual {
		height: 140px;
	}

	.rd-service-card__visual img {
		width: 145%;
		max-width: 185px;

		transform: translateX(5px);
	}

	.rd-service-card__copy p {
		font-size: 0.9rem;
	}

	.rd-service-card__list {
		margin:
			0
			16px
			18px;

		font-size: 0.91rem;
	}

	.rd-service-card__button {
		min-height: 48px;

		padding:
			12px
			18px;
	}
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 390px) {

	.rd-service-card__intro {
		grid-template-columns:
			minmax(0, 1fr)
			115px;
	}

	.rd-service-card__visual img {
		max-width: 165px;
	}
}

/* =========================================================
   BENEFITS
   ========================================================= */

.rd-benefits {
	padding: 28px 0 30px;
	background: #ffffff;
	border-top: 1px solid #edf1eb;
	border-bottom: 1px solid #edf1eb;
}

.rd-benefits__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 24px;
	align-items: center;
}

.rd-benefit {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.rd-benefit__icon {
	flex: 0 0 auto;
	display: block;
	width: 54px;
	height: 54px;
	object-fit: contain;
}

.rd-benefit__content {
	min-width: 0;
}

.rd-benefit__content h3 {
	margin: 0 0 4px;
	color: var(--rd-text);
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1.25;
}

.rd-benefit__content p {
	margin: 0;
	color: var(--rd-text-muted);
	font-size: 0.78rem;
	line-height: 1.45;
}


/* =========================================================
   BENEFITS — TABLET
   ========================================================= */

@media (max-width: 1024px) {

	.rd-benefits__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 24px 20px;
	}

	.rd-benefit:nth-child(4),
	.rd-benefit:nth-child(5) {
		justify-self: center;
	}

	.rd-benefit__icon {
		width: 50px;
		height: 50px;
	}
}


/* =========================================================
   BENEFITS — MOBILE
   ========================================================= */

@media (max-width: 767px) {

	.rd-benefits {
		padding: 22px 0;
	}

	.rd-benefits__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 22px 14px;
	}

	.rd-benefit {
		align-items: flex-start;
		gap: 9px;
	}

	.rd-benefit:last-child {
		grid-column: 1 / -1;
		justify-self: center;
	}

	.rd-benefit__icon {
		width: 42px;
		height: 42px;
	}

	.rd-benefit__content h3 {
		font-size: 0.82rem;
	}

	.rd-benefit__content p {
		font-size: 0.72rem;
	}

	.rd-benefit__content p br {
		display: none;
	}
}

.rd-benefit:nth-child(4) {
	transform: translateX(-16px);
}


/* =========================================================
   BENEFITS — VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 390px) {

	.rd-benefits__grid {
		grid-template-columns: 1fr;
	}

	.rd-benefit,
	.rd-benefit:last-child {
		grid-column: auto;
		justify-self: stretch;
	}

	.rd-benefit__icon {
		width: 46px;
		height: 46px;
	}
}

/* =========================================================
   SECTION HEADING
   ========================================================= */

.rd-section-heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 24px;
	text-align: center;
}

.rd-section-heading h2 {
	margin: 0;
	color: var(--rd-green);
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.025em;
}

.rd-section-heading__line {
	display: block;
	width: 74px;
	height: 3px;
	margin-top: 9px;
	border-radius: 999px;
	background: var(--rd-green);
}


/* =========================================================
   OUR WORK
   ========================================================= */

.rd-works {
	padding: 42px 0 46px;
	background: #ffffff;
}

.rd-works__scroller {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 12px;
}

.rd-work-card {
	position: relative;
	overflow: hidden;
	margin: 0;
	aspect-ratio: 1.18 / 1;
	border-radius: 10px;
	background: #f4f7f3;
	box-shadow:
		0 4px 14px rgba(15, 64, 26, 0.06);
}

.rd-work-card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition:
		transform 0.35s ease;
}

.rd-work-card:hover img {
	transform: scale(1.04);
}

.rd-works__mobile-hint {
	display: none;
}


/* =========================================================
   OUR WORK — TABLET
   ========================================================= */

@media (max-width: 1024px) {

	.rd-works {
		padding: 36px 0 40px;
	}

	.rd-works__scroller {
		grid-template-columns:
			repeat(3, minmax(0, 1fr));

		gap: 14px;
	}

	.rd-section-heading h2 {
		font-size: 1.8rem;
	}
}


/* =========================================================
   OUR WORK — MOBILE
   ========================================================= */

@media (max-width: 767px) {

	.rd-works {
		padding: 30px 0 34px;
	}

	.rd-section-heading {
		margin-bottom: 18px;
	}

	.rd-section-heading h2 {
		font-size: 1.6rem;
	}

	.rd-section-heading__line {
		width: 58px;
	}

	.rd-works__scroller {
		display: flex;
		gap: 12px;

		overflow-x: auto;
		overflow-y: hidden;

		margin-inline:
			calc((100vw - 100%) / -2);

		padding-inline:
			max(
				16px,
				calc((100vw - var(--rd-container)) / 2)
			);

		padding-bottom: 8px;

		scroll-snap-type: x mandatory;
		scroll-padding-left: 16px;

		-webkit-overflow-scrolling: touch;

		scrollbar-width: none;
	}

	.rd-works__scroller::-webkit-scrollbar {
		display: none;
	}

	.rd-work-card {
		flex:
			0
			0
			min(66vw, 250px);

		aspect-ratio: 1.15 / 1;

		scroll-snap-align: start;
	}

	.rd-work-card:hover img {
		transform: none;
	}

	.rd-works__mobile-hint {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 6px;

		margin-top: 8px;
	}

	.rd-works__mobile-hint span {
		display: block;

		width: 6px;
		height: 6px;

		border-radius: 50%;

		background: #c8d7c5;
	}

	.rd-works__mobile-hint span:first-child {
		width: 8px;
		height: 8px;

		background: var(--rd-green);
	}
}


/* =========================================================
   OUR WORK — SMALL MOBILE
   ========================================================= */

@media (max-width: 390px) {

	.rd-work-card {
		flex-basis: 82vw;
	}
}

/* =========================================================
   REGION
   ========================================================= */

.rd-region {
	padding: 52px 0 50px;

	background:
		linear-gradient(
			180deg,
			#f2f8ef 0%,
			#edf7e9 100%
		);

	border-top: 1px solid #e2eee0;
	border-bottom: 1px solid #dce9d9;
}

.rd-region__heading {
	max-width: 700px;

	margin:
		0
		auto
		28px;

	text-align: center;
}

.rd-region__heading h2 {
	margin: 0;

	color: var(--rd-green);

	font-size: 2rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.025em;
}

.rd-region__line {
	display: block;

	width: 72px;
	height: 3px;

	margin:
		10px
		auto
		14px;

	border-radius: 999px;

	background: var(--rd-green);
}

.rd-region__heading p {
	margin: 0;

	color: var(--rd-text-muted);

	font-size: 1rem;
	line-height: 1.65;
}


/* =========================================================
   LOCATIONS
   ========================================================= */

.rd-region__locations {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;

	gap: 12px;

	max-width: 1000px;

	margin-inline: auto;
}

.rd-region__location {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	gap: 8px;

	min-height: 46px;

	padding:
		10px
		18px;

	background: #ffffff;

	border:
		1px
		solid
		#d8e7d5;

	border-radius: 999px;

	color: var(--rd-text);

	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.2;

	box-shadow:
		0 4px 12px rgba(11, 107, 43, 0.05);
}

.rd-region__location svg {
	flex: 0 0 auto;

	width: 19px;
	height: 19px;

	fill: none;

	stroke: var(--rd-green);
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}


/* =========================================================
   RADIUS
   ========================================================= */

.rd-region__radius {
	margin:
		24px
		0
		0;

	color: var(--rd-green-dark);

	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.4;

	text-align: center;
}


/* =========================================================
   REGION — TABLET
   ========================================================= */

@media (max-width: 1024px) {

	.rd-region {
		padding:
			44px
			0
			42px;
	}

	.rd-region__heading h2 {
		font-size: 1.8rem;
	}

	.rd-region__locations {
		max-width: 760px;
	}
}


/* =========================================================
   REGION — MOBILE
   ========================================================= */

@media (max-width: 767px) {

	.rd-region {
		padding:
			34px
			0
			34px;
	}

	.rd-region__heading {
		margin-bottom: 22px;
	}

	.rd-region__heading h2 {
		font-size: 1.55rem;
	}

	.rd-region__heading p {
		font-size: 0.9rem;
		line-height: 1.55;
	}

	.rd-region__line {
		width: 58px;

		margin-top: 8px;
		margin-bottom: 12px;
	}

	.rd-region__locations {
		gap: 9px;
	}

	.rd-region__location {
		min-height: 42px;

		padding:
			9px
			13px;

		font-size: 0.82rem;
	}

	.rd-region__location svg {
		width: 17px;
		height: 17px;
	}

	.rd-region__radius {
		margin-top: 20px;

		font-size: 0.82rem;
	}
}


/* =========================================================
   REGION — SMALL MOBILE
   ========================================================= */

@media (max-width: 390px) {

	.rd-region__locations {
		display: grid;
		grid-template-columns:
			repeat(2, minmax(0, 1fr));

		width: 100%;
	}

	.rd-region__location {
		width: 100%;

		padding-inline: 9px;

		font-size: 0.76rem;
	}

	.rd-region__location:nth-child(2) {
		font-size: 0.7rem;
	}
}