.clone-home {
	--color-dark-green: #1e3c28;
	--color-green: #004d33;
	--color-green-light: #4a7c3f;
	--color-gold: #c9a84c;
	--color-white: #ffffff;
	--color-off-white: #f7f6f1;
	--color-text-dark: #1a1a1a;
	--color-text-medium: #333333;
	--color-text-body: #555555;
	--color-text-light: #777777;
	--color-border: #e2dfd8;
	--color-star: #f4b942;

	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 12px;

	--shadow-card: 0 2px 12px rgba(0, 0, 0, 0.07);
	--shadow-card-hover: 0 6px 24px rgba(0, 0, 0, 0.12);

	--transition: 0.2s ease;
	margin: 0;
	font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
	color: var(--color-text-body);
	background: var(--color-white);
	line-height: 1.6;
}

.clone-home *,
.clone-home *::before,
.clone-home *::after {
	box-sizing: border-box;
}

.clone-home img {
	max-width: 100%;
	display: block;
}

.clone-home a {
	text-decoration: none;
	color: inherit;
}

.clone-home ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.clone-home .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.clone-home .section-heading {
	font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
	font-size: 36px;
	font-weight: 700;
	color: #004d33;
	line-height: 1.2;
}

.clone-home .section-subtext {
	font-size: 16px;
	color: var(--color-text-body);
	max-width: 680px;
	line-height: 1.7;
}

.clone-home .section-header {
	text-align: center;
	margin-bottom: 48px;
}

.clone-home .section-header .section-heading {
	margin-bottom: 16px;
}

.clone-home .section-header .section-subtext {
	margin: 0 auto;
}

.clone-home .text-gold {
	color: var(--color-gold);
}

.clone-home .btn {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.3px;
	padding: 12px 28px;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
	border: 2px solid transparent;
	white-space: nowrap;
}

.clone-home .btn-hero {
	background: var(--color-dark-green);
	color: var(--color-white);
	border-color: var(--color-dark-green);
	padding: 14px 32px;
	font-size: 15px;
}

.clone-home .btn-hero:hover {
	background: #162e1e;
	border-color: #162e1e;
}

.clone-home .btn-cta {
	border-color: var(--color-gold);
	color: var(--color-gold);
	background: transparent;
	padding: 13px 32px;
	font-size: 14px;
}

.clone-home .btn-cta:hover {
	background: var(--color-gold);
	color: var(--color-dark-green);
}

.clone-home .hero {
	position: relative;
	background: #0d1f10;
	padding: 0;
	min-height: 0;
	display: block;
	align-items: initial;
	overflow: hidden;
}

.clone-home .hero-video {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
	z-index: 0;
	opacity: 1;
}

.clone-home .hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.clone-home .hero-container {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: flex-start;
	padding-top: 80px;
	padding-bottom: 48px;
}

.clone-home .hero-content {
	max-width: 600px;
}

.clone-home .hero-heading {
	font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
	font-size: 64px;
	font-weight: 700;
	color: var(--color-white);
	line-height: 1.1;
	margin-bottom: 24px;
}

.clone-home .hero-accent {
	color: var(--color-gold);
}

.clone-home .typewriter-line {
	display: inline-flex;
	align-items: baseline;
	white-space: nowrap;
	max-width: 100%;
}

.clone-home .typewriter-text,
.clone-home .typewriter-cursor {
	white-space: nowrap;
	font-size: clamp(2.1rem, 4.5vw, 4.8rem);
	line-height: 1;
}

.clone-home .typewriter-cursor {
	display: inline-block;
	font-weight: 300;
	animation: clone-cursor-blink 0.75s step-end infinite;
}

@keyframes clone-cursor-blink {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}
}

.clone-home .hero-body {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.75;
	max-width: 520px;
	margin-bottom: 36px;
}

.clone-home .why-partner {
	padding: 96px 0;
	background: var(--color-white);
}

.clone-home .why-partner-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.clone-home .why-partner-content .section-heading {
	margin-bottom: 20px;
}

.clone-home .why-intro {
	font-size: 17px;
	font-weight: 500;
	color: var(--color-text-medium);
	margin-bottom: 16px;
	line-height: 1.7;
}

