/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/* ===== Reza Growth Header ===== */

.rg-header {
	position: relative;
	z-index: 999;
	width: 100%;
	background: #FFFFFF;
	border-bottom: 1px solid #E7E9E8;
	box-shadow: 0 4px 18px rgba(17, 22, 22, 0.05);
}

.rg-header-inner {
	max-width: 1240px;
	min-height: 82px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.rg-brand {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	text-decoration: none;
}

.rg-brand-logo {
	display: block;
	width: 76px;
	height: 76px;
	object-fit: contain;
	object-position: center;
}

.rg-brand-name {
	display: none;
}

.rg-navigation {
	margin-left: auto;
}

.rg-menu {
	display: flex;
	align-items: center;
	gap: 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rg-menu li {
	position: relative;
	margin: 0;
}

.rg-menu a {
	display: block;
	padding: 29px 0;
	color: #343B3B;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.5;
	text-decoration: none;
	transition: color 0.2s ease;
}

.rg-menu a:hover,
.rg-menu .current-menu-item > a,
.rg-menu .current-menu-ancestor > a {
	color: #0B4A46;
}

.rg-menu > li > a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 21px;
	left: 0;
	height: 2px;
	border-radius: 5px;
	background: #D8B98A;
	transform: scaleX(0);
	transition: transform 0.2s ease;
}

.rg-menu > li:hover > a::after,
.rg-menu > .current-menu-item > a::after,
.rg-menu > .current-menu-ancestor > a::after {
	transform: scaleX(1);
}

.rg-menu .sub-menu {
	position: absolute;
	top: calc(100% - 8px);
	left: 50%;
	min-width: 270px;
	margin: 0;
	padding: 10px;
	list-style: none;
	background: #FFFFFF;
	border: 1px solid #E7E9E8;
	border-radius: 14px;
	box-shadow: 0 15px 40px rgba(17, 22, 22, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 10px);
	transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.rg-menu li:hover > .sub-menu,
.rg-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

.rg-menu .sub-menu a {
	padding: 11px 13px;
	border-radius: 9px;
	font-size: 14px;
	white-space: nowrap;
}

.rg-menu .sub-menu a:hover {
	background: #F6F7F6;
}

.rg-header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 19px;
	border-radius: 10px;
	background: #0B4A46;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 0 8px 20px rgba(11, 74, 70, 0.18);
	transition: transform 0.2s ease, background 0.2s ease;
}

.rg-header-cta:hover {
	background: #083D3A;
	color: #FFFFFF;
	transform: translateY(-1px);
}

.rg-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	border: 1px solid #E7E9E8;
	border-radius: 10px;
	background: #FFFFFF;
	cursor: pointer;
}

.rg-menu-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	margin: 5px 0;
	border-radius: 4px;
	background: #111616;
	transition: 0.2s ease;
}