.clone-home .why-body {
	font-size: 16px;
	color: var(--color-text-body);
	line-height: 1.75;
	margin-bottom: 40px;
}

.clone-home .stats-row {
	display: flex;
	align-items: stretch;
	gap: 0;
	border-top: 1px solid var(--color-border);
	padding-top: 32px;
}

.clone-home .stat-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 0 16px;
}

.clone-home .stat-item:first-child {
	padding-left: 0;
}

.clone-home .stat-divider {
	width: 1px;
	background: var(--color-border);
	align-self: stretch;
}

.clone-home .stat-number {
	font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
	font-size: 26px;
	font-weight: 700;
	color: var(--color-gold);
	line-height: 1;
}

.clone-home .stat-number--small {
	font-size: 18px;
}

.clone-home .stat-label {
	font-size: 12px;
	font-weight: 500;
	color: var(--color-text-light);
	text-transform: capitalize;
	letter-spacing: 0.5px;
	line-height: 1.3;
}

.clone-home .why-partner-image-wrap {
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.clone-home .why-partner-image-mobile {
	display: none;
}

.clone-home .why-partner-image {
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
	border-radius: var(--radius-lg);
	display: block;
}

.clone-home .features {
	padding: 80px 0;
	background: var(--color-off-white);
}

.clone-home .features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.clone-home .feature-card {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: 32px 24px;
	transition: box-shadow var(--transition), transform var(--transition);
}

.clone-home .feature-card:hover {
	box-shadow: var(--shadow-card-hover);
	transform: translateY(-2px);
}

.clone-home .feature-icon {
	margin-bottom: 20px;
}

.clone-home .feature-icon i {
	font-size: 34px;
	line-height: 1;
	color: var(--color-gold);
}

.clone-home .feature-title {
	font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: #004d33;
	margin-bottom: 12px;
	line-height: 1.3;
}

.clone-home .feature-body {
	font-size: 14px;
	color: var(--color-text-body);
	line-height: 1.7;
}

.clone-home .solutions {
	padding: 96px 0;
	background: var(--color-white);
}

.clone-home .solutions-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

.clone-home .solution-card {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: 28px 20px 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition: box-shadow var(--transition), transform var(--transition);
}

.clone-home .solution-card:hover {
	box-shadow: var(--shadow-card-hover);
	transform: translateY(-3px);
}

.clone-home .solution-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background: rgba(201, 163, 75, 0.1);
	border-radius: var(--radius-md);
	margin-bottom: 4px;
}

.clone-home .solution-icon i {
	font-size: 28px;
	line-height: 1;
	color: var(--color-gold);
}

.clone-home .solution-title {
	font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #004d33;
	line-height: 1.3;
}

.clone-home .solution-body {
	font-size: 13px;
	color: var(--color-text-body);
	line-height: 1.7;
	flex: 1;
}

.clone-home .learn-more {
	font-size: 13px;
	font-weight: 600;
	color: var(--color-green);
	display: inline-flex;
	align-items: center;
	gap: 4px;
	transition: gap var(--transition), color var(--transition);
	margin-top: 4px;
}

.clone-home .learn-more:hover {
	color: var(--color-green-light);
	gap: 8px;
}

.clone-home .testimonials {
	padding: 96px 0;
	background: var(--color-off-white);
}

.clone-home .testimonials .section-heading {
	text-align: center;
	margin-bottom: 12px;
}

.clone-home .testimonials .section-subtext {
	text-align: center;
	margin: 0 auto 48px;
}

.clone-home .rating-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: max-content;
	margin: 0 auto 16px;
	padding: 8px 20px;
	background: var(--color-white);
	border-radius: 50px;
	box-shadow: var(--shadow-card);
}

.clone-home .rating-star {
	font-size: 22px;
	color: var(--color-star);
}

.clone-home .rating-text {
	font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: var(--color-text-dark);
}

.clone-home .testimonials-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}