@media (max-width: 1050px) {
	.rg-header-cta {
		display: none;
	}

	.rg-menu-toggle {
		display: block;
		margin-left: auto;
	}

	.rg-header-inner {
		position: relative;
		min-height: 72px;
	}

	.rg-brand-logo {
		width: 66px;
		height: 66px;
	}

	.rg-navigation {
		position: absolute;
		top: 100%;
		right: 16px;
		left: 16px;
		display: none;
		margin: 0;
		padding: 12px;
		background: #FFFFFF;
		border: 1px solid #E7E9E8;
		border-radius: 14px;
		box-shadow: 0 18px 40px rgba(17, 22, 22, 0.14);
	}

	.rg-navigation.is-open {
		display: block;
	}

	.rg-menu {
		display: block;
	}

	.rg-menu li {
		width: 100%;
	}

	.rg-menu a {
		padding: 12px 13px;
		border-radius: 9px;
	}

	.rg-menu a:hover {
		background: #F6F7F6;
	}

	.rg-menu > li > a::after {
		display: none;
	}

	.rg-menu .sub-menu {
		position: static;
		min-width: 0;
		margin: 4px 0 5px 14px;
		padding: 3px 0 3px 10px;
		border: 0;
		border-left: 2px solid #D8B98A;
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.rg-menu .sub-menu a {
		white-space: normal;
	}

	body.rg-menu-open {
		overflow: hidden;
	}
}

@media (max-width: 480px) {
	.rg-header-inner {
		min-height: 66px;
		padding: 0 16px;
	}

	.rg-brand-logo {
		width: 58px;
		height: 58px;
	}

	.rg-navigation {
		right: 10px;
		left: 10px;
	}
}


/* ===== Reza Growth Footer ===== */

.rg-footer {
	margin-top: 0;
	background: #111616;
	color: #FFFFFF;
}

.rg-footer-main {
	max-width: 1240px;
	margin: 0 auto;
	padding: 72px 24px 58px;
	display: grid;
	grid-template-columns: 1.35fr 0.8fr 1.15fr 1.2fr;
	gap: 54px;
}

.rg-footer-brand,
.rg-footer-column,
.rg-footer-action {
	min-width: 0;
}

.rg-footer-logo-link {
	display: inline-block;
	margin-bottom: 18px;
	text-decoration: none;
}

.rg-footer-logo {
	display: block;
	width: 92px;
	height: 92px;
	padding: 8px;
	object-fit: contain;
	background: #FFFFFF;
	border-radius: 16px;
}

.rg-footer-description {
	max-width: 340px;
	margin: 0 0 22px;
	color: #C6CCCC;
	font-size: 15px;
	line-height: 1.8;
}

.rg-footer-email {
	display: inline-block;
	color: #D8B98A;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: color 0.2s ease;
}

.rg-footer-email:hover {
	color: #FFFFFF;
}

.rg-footer-title {
	margin: 4px 0 22px;
	color: #FFFFFF;
	font-size: 17px;
	font-weight: 750;
	line-height: 1.4;
}

.rg-footer-links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.rg-footer-links li {
	margin: 0 0 12px;
}

.rg-footer-links a {
	color: #C6CCCC;
	font-size: 14px;
	line-height: 1.6;
	text-decoration: none;
	transition: color 0.2s ease, padding-left 0.2s ease;
}

.rg-footer-links a:hover {
	padding-left: 4px;
	color: #D8B98A;
}

.rg-footer-action p {
	margin: 0 0 22px;
	color: #C6CCCC;
	font-size: 14px;
	line-height: 1.8;
}

.rg-footer-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 18px;
	border-radius: 10px;
	background: #0B4A46;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
	transition: background 0.2s ease, transform 0.2s ease;
}

.rg-footer-cta:hover {
	background: #0E5A55;
	color: #FFFFFF;
	transform: translateY(-1px);
}

.rg-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 20px 24px;
	text-align: center;
}

.rg-footer-bottom p {
	margin: 0;
	color: #969F9E;
	font-size: 13px;
	line-height: 1.6;
}

@media (max-width: 1050px) {
	.rg-footer-main {
		grid-template-columns: 1.2fr 0.8fr 1fr;
		gap: 42px;
	}

	.rg-footer-action {
		grid-column: 1 / -1;
		padding-top: 8px;
	}
}

@media (max-width: 760px) {
	.rg-footer-main {
		padding-top: 54px;
		padding-bottom: 44px;
		grid-template-columns: 1fr 1fr;
		gap: 38px 28px;
	}

	.rg-footer-brand,
	.rg-footer-action {
		grid-column: 1 / -1;
	}

	.rg-footer-description {
		max-width: 100%;
	}
}

@media (max-width: 480px) {
	.rg-footer-main {
		padding: 46px 18px 38px;
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.rg-footer-brand,
	.rg-footer-action {
		grid-column: auto;
	}

	.rg-footer-logo {
		width: 82px;
		height: 82px;
	}

	.rg-footer-title {
		margin-bottom: 16px;
	}

	.rg-footer-cta {
		width: 100%;
	}

	.rg-footer-bottom {
		padding: 18px;
	}
}



/* =========================================================
   REZA GROWTH — GLOBAL DESIGN SYSTEM + HOME PAGE
   ========================================================= */

/* ---------- Global Reset ---------- */

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: #FFFFFF;
	color: #343B3B;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.7;
	overflow-x: hidden;
}

body,
button,
input,
textarea,
select {
	font-family: Arial, Helvetica, sans-serif;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: #0B4A46;
}