.clone-home .testimonial-card {
	background: var(--color-white);
	border-radius: var(--radius-md);
	padding: 24px;
	box-shadow: var(--shadow-card);
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.clone-home .testimonial-stars {
	color: var(--color-star);
	font-size: 20px;
	letter-spacing: 2px;
}

.clone-home .testimonial-text {
	font-size: 13px;
	color: var(--color-text-body);
	line-height: 1.75;
	flex: 1;
}

.clone-home .testimonial-footer {
	display: flex;
	flex-direction: column;
	gap: 3px;
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid var(--color-border);
}

.clone-home .testimonial-name {
	font-size: 13px;
	font-weight: 600;
	color: var(--color-text-dark);
}

.clone-home .testimonial-time {
	font-size: 12px;
	color: var(--color-text-light);
}

.clone-home .reviews-cta {
	text-align: center;
}

.clone-home .reviews-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 600;
	color: var(--color-green);
	border-bottom: 1.5px solid var(--color-green);
	padding-bottom: 2px;
}

.clone-home .credentials {
	padding: 80px 0;
	background: var(--color-white);
}

.clone-home .credentials .section-heading {
	text-align: center;
	margin-bottom: 12px;
}

.clone-home .credentials .section-subtext {
	text-align: center;
	margin: 0 auto 48px;
}

.clone-home .credentials-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
	align-items: center;
}

.clone-home .credential-item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 16px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: var(--color-white);
}

.clone-home .cred-img {
	display: block;
	width: 100%;
	height: 70px;
	object-fit: contain;
}

.clone-home .cta-section {
	background: var(--color-dark-green);
	padding: 80px 0;
}

.clone-home .cta-container {
	text-align: center;
}

.clone-home .cta-heading {
	font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
	font-size: 36px;
	font-weight: 600;
	color: var(--color-white);
	margin-bottom: 16px;
	line-height: 1.2;
}

.clone-home .cta-subtext {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.78);
	margin-bottom: 36px;
	line-height: 1.7;
}

@media (max-width: 1024px) {
	.clone-home .hero-container {
		padding-top: 56px;
		padding-bottom: 32px;
	}

	.clone-home .hero-heading {
		font-size: 44px;
	}

	.clone-home .typewriter-text,
	.clone-home .typewriter-cursor {
		font-size: clamp(1.8rem, 3.8vw, 3.2rem);
	}

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

	.clone-home .solutions-grid {
		grid-template-columns: repeat(3, 1fr);
	}

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

	.clone-home .credentials-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.clone-home .why-partner-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.clone-home .why-partner-image {
		min-height: 340px;
	}
}

@media (max-width: 768px) {
	.clone-home .container {
		padding: 0 16px;
	}

	.clone-home .hero {
		min-height: 520px;
	}

	.clone-home .hero-video {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.clone-home .hero-container {
		position: relative;
		inset: auto;
		align-items: flex-start;
		padding-top: 52px;
		padding-bottom: 72px;
	}

	.clone-home .hero-heading {
		font-size: 34px;
		margin-bottom: 16px;
	}

	.clone-home .typewriter-text,
	.clone-home .typewriter-cursor {
		font-size: 34px;
	}

	.clone-home .hero-body {
		font-size: 14px;
		line-height: 1.65;
		margin-bottom: 20px;
	}

	.clone-home .btn-hero {
		width: auto;
		align-self: flex-start;
	}

	.clone-home .section-heading {
		font-size: 30px;
	}

	.clone-home .why-partner,
	.clone-home .solutions,
	.clone-home .testimonials,
	.clone-home .credentials,
	.clone-home .cta-section,
	.clone-home .features {
		padding: 56px 0;
	}

	.clone-home .stats-row {
		flex-wrap: wrap;
		row-gap: 14px;
	}

	.clone-home .stat-item {
		flex: 0 0 calc(50% - 1px);
		padding: 0;
	}

	.clone-home .stat-divider {
		display: none;
	}

	.clone-home .features-grid,
	.clone-home .solutions-grid,
	.clone-home .testimonials-grid,
	.clone-home .credentials-grid {
		grid-template-columns: 1fr;
	}

	.clone-home .why-partner-image-wrap {
		display: none;
	}

	.clone-home .why-partner-image-mobile {
		display: block;
		margin: 24px 0 28px;
		border-radius: var(--radius-md);
	}

	.clone-home .cta-heading {
		font-size: 30px;
	}
}