a:hover {
	color: #111616;
}

::selection {
	background: #D8B98A;
	color: #111616;
}


/* ---------- Shared Layout ---------- */

.rg-page {
	width: 100%;
	overflow: hidden;
}

.rg-container {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding-right: 24px;
	padding-left: 24px;
}

.rg-container-small {
	width: 100%;
	max-width: 880px;
	margin: 0 auto;
	padding-right: 24px;
	padding-left: 24px;
}

.rg-section {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
}

.rg-section-small {
	padding-top: 72px;
	padding-bottom: 72px;
}

.rg-section-white {
	background: #FFFFFF;
}

.rg-section-light {
	background: #F6F7F6;
}

.rg-section-dark {
	background: #111616;
	color: #FFFFFF;
}

.rg-section-green {
	background: #0B4A46;
	color: #FFFFFF;
}


/* ---------- Shared Typography ---------- */

.rg-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	color: #0B4A46;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.4;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}

.rg-eyebrow::before {
	content: "";
	display: block;
	width: 28px;
	height: 2px;
	background: #D8B98A;
	border-radius: 10px;
}

.rg-section-dark .rg-eyebrow,
.rg-section-green .rg-eyebrow {
	color: #D8B98A;
}

.rg-heading-xl {
	max-width: 900px;
	margin: 0;
	color: #111616;
	font-size: clamp(46px, 6vw, 76px);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -2.5px;
}

.rg-heading-lg {
	max-width: 820px;
	margin: 0;
	color: #0B4A46;
	font-size: clamp(36px, 4.5vw, 56px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -1.7px;
}

.rg-heading-md {
	margin: 0;
	color: #0B4A46;
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -1px;
}

.rg-heading-sm {
	margin: 0;
	color: #0B4A46;
	font-size: 23px;
	font-weight: 800;
	line-height: 1.3;
}

.rg-section-dark .rg-heading-lg,
.rg-section-dark .rg-heading-md,
.rg-section-dark .rg-heading-sm,
.rg-section-green .rg-heading-lg,
.rg-section-green .rg-heading-md,
.rg-section-green .rg-heading-sm {
	color: #FFFFFF;
}

.rg-lead {
	max-width: 730px;
	margin: 24px 0 0;
	color: #495151;
	font-size: 20px;
	line-height: 1.75;
}

.rg-text {
	margin: 20px 0 0;
	color: #586160;
	font-size: 16px;
	line-height: 1.85;
}

.rg-section-dark .rg-lead,
.rg-section-dark .rg-text,
.rg-section-green .rg-lead,
.rg-section-green .rg-text {
	color: rgba(255, 255, 255, 0.78);
}

.rg-section-header {
	max-width: 790px;
	margin-bottom: 52px;
}

.rg-section-header-center {
	max-width: 790px;
	margin: 0 auto 52px;
	text-align: center;
}

.rg-section-header-center .rg-eyebrow {
	justify-content: center;
}

.rg-section-header-center .rg-lead {
	margin-right: auto;
	margin-left: auto;
}


/* ---------- Shared Buttons ---------- */

.rg-button-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin-top: 32px;
}

.rg-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 14px 23px;
	border: 1px solid transparent;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.3;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition:
		transform 0.2s ease,
		background 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease,
		box-shadow 0.2s ease;
}

.rg-button:hover {
	transform: translateY(-2px);
	text-decoration: none;
}

.rg-button-primary {
	background: #0B4A46;
	color: #FFFFFF;
	box-shadow: 0 12px 30px rgba(11, 74, 70, 0.18);
}

.rg-button-primary:hover {
	background: #083D3A;
	color: #FFFFFF;
	box-shadow: 0 16px 34px rgba(11, 74, 70, 0.24);
}

.rg-button-secondary {
	border-color: #D7DCDA;
	background: #FFFFFF;
	color: #111616;
}

.rg-button-secondary:hover {
	border-color: #0B4A46;
	background: #F6F7F6;
	color: #0B4A46;
}

.rg-button-gold {
	background: #D8B98A;
	color: #111616;
}

.rg-button-gold:hover {
	background: #E4C99F;
	color: #111616;
}

.rg-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #0B4A46;
	font-size: 15px;
	font-weight: 800;
	text-decoration: none;
}

.rg-text-link::after {
	content: "→";
	transition: transform 0.2s ease;
}

.rg-text-link:hover::after {
	transform: translateX(4px);
}


/* ---------- Shared Cards ---------- */

.rg-card {
	height: 100%;
	padding: 32px;
	border: 1px solid #E7E9E8;
	border-radius: 18px;
	background: #FFFFFF;
	box-shadow: 0 12px 34px rgba(17, 22, 22, 0.05);
	transition:
		transform 0.25s ease,
		border-color 0.25s ease,
		box-shadow 0.25s ease;
}

.rg-card:hover {
	transform: translateY(-5px);
	border-color: rgba(11, 74, 70, 0.28);
	box-shadow: 0 20px 48px rgba(17, 22, 22, 0.09);
}

.rg-card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-bottom: 24px;
	border-radius: 14px;
	background: #EDF4F3;
	color: #0B4A46;
	font-size: 20px;
	font-weight: 800;
}

.rg-card-title {
	margin: 0 0 14px;
	color: #0B4A46;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.3;
}

.rg-card-text {
	margin: 0 0 24px;
	color: #5E6665;
	font-size: 15px;
	line-height: 1.8;
}

.rg-grid-2 {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.rg-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.rg-grid-4 {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}


/* ---------- Image Placeholders ---------- */

.rg-image-placeholder {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 460px;
	padding: 32px;
	overflow: hidden;
	border: 1px dashed rgba(11, 74, 70, 0.38);
	border-radius: 24px;
	background:
		linear-gradient(
			135deg,
			#F6F7F6 0%,
			#EDF2F1 100%
		);
	color: #0B4A46;
	text-align: center;
}

.rg-image-placeholder-inner {
	max-width: 330px;
}

.rg-image-placeholder-label {
	display: block;
	margin-bottom: 10px;
	color: #0B4A46;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.rg-image-placeholder-text {
	margin: 0;
	color: #66706F;
	font-size: 15px;
	line-height: 1.7;
}


/* =========================================================
   HOME PAGE
   ========================================================= */

/* ---------- Remove Default Page Title ---------- */

.home .page-header,
.home .entry-title {
	display: none;
}

.home .site-main,
.home .page-content,
.home .entry-content {
	margin: 0;
	padding: 0;
}


/* ---------- Hero ---------- */

.rg-home-hero {
	position: relative;
	padding-top: 92px;
	padding-bottom: 84px;
	background:
		radial-gradient(
			circle at 88% 18%,
			rgba(216, 185, 138, 0.18),
			transparent 31%
		),
		linear-gradient(
			180deg,
			#FFFFFF 0%,
			#F8FAF9 100%
		);
}

.rg-home-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
	align-items: center;
	gap: 70px;
}

.rg-home-hero-content {
	position: relative;
	z-index: 2;
}

.rg-home-hero .rg-heading-xl {
	max-width: 760px;
}

.rg-home-hero-highlight {
	color: #0B4A46;
}

.rg-home-hero-description {
	max-width: 680px;
	margin: 26px 0 0;
	color: #4E5756;
	font-size: 20px;
	line-height: 1.75;
}

.rg-home-hero-points {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
}

.rg-home-hero-points li {
	position: relative;
	padding-left: 22px;
	color: #3F4847;
	font-size: 14px;
	font-weight: 700;
}

.rg-home-hero-points li::before {
	content: "";
	position: absolute;
	top: 9px;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #D8B98A;
}

.rg-home-hero-visual {
	position: relative;
}

.rg-home-hero-image {
	min-height: 560px;
	border-radius: 28px;
}

.rg-home-founder-badge {
	position: absolute;
	right: -16px;
	bottom: 28px;
	max-width: 245px;
	padding: 18px 20px;
	border: 1px solid #E7E9E8;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 18px 42px rgba(17, 22, 22, 0.14);
}

.rg-home-founder-badge strong {
	display: block;
	margin-bottom: 4px;
	color: #111616;
	font-size: 16px;
	line-height: 1.4;
}

.rg-home-founder-badge span {
	color: #65706F;
	font-size: 13px;
	line-height: 1.5;
}


/* ---------- Trust Bar ---------- */

.rg-home-trust {
	border-top: 1px solid #E7E9E8;
	border-bottom: 1px solid #E7E9E8;
	background: #FFFFFF;
}

.rg-home-trust-grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	align-items: center;
}

.rg-home-trust-intro,
.rg-home-trust-item {
	min-height: 124px;
	padding: 27px 30px;
}

.rg-home-trust-item {
	border-left: 1px solid #E7E9E8;
}

.rg-home-trust-intro span {
	display: block;
	color: #0B4A46;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1.1px;
	text-transform: uppercase;
}

.rg-home-trust-intro p {
	margin: 7px 0 0;
	color: #596160;
	font-size: 15px;
	line-height: 1.6;
}

.rg-home-trust-number {
	display: block;
	margin-bottom: 4px;
	color: #111616;
	font-size: 27px;
	font-weight: 850;
	line-height: 1.2;
}

.rg-home-trust-label {
	display: block;
	color: #67706F;
	font-size: 13px;
	line-height: 1.5;
}


/* ---------- Problem Section ---------- */

.rg-home-problem-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	align-items: start;
	gap: 72px;
}

.rg-home-problem-list {
	display: grid;
	gap: 16px;
}

.rg-home-problem-item {
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: 18px;
	padding: 23px;
	border: 1px solid #E7E9E8;
	border-radius: 16px;
	background: #FFFFFF;
}

.rg-home-problem-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: #0B4A46;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 800;
}

.rg-home-problem-item h3 {
	margin: 0 0 7px;
	color: #0B4A46;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.4;
}

.rg-home-problem-item p {
	margin: 0;
	color: #626A69;
	font-size: 14px;
	line-height: 1.7;
}


/* ---------- Growth System ---------- */

.rg-home-system {
	background: #111616;
}

.rg-home-system-steps {
	position: relative;
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 16px;
	margin-top: 52px;
}

.rg-home-system-step {
	position: relative;
	padding: 28px 22px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.045);
}

.rg-home-system-step-number {
	display: block;
	margin-bottom: 19px;
	color: #D8B98A;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1px;
}

.rg-home-system-step h3 {
	margin: 0 0 10px;
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.4;
}

.rg-home-system-step p {
	margin: 0;
	color: rgba(255, 255, 255, 0.66);
	font-size: 14px;
	line-height: 1.7;
}


/* ---------- Services ---------- */

.rg-home-services-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 24px;
}

.rg-home-service-card {
	grid-column: span 2;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 31px;
	border: 1px solid #E7E9E8;
	border-radius: 19px;
	background: #FFFFFF;
	box-shadow: 0 12px 34px rgba(17, 22, 22, 0.045);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}

.rg-home-service-card:nth-child(4),
.rg-home-service-card:nth-child(5) {
	grid-column: span 3;
}

.rg-home-service-card:hover {
	transform: translateY(-5px);
	border-color: rgba(11, 74, 70, 0.3);
	box-shadow: 0 20px 48px rgba(17, 22, 22, 0.09);
}

.rg-home-service-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	margin-bottom: 23px;
	border-radius: 12px;
	background: #EDF4F3;
	color: #0B4A46;
	font-size: 14px;
	font-weight: 850;
}

.rg-home-service-card h3 {
	margin: 0 0 12px;
	color: #0B4A46;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.35;
}

.rg-home-service-card p {
	flex-grow: 1;
	margin: 0 0 25px;
	color: #626A69;
	font-size: 15px;
	line-height: 1.8;
}


/* ---------- Why Reza Growth ---------- */

.rg-home-why-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	align-items: center;
	gap: 72px;
}

.rg-home-why-items {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 35px;
}

.rg-home-why-item {
	padding: 23px;
	border: 1px solid #E7E9E8;
	border-radius: 15px;
	background: #FFFFFF;
}

.rg-home-why-item strong {
	display: block;
	margin-bottom: 7px;
	color: #0B4A46;
	font-size: 17px;
	line-height: 1.4;
}

.rg-home-why-item p {
	margin: 0;
	color: #636C6B;
	font-size: 14px;
	line-height: 1.7;
}


/* ---------- Process ---------- */

.rg-home-process-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	counter-reset: rg-process;
}

.rg-home-process-item {
	position: relative;
	padding: 31px 27px;
	border-top: 3px solid #D8B98A;
	border-radius: 0 0 16px 16px;
	background: #FFFFFF;
	box-shadow: 0 12px 35px rgba(17, 22, 22, 0.05);
	counter-increment: rg-process;
}

.rg-home-process-item::before {
	content: "0" counter(rg-process);
	display: block;
	margin-bottom: 22px;
	color: #D8B98A;
	font-size: 14px;
	font-weight: 850;
	letter-spacing: 1px;
}

.rg-home-process-item h3 {
	margin: 0 0 10px;
	color: #0B4A46;
	font-size: 19px;
	font-weight: 800;
	line-height: 1.4;
}

.rg-home-process-item p {
	margin: 0;
	color: #636B6A;
	font-size: 14px;
	line-height: 1.75;
}


/* ---------- Founder Section ---------- */

.rg-home-founder-grid {
	display: grid;
	grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
	align-items: center;
	gap: 72px;
}

.rg-home-founder-image {
	min-height: 520px;
}

.rg-home-founder-note {
	margin-top: 27px;
	padding: 19px 21px;
	border-left: 3px solid #D8B98A;
	background: #F6F7F6;
	color: #485150;
	font-size: 15px;
	line-height: 1.75;
}


/* ---------- Articles ---------- */

.rg-home-articles-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 27px;
}

.rg-home-article-card {
	overflow: hidden;
	border: 1px solid #E7E9E8;
	border-radius: 18px;
	background: #FFFFFF;
	box-shadow: 0 12px 34px rgba(17, 22, 22, 0.05);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.rg-home-article-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 45px rgba(17, 22, 22, 0.09);
}

.rg-home-article-image {
	min-height: 220px;
	border: 0;
	border-radius: 0;
}

.rg-home-article-content {
	padding: 27px;
}

.rg-home-article-category {
	display: block;
	margin-bottom: 10px;
	color: #0B4A46;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.rg-home-article-content h3 {
	margin: 0 0 12px;
	color: #111616;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.4;
}

.rg-home-article-content p {
	margin: 0 0 20px;
	color: #646D6C;
	font-size: 14px;
	line-height: 1.75;
}


/* ---------- Final CTA ---------- */

.rg-home-final-cta {
	position: relative;
	padding-top: 94px;
	padding-bottom: 94px;
	overflow: hidden;
	background: #0B4A46;
	color: #FFFFFF;
}

.rg-home-final-cta::before {
	content: "";
	position: absolute;
	top: -190px;
	right: -140px;
	width: 430px;
	height: 430px;
	border-radius: 50%;
	background: rgba(216, 185, 138, 0.12);
}

.rg-home-final-cta-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) auto;
	align-items: center;
	gap: 50px;
}

.rg-home-final-cta h2 {
	max-width: 760px;
	margin: 0;
	color: #FFFFFF;
	font-size: clamp(36px, 4.4vw, 56px);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -1.4px;
}

.rg-home-final-cta p {
	max-width: 700px;
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 18px;
	line-height: 1.75;
}

.rg-home-final-cta-actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	min-width: 275px;
}

.rg-home-final-cta .rg-button {
	width: 100%;
}


/* ---------- Accessibility ---------- */

.rg-button:focus-visible,
.rg-text-link:focus-visible,
.rg-home-service-card a:focus-visible {
	outline: 3px solid rgba(216, 185, 138, 0.7);
	outline-offset: 4px;
}


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

@media (max-width: 1050px) {

	.rg-section {
		padding-top: 84px;
		padding-bottom: 84px;
	}

	.rg-home-hero-grid {
		grid-template-columns: 1fr 0.85fr;
		gap: 42px;
	}

	.rg-home-hero-image {
		min-height: 490px;
	}

	.rg-home-trust-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.rg-home-trust-intro {
		grid-column: 1 / -1;
		border-bottom: 1px solid #E7E9E8;
	}

	.rg-home-trust-item:nth-child(3) {
		border-left: 0;
	}

	.rg-home-problem-grid,
	.rg-home-why-grid,
	.rg-home-founder-grid {
		gap: 45px;
	}

	.rg-home-system-steps {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.rg-home-services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rg-home-service-card,
	.rg-home-service-card:nth-child(4),
	.rg-home-service-card:nth-child(5) {
		grid-column: auto;
	}

	.rg-home-service-card:last-child {
		grid-column: 1 / -1;
	}

	.rg-home-process-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rg-home-final-cta-inner {
		grid-template-columns: 1fr;
	}

	.rg-home-final-cta-actions {
		min-width: 0;
		max-width: 330px;
	}
}


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

@media (max-width: 760px) {

	body {
		font-size: 15px;
	}

	.rg-container,
	.rg-container-small {
		padding-right: 18px;
		padding-left: 18px;
	}

	.rg-section {
		padding-top: 68px;
		padding-bottom: 68px;
	}

	.rg-section-small {
		padding-top: 54px;
		padding-bottom: 54px;
	}

	.rg-heading-xl {
		font-size: clamp(39px, 12vw, 54px);
		letter-spacing: -1.8px;
	}

	.rg-heading-lg {
		font-size: clamp(32px, 9vw, 43px);
		letter-spacing: -1.2px;
	}

	.rg-heading-md {
		font-size: 30px;
	}

	.rg-lead,
	.rg-home-hero-description {
		font-size: 17px;
	}

	.rg-section-header,
	.rg-section-header-center {
		margin-bottom: 38px;
	}

	.rg-grid-2,
	.rg-grid-3,
	.rg-grid-4 {
		grid-template-columns: 1fr;
	}

	.rg-card {
		padding: 26px;
	}

	.rg-home-hero {
		padding-top: 62px;
		padding-bottom: 58px;
	}

	.rg-home-hero-grid {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.rg-home-hero-visual {
		max-width: 540px;
		margin: 0 auto;
	}

	.rg-home-hero-image {
		min-height: 470px;
	}

	.rg-home-founder-badge {
		right: 12px;
		bottom: 14px;
		left: 12px;
		max-width: none;
	}

	.rg-home-trust-grid {
		grid-template-columns: 1fr;
	}

	.rg-home-trust-intro,
	.rg-home-trust-item {
		min-height: auto;
		padding: 24px 18px;
	}

	.rg-home-trust-item {
		border-top: 1px solid #E7E9E8;
		border-left: 0;
	}

	.rg-home-problem-grid,
	.rg-home-why-grid,
	.rg-home-founder-grid {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.rg-home-problem-list {
		gap: 13px;
	}

	.rg-home-problem-item {
		grid-template-columns: 40px 1fr;
		padding: 19px;
	}

	.rg-home-problem-number {
		width: 40px;
		height: 40px;
	}

	.rg-home-system-steps {
		grid-template-columns: 1fr;
		gap: 13px;
		margin-top: 38px;
	}

	.rg-home-services-grid {
		grid-template-columns: 1fr;
	}

	.rg-home-service-card,
	.rg-home-service-card:last-child {
		grid-column: auto;
		padding: 26px;
	}

	.rg-home-why-items {
		grid-template-columns: 1fr;
	}

	.rg-home-process-grid {
		grid-template-columns: 1fr;
	}

	.rg-home-founder-grid {
		grid-template-columns: 1fr;
	}

	.rg-home-founder-image {
		min-height: 470px;
	}

	.rg-home-articles-grid {
		grid-template-columns: 1fr;
	}

	.rg-home-final-cta {
		padding-top: 72px;
		padding-bottom: 72px;
	}

	.rg-home-final-cta h2 {
		font-size: 37px;
	}

	.rg-home-final-cta p {
		font-size: 16px;
	}

	.rg-home-final-cta-actions {
		max-width: none;
	}

	.rg-button-row {
		align-items: stretch;
	}

	.rg-button-row .rg-button {
		width: 100%;
	}
}


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

@media (max-width: 420px) {

	.rg-heading-xl {
		font-size: 38px;
	}

	.rg-heading-lg {
		font-size: 32px;
	}

	.rg-home-hero-image,
	.rg-home-founder-image {
		min-height: 410px;
	}

	.rg-image-placeholder {
		min-height: 380px;
	}

	.rg-home-final-cta h2 {
		font-size: 32px;
	}
}

/* Reza Growth — Inline Internal Links */

.rg-text-link {
	color: #0B4A46;
	font-weight: 800;
	text-decoration: underline;
	text-decoration-color: #D8B98A;
	text-decoration-thickness: 2px;
	text-underline-offset: 5px;
}

.rg-text-link:hover {
	color: #111616;
	text-decoration-color: #0B4A46;
}

.rg-section-dark .rg-text-link,
.rg-section-green .rg-text-link {
	color: #D8B98A;
	text-decoration-color: rgba(255, 255, 255, 0.65);
}

.rg-section-dark .rg-text-link:hover,
.rg-section-green .rg-text-link:hover {
	color: #FFFFFF;
	text-decoration-color: #D8B98A;
}

/* =========================================================
   REZA GROWTH — GLOBAL FAQ ACCORDION
   ========================================================= */

.rg-faq-list {
	width: 100%;
	max-width: 880px;
	margin: 0 auto;
	display: grid;
	gap: 14px;
}

.rg-faq-item {
	overflow: hidden;
	border: 1px solid #E2E7E5;
	border-radius: 16px;
	background: #FFFFFF;
	box-shadow: 0 8px 24px rgba(17, 22, 22, 0.045);
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease;
}

.rg-faq-item:hover {
	border-color: rgba(11, 74, 70, 0.22);
	box-shadow: 0 12px 30px rgba(17, 22, 22, 0.07);
}

.rg-faq-item[open] {
	border-color: rgba(11, 74, 70, 0.3);
	box-shadow: 0 16px 36px rgba(17, 22, 22, 0.08);
	transform: translateY(-1px);
}

.rg-faq-item summary {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	min-height: 74px;
	padding: 20px 72px 20px 24px;
	color: #0B4A46;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.5;
	list-style: none;
	cursor: pointer;
	user-select: none;
}

.rg-faq-item summary::-webkit-details-marker {
	display: none;
}

.rg-faq-item summary::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #EDF4F3;
	color: #0B4A46;
	font-size: 23px;
	font-weight: 500;
	line-height: 1;
	transform: translateY(-50%);
	transition:
		background 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease;
}

.rg-faq-item[open] summary::after {
	content: "−";
	background: #D8B98A;
	color: #111616;
}

.rg-faq-item summary:hover::after {
	background: #0B4A46;
	color: #FFFFFF;
}

.rg-faq-item[open] summary {
	color: #111616;
}

.rg-faq-answer {
	margin: 0 24px;
	padding: 20px 0 23px;
	border-top: 1px solid #E7E9E8;
}

.rg-faq-answer p {
	max-width: 760px;
	margin: 0;
	color: #586160;
	font-size: 15px;
	line-height: 1.8;
}

.rg-faq-item summary:focus-visible {
	outline: 3px solid rgba(216, 185, 138, 0.65);
	outline-offset: -3px;
	border-radius: 14px;
}

/* Tablet */

@media (max-width: 760px) {

	.rg-faq-list {
		gap: 12px;
	}

	.rg-faq-item summary {
		min-height: 68px;
		padding: 18px 62px 18px 19px;
		font-size: 16px;
	}

	.rg-faq-item summary::after {
		right: 17px;
		width: 32px;
		height: 32px;
		font-size: 21px;
	}

	.rg-faq-answer {
		margin: 0 19px;
		padding: 17px 0 20px;
	}

	.rg-faq-answer p {
		font-size: 14px;
		line-height: 1.75;
	}
}

/* Small Mobile */

@media (max-width: 420px) {

	.rg-faq-item {
		border-radius: 14px;
	}

	.rg-faq-item summary {
		min-height: 64px;
		padding: 16px 56px 16px 16px;
		font-size: 15px;
		line-height: 1.45;
	}

	.rg-faq-item summary::after {
		right: 14px;
		width: 30px;
		height: 30px;
		font-size: 20px;
	}

	.rg-faq-answer {
		margin: 0 16px;
		padding: 15px 0 18px;
	}
}