/* ==================== Global Styles ==================== */

:root {
	/* Color Palette */
	--primary-green: #2d7d5e;
	--light-green: #4db380;
	--sage-green: #98b98d;
	--natural-beige: #f5f1e8;
	--warm-brown: #a89772;
	--rich-blue: #3d5a80;
	--accent-green: #7ac8a0;
	--dark-text: #1a1a1a;
	--light-text: #666666;

	/* Typography */
	--font-primary: "Inter", sans-serif;
	--font-secondary: "Poppins", sans-serif;

	/* Spacing */
	--spacing-xs: 0.5rem;
	--spacing-sm: 1rem;
	--spacing-md: 1.5rem;
	--spacing-lg: 2rem;
	--spacing-xl: 3rem;
	--spacing-2xl: 4rem;
	--spacing-3xl: 6rem;

	/* Border Radius */
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;

	/* Transitions */
	--transition: all 0.3s ease;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-primary);
	color: var(--dark-text);
	background-color: #ffffff;
	line-height: 1.6;
	overflow-x: hidden;
}

/* ==================== Typography ==================== */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-secondary);
	font-weight: 700;
	line-height: 1.2;
}

h1 {
	font-size: 3.5rem;
	margin-bottom: var(--spacing-lg);
}

h2 {
	font-size: 2.5rem;
	margin-bottom: var(--spacing-md);
	text-align: center;
	color: var(--primary-green);
}

h3 {
	font-size: 1.5rem;
	margin-bottom: var(--spacing-sm);
}

p {
	font-size: 1rem;
	color: var(--light-text);
	margin-bottom: var(--spacing-md);
}

.section-subtitle {
	font-size: 1.125rem;
	max-width: 600px;
	margin: 0 auto var(--spacing-2xl);
	text-align: center;
}

/* ==================== Container & Layout ==================== */

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--spacing-lg);
	width: 100%;
	box-sizing: border-box;
}

section {
	padding: var(--spacing-3xl) 0;
	width: 100%;
	overflow-x: hidden;
}

/* ==================== Modern Header & Navigation ==================== */

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(45, 125, 94, 0.08);
	transition: all 0.4s
		cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	border-bottom-color: rgba(45, 125, 94, 0.12);
}

.header-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 clamp(1.5rem, 4vw, 3rem);
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

/* Logo */
.logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	color: var(--dark-text);
	font-weight: 700;
	font-size: 1.375rem;
	font-family: var(--font-secondary);
	letter-spacing: -0.5px;
	transition: all 0.3s ease;
	position: relative;
	z-index: 1001;
}

.logo:hover {
	transform: translateY(-2px);
}

.logo-icon {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.4s
		cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover .logo-icon {
	transform: rotate(180deg) scale(1.05);
}

.logo-text {
	background: linear-gradient(
		135deg,
		var(--primary-green) 0%,
		var(--accent-green) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Desktop Navigation */
.nav-menu {
	display: flex;
	align-items: center;
	gap: 2.5rem;
	margin-left: auto;
}

.nav-link {
	position: relative;
	text-decoration: none;
	color: var(--dark-text);
	font-weight: 500;
	font-size: 0.9375rem;
	letter-spacing: 0.2px;
	transition: all 0.3s ease;
	padding: 0.5rem 0;
}

.nav-link::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: linear-gradient(
		90deg,
		var(--primary-green),
		var(--accent-green)
	);
	transform: translateX(-50%);
	transition: width 0.3s
		cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
	color: var(--primary-green);
}

.nav-link:hover::before {
	width: 100%;
}

/* Header Actions */
.header-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-left: 1.5rem;
}

.btn-secondary {
	background: transparent;
	color: var(--dark-text);
	border: 1.5px solid rgba(45, 125, 94, 0.2);
	padding: 0.625rem 1.5rem;
	border-radius: 50px;
	font-size: 0.9375rem;
	font-weight: 600;
	font-family: var(--font-primary);
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
	position: relative;
}

.btn-secondary:hover {
	border-color: var(--primary-green);
	color: var(--primary-green);
	background: rgba(45, 125, 94, 0.05);
	box-shadow: 0 4px 12px rgba(45, 125, 94, 0.15);
}

.btn-primary {
	background: linear-gradient(
		135deg,
		var(--primary-green) 0%,
		var(--accent-green) 100%
	);
	color: white;
	border: none;
	padding: 0.625rem 1.75rem;
	border-radius: 50px;
	font-size: 0.9375rem;
	font-weight: 600;
	font-family: var(--font-primary);
	cursor: pointer;
	transition: all 0.3s
		cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 12px rgba(45, 125, 94, 0.2);
	white-space: nowrap;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(45, 125, 94, 0.3);
}

.btn-primary:active {
	transform: translateY(0);
}

/* Mobile Toggle */
.mobile-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 28px;
	height: 20px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
	position: relative;
}

.mobile-toggle span {
	width: 100%;
	height: 2.5px;
	background: var(--dark-text);
	border-radius: 2px;
	transition: all 0.3s
		cubic-bezier(0.4, 0, 0.2, 1);
	transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
	transform: translateY(8.75px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
	transform: translateY(-8.75px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
	position: fixed;
	top: 80px;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s
		cubic-bezier(0.4, 0, 0.2, 1);
	border-bottom: 1px solid rgba(45, 125, 94, 0.08);
}

.mobile-menu.active {
	max-height: calc(100vh - 80px);
	overflow-y: auto;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.mobile-nav {
	display: flex;
	flex-direction: column;
	padding: 2rem clamp(1.5rem, 4vw, 3rem);
	gap: 0.5rem;
}

.mobile-link {
	text-decoration: none;
	color: var(--dark-text);
	font-weight: 500;
	font-size: 1.125rem;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(45, 125, 94, 0.08);
	transition: all 0.3s ease;
}

.mobile-link:hover {
	color: var(--primary-green);
	padding-left: 0.5rem;
}

.mobile-actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 1.5rem;
}

.btn-secondary-mobile,
.btn-primary-mobile {
	width: 100%;
	padding: 1rem;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 600;
	font-family: var(--font-primary);
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-secondary-mobile {
	background: transparent;
	color: var(--dark-text);
	border: 1.5px solid rgba(45, 125, 94, 0.2);
}

.btn-primary-mobile {
	background: linear-gradient(
		135deg,
		var(--primary-green) 0%,
		var(--accent-green) 100%
	);
	color: white;
	border: none;
	box-shadow: 0 4px 12px rgba(45, 125, 94, 0.2);
}

/* Responsive Design */
@media (max-width: 968px) {
	.nav-menu,
	.header-actions {
		display: none;
	}

	.mobile-toggle {
		display: flex;
	}
}

@media (max-width: 480px) {
	.header-container {
		height: 70px;
		padding: 0 1.5rem;
	}

	.logo {
		font-size: 1.25rem;
	}

	.logo-icon {
		width: 34px;
		height: 34px;
	}

	.mobile-menu {
		top: 70px;
	}

	.mobile-menu.active {
		max-height: calc(100vh - 70px);
	}
}

/* ==================== Hero Section ==================== */

/* ==================== Modern Hero Section ==================== */

.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 80px;
	background: linear-gradient(
		180deg,
		#fafafa 0%,
		#ffffff 100%
	);
	overflow: hidden;
}

.hero-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 4rem clamp(1.5rem, 4vw, 3rem);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

/* Left Content */
.hero-left {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	animation: fadeInUp 0.8s ease;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	width: fit-content;
	padding: 0.5rem 1rem;
	background: rgba(45, 125, 94, 0.06);
	border: 1px solid rgba(45, 125, 94, 0.1);
	border-radius: 50px;
	color: var(--primary-green);
	font-size: 0.875rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.hero-badge svg {
	color: var(--accent-green);
}

.hero-title {
	font-size: clamp(2.75rem, 6vw, 4.5rem);
	font-weight: 800;
	line-height: 1.1;
	color: var(--dark-text);
	letter-spacing: -0.03em;
	margin: 0;
}

.gradient-text {
	background: linear-gradient(
		135deg,
		var(--primary-green) 0%,
		var(--accent-green) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: inline-block;
}

.hero-description {
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--light-text);
	max-width: 540px;
	margin: 0;
}

/* Hero Actions */
.hero-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.hero-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 600;
	font-family: var(--font-primary);
	border: none;
	cursor: pointer;
	transition: all 0.3s
		cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn-primary {
	background: linear-gradient(
		135deg,
		var(--primary-green) 0%,
		var(--accent-green) 100%
	);
	color: white;
	box-shadow: 0 8px 24px rgba(45, 125, 94, 0.25);
}

.hero-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(45, 125, 94, 0.35);
}

.hero-btn-secondary {
	background: white;
	color: var(--dark-text);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-btn-secondary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Hero Stats */
.hero-stats {
	display: flex;
	align-items: center;
	gap: 2rem;
	padding-top: 1rem;
}

.stat {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.stat-value {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--dark-text);
	font-family: var(--font-secondary);
}

.stat-label {
	font-size: 0.875rem;
	color: var(--light-text);
	font-weight: 500;
}

.stat-divider {
	width: 1px;
	height: 40px;
	background: rgba(0, 0, 0, 0.1);
}

/* Right Visual */
.hero-right {
	position: relative;
	animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-visual {
	position: relative;
	width: 100%;
	height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Main Feature Card */
.feature-card {
	position: relative;
	background: white;
	border-radius: 24px;
	padding: 2rem;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08),
		0 4px 12px rgba(0, 0, 0, 0.04);
	border: 1px solid rgba(0, 0, 0, 0.06);
	width: 100%;
	max-width: 400px;
	z-index: 2;
}

.card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
}

.card-title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--dark-text);
}

.card-badge {
	padding: 0.375rem 0.875rem;
	background: rgba(45, 125, 94, 0.1);
	color: var(--primary-green);
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 700;
}

.chart-placeholder {
	width: 100%;
	height: 120px;
	display: flex;
	align-items: flex-end;
}

.chart-placeholder svg {
	width: 100%;
	height: 100%;
}

/* Floating Info Cards */
.info-card {
	position: absolute;
	background: white;
	border-radius: 16px;
	padding: 1rem 1.25rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1),
		0 2px 6px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.05);
	z-index: 3;
	animation: floatCard 3s ease-in-out infinite;
}

.info-card-1 {
	top: 10%;
	left: -5%;
	animation-delay: 0s;
}

.info-card-2 {
	top: 45%;
	right: -8%;
	animation-delay: 0.5s;
}

.info-card-3 {
	bottom: 15%;
	left: 5%;
	animation-delay: 1s;
}

.info-icon {
	font-size: 1.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.info-content {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
}

.info-label {
	font-size: 0.75rem;
	color: var(--light-text);
	font-weight: 500;
}

.info-value {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--dark-text);
}

/* Decorative Blurs */
.hero-blur {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.3;
	pointer-events: none;
	z-index: 1;
}

.hero-blur-1 {
	width: 400px;
	height: 400px;
	background: var(--accent-green);
	top: -10%;
	right: -10%;
	animation: pulse 8s ease-in-out infinite;
}

.hero-blur-2 {
	width: 350px;
	height: 350px;
	background: var(--primary-green);
	bottom: 5%;
	left: -5%;
	animation: pulse 8s ease-in-out infinite 1s;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes floatCard {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-15px);
	}
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.3;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.2;
	}
}

/* Responsive */
@media (max-width: 968px) {
	.hero-container {
		grid-template-columns: 1fr;
		gap: 3rem;
		text-align: center;
	}

	.hero-left {
		align-items: center;
	}

	.hero-actions {
		justify-content: center;
	}

	.hero-right {
		order: -1;
	}

	.hero-visual {
		height: 400px;
	}

	.feature-card {
		max-width: 100%;
	}

	.hero-stats {
		justify-content: center;
	}

	.info-card-1 {
		left: 0;
	}

	.info-card-2 {
		right: 0;
	}
}

@media (max-width: 640px) {
	.hero {
		padding-top: 70px;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-description {
		font-size: 1rem;
	}

	.hero-stats {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.stat-divider {
		display: none;
	}

	.hero-visual {
		height: 350px;
	}

	.info-card {
		padding: 0.75rem 1rem;
	}

	.info-card-2 {
		display: none;
	}
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

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

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

/* ==================== Buttons ==================== */

.btn {
	padding: 0.875rem 2rem;
	border: none;
	border-radius: var(--radius-md);
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
	display: inline-block;
	text-align: center;
	font-family: var(--font-primary);
}

.btn-primary {
	background-color: var(--primary-green);
	color: white;
}

.btn-primary:hover {
	background-color: #245d47;
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(45, 125, 94, 0.2);
}

.btn-primary:active {
	transform: translateY(0);
}

/* ==================== USP Section ==================== */

/* ==================== Modern USP Section ==================== */

.usp {
	position: relative;
	padding: 6rem 0;
	background: #ffffff;
	overflow: hidden;
}

.usp-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* Header */
.usp-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 4rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	animation: fadeInUp 0.8s ease;
}

.usp-badge {
	display: inline-block;
	margin: 0 auto;
	padding: 0.5rem 1.25rem;
	background: rgba(45, 125, 94, 0.08);
	border: 1px solid rgba(45, 125, 94, 0.15);
	border-radius: 50px;
	color: var(--primary-green);
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.usp-title {
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	font-weight: 700;
	line-height: 1.15;
	color: var(--dark-text);
	margin-bottom: 24px;
	letter-spacing: -1.5px;
}

.usp-subtitle {
	font-size: 1.125rem;
	color: var(--light-text);
	line-height: 1.7;
	margin: 0;
}

/* Grid */
.usp-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

@media (max-width: 1200px) {
	.usp-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.usp-item {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 2rem;
	background: #fafafa;
	border-radius: 20px;
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.3s
		cubic-bezier(0.4, 0, 0.2, 1);
	animation: fadeInUp 0.8s ease backwards;
}

.usp-item:nth-child(1) {
	animation-delay: 0.1s;
}

.usp-item:nth-child(2) {
	animation-delay: 0.2s;
}

.usp-item:nth-child(3) {
	animation-delay: 0.3s;
}

.usp-item:nth-child(4) {
	animation-delay: 0.4s;
}

.usp-item:hover {
	background: white;
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
	border-color: rgba(45, 125, 94, 0.15);
}

.usp-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		135deg,
		rgba(45, 125, 94, 0.1) 0%,
		rgba(122, 200, 160, 0.1) 100%
	);
	border-radius: 16px;
	color: var(--primary-green);
	transition: all 0.3s ease;
}

.usp-item:hover .usp-icon {
	background: linear-gradient(
		135deg,
		var(--primary-green) 0%,
		var(--accent-green) 100%
	);
	color: white;
	transform: scale(1.05);
}

.usp-item h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--dark-text);
	margin: 0;
	letter-spacing: -0.01em;
}

.usp-item p {
	font-size: 0.9375rem;
	color: var(--light-text);
	line-height: 1.6;
	margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
	.usp {
		padding: 4rem 0;
	}

	.usp-header {
		margin-bottom: 3rem;
	}

	.usp-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

/* ==================== Features Section ==================== */

/* ==================== Modern Features Section ==================== */

.features {
	position: relative;
	padding: 120px 0;
	background: linear-gradient(
		135deg,
		#fafafa 0%,
		#ffffff 50%,
		#f8f9fa 100%
	);
	overflow: hidden;
}

.features-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 clamp(1.5rem, 4vw, 3rem);
	position: relative;
	z-index: 2;
}

/* Section Header */
.features-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 80px;
}

.features-label {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--primary-green);
	background: linear-gradient(
		135deg,
		rgba(45, 125, 94, 0.1),
		rgba(122, 200, 160, 0.15)
	);
	padding: 8px 20px;
	border-radius: 30px;
	margin-bottom: 24px;
	border: 1px solid rgba(45, 125, 94, 0.15);
}

.features-title {
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	font-weight: 700;
	line-height: 1.15;
	color: var(--dark-text);
	margin-bottom: 24px;
	letter-spacing: -1.5px;
}

.gradient-text {
	background: linear-gradient(
		135deg,
		var(--primary-green) 0%,
		var(--accent-green) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}

.features-description {
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--light-text);
	max-width: 600px;
	margin: 0 auto;
}

/* Features Grid */
.features-grid {
	display: grid;
	grid-template-columns: repeat(
		auto-fit,
		minmax(min(100%, 360px), 1fr)
	);
	gap: 32px;
	margin-top: 0;
}

/* Feature Card */
.feature-card {
	position: relative;
	background: #ffffff;
	border-radius: 24px;
	overflow: hidden;
	transition: all 0.5s
		cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.feature-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--primary-green),
		var(--accent-green)
	);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.feature-card:hover::before {
	opacity: 1;
}

.feature-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
	border-color: rgba(45, 125, 94, 0.15);
}

.feature-card-inner {
	padding: 48px 36px;
	display: flex;
	flex-direction: column;
	height: 100%;
	position: relative;
}

/* Feature Icon */
.feature-icon-wrapper {
	margin-bottom: 28px;
}

.feature-icon {
	width: 72px;
	height: 72px;
	background: linear-gradient(
		135deg,
		rgba(45, 125, 94, 0.08),
		rgba(122, 200, 160, 0.12)
	);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-green);
	transition: all 0.4s
		cubic-bezier(0.34, 1.56, 0.64, 1);
	border: 1px solid rgba(45, 125, 94, 0.12);
}

.feature-card:hover .feature-icon {
	transform: scale(1.1) rotate(-5deg);
	background: linear-gradient(
		135deg,
		rgba(45, 125, 94, 0.15),
		rgba(122, 200, 160, 0.2)
	);
	box-shadow: 0 8px 24px rgba(45, 125, 94, 0.2);
}

/* Feature Content */
.feature-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.feature-title {
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--dark-text);
	margin-bottom: 16px;
	letter-spacing: -0.5px;
	line-height: 1.3;
}

.feature-text {
	font-size: 1rem;
	line-height: 1.65;
	color: var(--light-text);
	margin-bottom: 24px;
	flex-grow: 1;
}

/* Feature Tags */
.feature-tags {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: auto;
}

.feature-tag {
	display: inline-flex;
	align-items: center;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.3px;
	color: var(--primary-green);
	background: rgba(45, 125, 94, 0.08);
	padding: 6px 14px;
	border-radius: 20px;
	transition: all 0.3s ease;
	border: 1px solid rgba(45, 125, 94, 0.1);
}

.feature-card:hover .feature-tag {
	background: rgba(45, 125, 94, 0.12);
	transform: translateY(-2px);
}

/* Decorative Elements */
.features-decoration {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
	overflow: hidden;
}

.decoration-circle {
	position: absolute;
	border-radius: 50%;
	opacity: 0.4;
}

.decoration-circle-1 {
	width: 500px;
	height: 500px;
	background: radial-gradient(
		circle,
		rgba(45, 125, 94, 0.05) 0%,
		transparent 70%
	);
	top: -200px;
	left: -100px;
	animation: float 20s ease-in-out infinite;
}

.decoration-circle-2 {
	width: 400px;
	height: 400px;
	background: radial-gradient(
		circle,
		rgba(122, 200, 160, 0.06) 0%,
		transparent 70%
	);
	bottom: -150px;
	right: -80px;
	animation: float 25s ease-in-out infinite
		reverse;
}

.decoration-circle-3 {
	width: 300px;
	height: 300px;
	background: radial-gradient(
		circle,
		rgba(77, 179, 128, 0.04) 0%,
		transparent 70%
	);
	top: 50%;
	right: 10%;
	transform: translateY(-50%);
	animation: float 30s ease-in-out infinite;
}

@keyframes float {
	0%,
	100% {
		transform: translate(0, 0);
	}
	33% {
		transform: translate(30px, -30px);
	}
	66% {
		transform: translate(-20px, 20px);
	}
}

/* ==================== How It Works Section ==================== */

/* ==================== Modern How It Works Section ==================== */

.how-it-works {
	position: relative;
	padding: 120px 0;
	background: linear-gradient(
		135deg,
		#ffffff 0%,
		#f8f9fa 100%
	);
	overflow: hidden;
}

.hiw-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 clamp(1.5rem, 4vw, 3rem);
	position: relative;
	z-index: 2;
}

/* Header */
.hiw-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 80px;
}

.hiw-label {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--primary-green);
	background: linear-gradient(
		135deg,
		rgba(45, 125, 94, 0.1),
		rgba(122, 200, 160, 0.15)
	);
	padding: 8px 20px;
	border-radius: 30px;
	margin-bottom: 24px;
	border: 1px solid rgba(45, 125, 94, 0.15);
}

.hiw-title {
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	font-weight: 700;
	line-height: 1.15;
	color: var(--dark-text);
	margin-bottom: 24px;
	letter-spacing: -1.5px;
}

.hiw-description {
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--light-text);
	max-width: 650px;
	margin: 0 auto;
}

/* Steps Grid */
.hiw-steps {
	display: grid;
	grid-template-columns: repeat(
		auto-fit,
		minmax(min(100%, 320px), 1fr)
	);
	gap: 40px;
	margin-bottom: 64px;
	position: relative;
}

/* Individual Step */
.hiw-step {
	position: relative;
	background: #ffffff;
	border-radius: 24px;
	padding: 48px 36px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
	transition: all 0.5s
		cubic-bezier(0.4, 0, 0.2, 1);
}

.hiw-step:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
	border-color: rgba(45, 125, 94, 0.2);
}

/* Step Number Badge */
.hiw-step-number {
	position: absolute;
	top: -16px;
	left: 36px;
	width: 64px;
	height: 64px;
	background: linear-gradient(
		135deg,
		var(--primary-green),
		var(--accent-green)
	);
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	font-weight: 700;
	box-shadow: 0 8px 24px rgba(45, 125, 94, 0.3);
	transition: all 0.4s
		cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hiw-step:hover .hiw-step-number {
	transform: scale(1.1) rotate(-5deg);
	box-shadow: 0 12px 32px rgba(45, 125, 94, 0.4);
}

/* Step Icon */
.hiw-step-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(
		135deg,
		rgba(45, 125, 94, 0.08),
		rgba(122, 200, 160, 0.12)
	);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-green);
	margin: 36px 0 28px;
	transition: all 0.4s ease;
	border: 1px solid rgba(45, 125, 94, 0.12);
}

.hiw-step:hover .hiw-step-icon {
	background: linear-gradient(
		135deg,
		rgba(45, 125, 94, 0.15),
		rgba(122, 200, 160, 0.2)
	);
	transform: scale(1.08);
}

/* Step Content */
.hiw-step-content {
	display: flex;
	flex-direction: column;
}

.hiw-step-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--dark-text);
	margin-bottom: 16px;
	letter-spacing: -0.5px;
	line-height: 1.3;
}

.hiw-step-text {
	font-size: 1rem;
	line-height: 1.65;
	color: var(--light-text);
	margin-bottom: 24px;
}

/* Step Time Badge */
.hiw-step-time {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--primary-green);
	background: rgba(45, 125, 94, 0.08);
	padding: 8px 16px;
	border-radius: 20px;
	width: fit-content;
	border: 1px solid rgba(45, 125, 94, 0.12);
}

.hiw-step-time svg {
	color: var(--primary-green);
}

/* Step Connector Line (desktop only) */
.hiw-step-connector {
	display: none;
}

@media (min-width: 1024px) {
	.hiw-step:not(:last-child) .hiw-step-connector {
		display: block;
		position: absolute;
		top: 48px;
		right: -40px;
		width: 80px;
		height: 2px;
		background: linear-gradient(
			90deg,
			rgba(45, 125, 94, 0.3),
			transparent
		);
	}
}

/* CTA Section */
.hiw-cta {
	text-align: center;
	margin-top: 64px;
}

.hiw-cta .btn-primary {
	padding: 16px 48px;
	font-size: 1.125rem;
	margin-bottom: 16px;
}

.hiw-cta-note {
	font-size: 0.9375rem;
	color: var(--light-text);
	margin: 0;
}

/* Decorative Elements */
.hiw-decoration {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
	overflow: hidden;
}

.hiw-decoration-circle {
	position: absolute;
	border-radius: 50%;
	opacity: 0.5;
}

.hiw-decoration-circle-1 {
	width: 400px;
	height: 400px;
	background: radial-gradient(
		circle,
		rgba(45, 125, 94, 0.06) 0%,
		transparent 70%
	);
	top: -150px;
	right: -100px;
	animation: float 20s ease-in-out infinite;
}

.hiw-decoration-circle-2 {
	width: 350px;
	height: 350px;
	background: radial-gradient(
		circle,
		rgba(122, 200, 160, 0.05) 0%,
		transparent 70%
	);
	bottom: -100px;
	left: -80px;
	animation: float 25s ease-in-out infinite
		reverse;
}

/* ==================== Impact Section ==================== */

/* ==================== Modern Impact Section ==================== */

.impact {
	position: relative;
	padding: 120px 0;
	background: linear-gradient(
		135deg,
		var(--primary-green) 0%,
		var(--rich-blue) 100%
	);
	overflow: hidden;
	color: white;
}

.impact-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 clamp(1.5rem, 4vw, 3rem);
	position: relative;
	z-index: 2;
}

/* Header */
.impact-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 80px;
}

.impact-label {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.95);
	background: rgba(255, 255, 255, 0.15);
	padding: 8px 20px;
	border-radius: 30px;
	margin-bottom: 24px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
}

.impact-title {
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	font-weight: 700;
	line-height: 1.15;
	color: white;
	margin-bottom: 24px;
	letter-spacing: -1.5px;
}

.impact-highlight {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: underline;
	text-decoration-color: rgba(122, 200, 160, 0.5);
	text-decoration-thickness: 3px;
	text-underline-offset: 6px;
}

.impact-description {
	font-size: 1.125rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
	max-width: 700px;
	margin: 0 auto;
}

/* Stats Grid */
.impact-stats-grid {
	display: grid;
	grid-template-columns: repeat(
		auto-fit,
		minmax(min(100%, 260px), 1fr)
	);
	gap: 32px;
	margin-bottom: 80px;
}

/* Stat Card */
.impact-stat-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 24px;
	padding: 40px 32px;
	transition: all 0.5s
		cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.impact-stat-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(122, 200, 160, 0.6),
		transparent
	);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.impact-stat-card:hover::before {
	opacity: 1;
}

.impact-stat-card:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.25);
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Stat Icon */
.impact-stat-icon {
	width: 72px;
	height: 72px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	margin-bottom: 24px;
	transition: all 0.4s
		cubic-bezier(0.34, 1.56, 0.64, 1);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.impact-stat-card:hover .impact-stat-icon {
	transform: scale(1.1) rotate(-5deg);
	background: rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Stat Content */
.impact-stat-content {
	display: flex;
	flex-direction: column;
}

.impact-stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: white;
	line-height: 1;
	margin-bottom: 12px;
	letter-spacing: -1px;
}

.impact-stat-label {
	font-size: 1.125rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 8px;
	line-height: 1.3;
}

.impact-stat-context {
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.5;
}

/* Impact Categories */
.impact-categories {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 32px;
	flex-wrap: wrap;
	padding: 48px 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.impact-category {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 24px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 50px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.impact-category:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.25);
	transform: translateY(-2px);
}

.impact-category-icon {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.9);
}

.impact-category-name {
	font-size: 0.9375rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.95);
	white-space: nowrap;
}

/* Decorative Elements */
.impact-decoration {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
	overflow: hidden;
}

.impact-decoration-circle {
	position: absolute;
	border-radius: 50%;
	opacity: 0.3;
}

.impact-decoration-circle-1 {
	width: 500px;
	height: 500px;
	background: radial-gradient(
		circle,
		rgba(122, 200, 160, 0.15) 0%,
		transparent 70%
	);
	top: -200px;
	left: -100px;
	animation: float 25s ease-in-out infinite;
}

.impact-decoration-circle-2 {
	width: 400px;
	height: 400px;
	background: radial-gradient(
		circle,
		rgba(61, 90, 128, 0.2) 0%,
		transparent 70%
	);
	bottom: -150px;
	right: -80px;
	animation: float 30s ease-in-out infinite
		reverse;
}

/* ==================== Impact Section - Responsive ==================== */
@media (max-width: 1024px) {
	.impact {
		padding: 100px 0;
	}

	.impact-container {
		padding: 0 2rem;
	}

	.impact-header {
		margin-bottom: 64px;
	}

	.impact-title {
		font-size: 2.75rem;
	}

	.impact-description {
		font-size: 1.0625rem;
	}

	.impact-stats-grid {
		gap: 28px;
		margin-bottom: 64px;
	}

	.impact-stat-card {
		padding: 36px 28px;
	}

	.impact-stat-icon {
		width: 68px;
		height: 68px;
	}

	.impact-stat-number {
		font-size: 2.25rem;
	}

	.impact-categories {
		gap: 24px;
		padding-top: 40px;
	}
}

@media (max-width: 768px) {
	.impact {
		padding: 80px 0;
	}

	.impact-container {
		padding: 0 1.25rem;
	}

	.impact-header {
		margin-bottom: 56px;
	}

	.impact-label {
		font-size: 0.75rem;
		padding: 6px 16px;
		margin-bottom: 20px;
	}

	.impact-title {
		font-size: 2rem;
		letter-spacing: -1px;
		margin-bottom: 20px;
	}

	.impact-description {
		font-size: 1rem;
	}

	.impact-stats-grid {
		gap: 24px;
		grid-template-columns: 1fr;
		margin-bottom: 56px;
	}

	.impact-stat-card {
		padding: 32px 24px;
	}

	.impact-stat-icon {
		width: 64px;
		height: 64px;
		border-radius: 16px;
	}

	.impact-stat-icon svg {
		width: 28px;
		height: 28px;
	}

	.impact-stat-number {
		font-size: 2rem;
		margin-bottom: 10px;
	}

	.impact-stat-label {
		font-size: 1rem;
		margin-bottom: 6px;
	}

	.impact-stat-context {
		font-size: 0.875rem;
	}

	.impact-categories {
		gap: 16px;
		padding-top: 36px;
	}

	.impact-category {
		padding: 12px 20px;
		gap: 10px;
	}

	.impact-category-icon {
		width: 28px;
		height: 28px;
	}

	.impact-category-icon svg {
		width: 20px;
		height: 20px;
	}

	.impact-category-name {
		font-size: 0.875rem;
	}
}

@media (max-width: 480px) {
	.impact {
		padding: 60px 0;
	}

	.impact-title {
		font-size: 1.75rem;
	}

	.impact-description {
		font-size: 0.9375rem;
	}

	.impact-stats-grid {
		gap: 20px;
		margin-bottom: 48px;
	}

	.impact-stat-card {
		padding: 28px 20px;
	}

	.impact-stat-icon {
		width: 56px;
		height: 56px;
	}

	.impact-stat-icon svg {
		width: 26px;
		height: 26px;
	}

	.impact-stat-number {
		font-size: 1.75rem;
	}

	.impact-stat-label {
		font-size: 0.9375rem;
	}

	.impact-stat-context {
		font-size: 0.8125rem;
	}

	.impact-categories {
		gap: 12px;
		padding-top: 32px;
	}

	.impact-category {
		padding: 10px 16px;
		gap: 8px;
	}

	.impact-category-icon {
		width: 24px;
		height: 24px;
	}

	.impact-category-icon svg {
		width: 18px;
		height: 18px;
	}

	.impact-category-name {
		font-size: 0.8125rem;
	}
}

/* ==================== Testimonials Section ==================== */

/* ==================== Testimonials Section ==================== */

.testimonials {
	position: relative;
	padding: 8rem 0;
	background: linear-gradient(
		135deg,
		#f8f9fa 0%,
		#ffffff 50%,
		#f5f9f7 100%
	);
	overflow: hidden;
}

.testimonials-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	position: relative;
	z-index: 1;
}

.testimonials-header {
	text-align: center;
	margin-bottom: 4rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.testimonials-label {
	display: inline-block;
	background: linear-gradient(
		135deg,
		rgba(45, 125, 94, 0.08),
		rgba(122, 200, 160, 0.08)
	);
	color: var(--primary-green);
	padding: 0.5rem 1.25rem;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	border: 1px solid rgba(45, 125, 94, 0.15);
}

.testimonials-title {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 700;
	color: var(--dark-text);
	margin-bottom: 1.5rem;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.testimonials-description {
	font-size: 1.125rem;
	line-height: 1.7;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 4rem;
	align-items: stretch;
}

.testimonial-card {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(45, 125, 94, 0.1);
	border-radius: 24px;
	padding: 2.5rem;
	position: relative;
	overflow: hidden;
	transition: all 0.4s
		cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	animation: slideInUp 0.6s
		cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.testimonial-card:nth-child(1) {
	animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
	animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
	animation-delay: 0.3s;
}

.testimonial-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--accent-green),
		var(--primary-green),
		var(--accent-green)
	);
	opacity: 0;
	transition: opacity 0.4s
		cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(45, 125, 94, 0.15);
	border-color: rgba(45, 125, 94, 0.25);
	background: rgba(255, 255, 255, 0.9);
}

.testimonial-card:hover::before {
	opacity: 1;
}

.testimonial-quote {
	color: var(--accent-green);
	margin-bottom: 1.5rem;
	opacity: 0.6;
}

.testimonial-quote svg {
	width: 32px;
	height: 32px;
}

.testimonial-text {
	font-size: 1.0625rem;
	line-height: 1.8;
	color: #444;
	margin-bottom: 2rem;
	flex-grow: 1;
	font-weight: 400;
}

.testimonial-footer {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(45, 125, 94, 0.1);
	min-height: 64px;
}

.testimonial-avatar {
	flex-shrink: 0;
}

.avatar-circle {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		var(--primary-green),
		var(--accent-green)
	);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 0.5px;
}

.testimonial-author {
	flex-grow: 1;
	min-width: 0;
}

.author-name {
	font-size: 1rem;
	font-weight: 700;
	color: var(--dark-text);
	margin-bottom: 0.25rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.author-role {
	font-size: 0.875rem;
	color: #888;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.testimonial-rating {
	display: flex;
	gap: 0.25rem;
	flex-shrink: 0;
}

.testimonial-rating svg {
	width: 16px;
	height: 16px;
	color: #fbbf24;
	transition: transform 0.3s
		cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover .testimonial-rating svg {
	transform: scale(1.1);
}

.testimonials-trust {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4rem;
	padding: 3rem 2rem;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.5),
		rgba(245, 249, 247, 0.5)
	);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(45, 125, 94, 0.1);
	border-radius: 24px;
	margin-top: 2rem;
}

.trust-stat {
	text-align: center;
}

.trust-number {
	font-size: 2.5rem;
	font-weight: 700;
	background: linear-gradient(
		135deg,
		var(--primary-green),
		var(--accent-green)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
	letter-spacing: -0.02em;
}

.trust-label {
	font-size: 0.9rem;
	color: #666;
	font-weight: 500;
}

.testimonials-decoration {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.testimonials-decoration-circle {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.4;
}

.testimonials-decoration-circle-1 {
	width: 400px;
	height: 400px;
	background: linear-gradient(
		135deg,
		rgba(122, 200, 160, 0.2),
		transparent
	);
	top: -10%;
	right: -5%;
	animation: float 20s ease-in-out infinite;
}

.testimonials-decoration-circle-2 {
	width: 350px;
	height: 350px;
	background: linear-gradient(
		135deg,
		rgba(45, 125, 94, 0.15),
		transparent
	);
	bottom: -10%;
	left: -5%;
	animation: float 25s ease-in-out infinite
		reverse;
}

/* ==================== Testimonials Section - Responsive ==================== */
@media (max-width: 1024px) {
	.testimonials {
		padding: 6rem 0;
	}

	.testimonials-container {
		padding: 0 1.5rem;
	}

	.testimonials-header {
		margin-bottom: 3rem;
	}

	.testimonials-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
		margin-bottom: 3rem;
	}

	.testimonial-card {
		padding: 2rem;
	}

	.testimonials-trust {
		gap: 3rem;
		padding: 2.5rem 1.5rem;
	}

	.trust-number {
		font-size: 2.25rem;
	}
}

@media (max-width: 768px) {
	.testimonials {
		padding: 5rem 0;
	}

	.testimonials-container {
		padding: 0 1.25rem;
	}

	.testimonials-header {
		margin-bottom: 2.5rem;
	}

	.testimonials-title {
		margin-bottom: 1rem;
	}

	.testimonials-description {
		font-size: 1rem;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
		margin-bottom: 2.5rem;
	}

	.testimonial-card {
		padding: 1.75rem;
	}

	.testimonial-text {
		font-size: 1rem;
		margin-bottom: 1.5rem;
	}

	.testimonials-trust {
		flex-direction: column;
		gap: 2rem;
		padding: 2rem 1.25rem;
	}

	.trust-number {
		font-size: 2rem;
	}
}

@media (max-width: 480px) {
	.testimonials {
		padding: 4rem 0;
	}

	.testimonials-container {
		padding: 0 1rem;
	}

	.testimonials-header {
		margin-bottom: 2rem;
	}

	.testimonials-label {
		font-size: 0.8rem;
		padding: 0.4rem 1rem;
	}

	.testimonials-description {
		font-size: 0.95rem;
	}

	.testimonials-grid {
		gap: 1rem;
		margin-bottom: 2rem;
	}

	.testimonial-card {
		padding: 1.5rem;
		border-radius: 20px;
	}

	.testimonial-quote svg {
		width: 28px;
		height: 28px;
	}

	.testimonial-text {
		font-size: 0.95rem;
		margin-bottom: 1.25rem;
	}

	.testimonial-footer {
		padding-top: 1.25rem;
	}

	.avatar-circle {
		width: 44px;
		height: 44px;
		font-size: 0.85rem;
	}

	.author-name {
		font-size: 0.95rem;
	}

	.author-role {
		font-size: 0.8rem;
	}

	.testimonial-rating svg {
		width: 14px;
		height: 14px;
	}

	.testimonials-trust {
		gap: 1.5rem;
		padding: 1.75rem 1rem;
		border-radius: 20px;
	}

	.trust-number {
		font-size: 1.75rem;
	}

	.trust-label {
		font-size: 0.85rem;
	}
}

@media (max-width: 360px) {
	.testimonials {
		padding: 3.5rem 0;
	}

	.testimonial-card {
		padding: 1.25rem;
	}

	.testimonial-text {
		font-size: 0.9rem;
	}

	.trust-number {
		font-size: 1.5rem;
	}
}

/* ==================== CTA Section ==================== */

/* ==================== CTA Section ==================== */

.cta-section {
	position: relative;
	padding: 8rem 0;
	background: linear-gradient(
		135deg,
		#2d7d5e 0%,
		#1e5a45 100%
	);
	overflow: hidden;
}

.cta-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	position: relative;
	z-index: 1;
}

.cta-content {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 4rem;
}

.cta-label {
	display: inline-block;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	color: white;
	padding: 0.5rem 1.25rem;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-title {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	color: white;
	margin-bottom: 1.5rem;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.gradient-text-cta {
	background: linear-gradient(
		135deg,
		#7ac8a0,
		#a8e6cf
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.cta-description {
	font-size: 1.125rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 2.5rem;
}

.cta-form {
	display: flex;
	gap: 1rem;
	max-width: 600px;
	margin: 0 auto 2rem;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 0.5rem;
	border-radius: 60px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-input-wrapper {
	flex: 1;
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding-left: 1.5rem;
}

.cta-input-wrapper svg {
	color: rgba(255, 255, 255, 0.5);
	flex-shrink: 0;
}

.cta-input {
	flex: 1;
	padding: 1rem 0;
	border: none;
	background: transparent;
	font-size: 1rem;
	font-family: var(--font-primary);
	color: white;
	outline: none;
}

.cta-input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.cta-button {
	padding: 1rem 2rem;
	background: linear-gradient(
		135deg,
		#7ac8a0,
		#5ab880
	);
	color: white;
	border: none;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	transition: all 0.4s
		cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 8px 24px rgba(122, 200, 160, 0.3);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(122, 200, 160, 0.4);
}

.cta-button:active {
	transform: translateY(0);
}

.cta-button svg {
	transition: transform 0.3s
		cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover svg {
	transform: translateX(4px);
}

.cta-trust {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.cta-trust-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9rem;
}

.cta-trust-item svg {
	color: #7ac8a0;
	flex-shrink: 0;
}

.cta-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 1rem;
}

.cta-stat-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 24px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1rem;
	transition: all 0.4s
		cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-stat-card:hover {
	transform: translateY(-8px);
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(122, 200, 160, 0.4);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cta-stat-icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: linear-gradient(
		135deg,
		rgba(122, 200, 160, 0.2),
		rgba(90, 184, 128, 0.2)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #7ac8a0;
	transition: all 0.4s
		cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-stat-card:hover .cta-stat-icon {
	transform: scale(1.1) rotate(5deg);
	background: linear-gradient(
		135deg,
		rgba(122, 200, 160, 0.3),
		rgba(90, 184, 128, 0.3)
	);
}

.cta-stat-content {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.cta-stat-number {
	font-size: 2rem;
	font-weight: 700;
	color: white;
	letter-spacing: -0.02em;
}

.cta-stat-label {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 500;
}

.cta-decoration {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.cta-decoration-circle {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	opacity: 0.3;
}

.cta-decoration-circle-1 {
	width: 500px;
	height: 500px;
	background: linear-gradient(
		135deg,
		rgba(122, 200, 160, 0.4),
		transparent
	);
	top: -20%;
	right: -10%;
	animation: float 20s ease-in-out infinite;
}

.cta-decoration-circle-2 {
	width: 400px;
	height: 400px;
	background: linear-gradient(
		135deg,
		rgba(90, 184, 128, 0.3),
		transparent
	);
	bottom: -15%;
	left: -5%;
	animation: float 25s ease-in-out infinite
		reverse;
}

.cta-decoration-circle-3 {
	width: 300px;
	height: 300px;
	background: linear-gradient(
		135deg,
		rgba(168, 230, 207, 0.2),
		transparent
	);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: float 30s ease-in-out infinite;
}

/* ==================== CTA Section - Responsive ==================== */
@media (max-width: 1024px) {
	.cta-section {
		padding: 6rem 0;
	}

	.cta-container {
		padding: 0 1.5rem;
	}

	.cta-content {
		margin-bottom: 3rem;
	}

	.cta-stats {
		gap: 1.5rem;
	}

	.cta-stat-card {
		padding: 1.5rem;
	}

	.cta-stat-number {
		font-size: 1.75rem;
	}
}

@media (max-width: 768px) {
	.cta-section {
		padding: 5rem 0;
	}

	.cta-container {
		padding: 0 1.25rem;
	}

	.cta-content {
		margin-bottom: 2.5rem;
	}

	.cta-description {
		font-size: 1rem;
		margin-bottom: 2rem;
	}

	.cta-form {
		flex-direction: column;
		gap: 0.75rem;
		padding: 0.75rem;
		border-radius: 20px;
	}

	.cta-input-wrapper {
		padding: 0.5rem 1rem;
	}

	.cta-button {
		width: 100%;
		justify-content: center;
	}

	.cta-trust {
		gap: 1.5rem;
	}

	.cta-trust-item {
		font-size: 0.85rem;
	}

	.cta-stats {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.cta-stat-card {
		flex-direction: row;
		text-align: left;
	}

	.cta-stat-icon {
		width: 48px;
		height: 48px;
	}

	.cta-stat-icon svg {
		width: 24px;
		height: 24px;
	}

	.cta-stat-number {
		font-size: 1.5rem;
	}

	.cta-stat-label {
		font-size: 0.85rem;
	}
}

@media (max-width: 480px) {
	.cta-section {
		padding: 4rem 0;
	}

	.cta-container {
		padding: 0 1rem;
	}

	.cta-content {
		margin-bottom: 2rem;
	}

	.cta-label {
		font-size: 0.8rem;
		padding: 0.4rem 1rem;
	}

	.cta-description {
		font-size: 0.95rem;
		margin-bottom: 1.5rem;
	}

	.cta-form {
		margin-bottom: 1.5rem;
	}

	.cta-input {
		font-size: 0.95rem;
	}

	.cta-button {
		font-size: 0.95rem;
		padding: 0.875rem 1.5rem;
	}

	.cta-trust {
		flex-direction: column;
		gap: 1rem;
	}

	.cta-stat-card {
		padding: 1.25rem;
		border-radius: 20px;
	}

	.cta-stat-icon {
		width: 44px;
		height: 44px;
	}

	.cta-stat-icon svg {
		width: 22px;
		height: 22px;
	}

	.cta-stat-number {
		font-size: 1.35rem;
	}

	.cta-stat-label {
		font-size: 0.8rem;
	}
}

@media (max-width: 360px) {
	.cta-section {
		padding: 3.5rem 0;
	}

	.cta-stat-card {
		padding: 1rem;
	}

	.cta-stat-number {
		font-size: 1.25rem;
	}
}

/* ==================== Footer ==================== */

/* ==================== Footer ==================== */

.footer {
	position: relative;
	background: linear-gradient(
		135deg,
		#1a1a1a 0%,
		#0f0f0f 100%
	);
	padding: 5rem 0 0;
	overflow: hidden;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	position: relative;
	z-index: 1;
}

.footer-main {
	display: grid;
	grid-template-columns: 1.5fr 2.5fr;
	gap: 4rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid
		rgba(255, 255, 255, 0.1);
}

.footer-brand {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.footer-logo {
	font-size: 1.75rem;
	font-weight: 700;
	color: white;
	margin: 0;
	letter-spacing: -0.02em;
	background: linear-gradient(
		135deg,
		#ffffff,
		#7ac8a0
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-tagline {
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
	max-width: 320px;
}

.footer-social {
	display: flex;
	gap: 0.75rem;
}

.social-link {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.6);
	transition: all 0.4s
		cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
	background: linear-gradient(
		135deg,
		#7ac8a0,
		#5ab880
	);
	border-color: transparent;
	color: white;
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(122, 200, 160, 0.2);
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.footer-column h4 {
	font-size: 0.875rem;
	font-weight: 600;
	color: white;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 1.25rem;
}

.footer-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}

.footer-column a {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	transition: all 0.3s
		cubic-bezier(0.4, 0, 0.2, 1);
	display: inline-block;
	position: relative;
}

.footer-column a::before {
	content: "";
	position: absolute;
	left: -12px;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #7ac8a0;
	opacity: 0;
	transition: all 0.3s
		cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-column a:hover {
	color: #7ac8a0;
	padding-left: 12px;
}

.footer-column a:hover::before {
	opacity: 1;
	left: 0;
}

.footer-bottom {
	padding: 2rem 0;
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.footer-copyright {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.4);
	margin: 0;
}

.footer-badges {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.footer-badge {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.5);
	padding: 0.5rem 1rem;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-badge svg {
	color: #7ac8a0;
	flex-shrink: 0;
}

.footer-decoration {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.footer-decoration-circle {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	opacity: 0.15;
}

.footer-decoration-circle-1 {
	width: 400px;
	height: 400px;
	background: linear-gradient(
		135deg,
		rgba(122, 200, 160, 0.3),
		transparent
	);
	top: -10%;
	right: -5%;
	animation: float 25s ease-in-out infinite;
}

.footer-decoration-circle-2 {
	width: 350px;
	height: 350px;
	background: linear-gradient(
		135deg,
		rgba(90, 184, 128, 0.2),
		transparent
	);
	bottom: -10%;
	left: -5%;
	animation: float 30s ease-in-out infinite
		reverse;
}

/* ==================== Footer - Responsive ==================== */
@media (max-width: 1024px) {
	.footer {
		padding: 4rem 0 0;
	}

	.footer-container {
		padding: 0 1.5rem;
	}

	.footer-main {
		grid-template-columns: 1fr;
		gap: 3rem;
		padding-bottom: 2.5rem;
		text-align: center;
	}

	.footer-brand {
		align-items: center;
	}

	.footer-social {
		justify-content: center;
	}

	.footer-links {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem 3rem;
	}

	.footer-column {
		align-items: center;
	}

	.footer-bottom-content {
		flex-direction: column;
		align-items: center;
		gap: 1.5rem;
	}
}

@media (max-width: 768px) {
	.footer {
		padding: 3.5rem 0 0;
	}

	.footer-container {
		padding: 0 1.25rem;
	}

	.footer-main {
		gap: 2.5rem;
		padding-bottom: 2rem;
	}

	.footer-logo {
		font-size: 1.5rem;
	}

	.footer-tagline {
		font-size: 0.95rem;
	}

	.footer-links {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-column h4 {
		font-size: 0.8rem;
		margin-bottom: 1rem;
	}

	.footer-column ul {
		gap: 0.75rem;
	}

	.footer-column a {
		font-size: 0.9rem;
	}

	.footer-bottom {
		padding: 1.75rem 0;
	}

	.footer-badges {
		gap: 1rem;
		justify-content: center;
	}

	.footer-badge {
		font-size: 0.8rem;
		padding: 0.4rem 0.875rem;
	}
}

@media (max-width: 480px) {
	.footer {
		padding: 3rem 0 0;
	}

	.footer-container {
		padding: 0 1rem;
	}

	.footer-main {
		gap: 2rem;
		padding-bottom: 1.75rem;
	}

	.footer-logo {
		font-size: 1.35rem;
	}

	.footer-tagline {
		font-size: 0.9rem;
	}

	.footer-social {
		gap: 0.625rem;
	}

	.social-link {
		width: 40px;
		height: 40px;
		border-radius: 10px;
	}

	.social-link svg {
		width: 18px;
		height: 18px;
	}

	.footer-links {
		gap: 1.75rem;
	}

	.footer-column h4 {
		font-size: 0.75rem;
		margin-bottom: 0.875rem;
	}

	.footer-column ul {
		gap: 0.625rem;
	}

	.footer-column a {
		font-size: 0.85rem;
	}

	.footer-bottom {
		padding: 1.5rem 0;
	}

	.footer-copyright {
		font-size: 0.85rem;
	}

	.footer-badges {
		flex-direction: column;
		align-items: center;
		gap: 0.75rem;
	}

	.footer-badge {
		font-size: 0.75rem;
		padding: 0.375rem 0.75rem;
	}

	.footer-badge svg {
		width: 14px;
		height: 14px;
	}
}

@media (max-width: 360px) {
	.footer {
		padding: 2.5rem 0 0;
	}

	.footer-main {
		gap: 1.75rem;
		padding-bottom: 1.5rem;
	}

	.footer-bottom {
		padding: 1.25rem 0;
	}
}

/* ==================== Responsive Design ==================== */

@media (max-width: 768px) {
	/* ==================== Mobile Header ==================== */
	.nav-container {
		padding: 0 var(--spacing-md);
		gap: var(--spacing-md);
	}

	.logo {
		font-size: 1rem;
		gap: 6px;
	}

	.logo-icon {
		width: 20px;
		height: 20px;
	}

	.logo-text {
		display: inline;
	}

	.menu-toggle {
		display: flex;
		order: 3;
	}

	.menu-toggle .line {
		width: 22px;
		height: 2px;
	}

	.nav-menu {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		background: linear-gradient(
			180deg,
			#ffffff 0%,
			#fafaf8 100%
		);
		flex-direction: column;
		gap: 0;
		box-sizing: border-box;
		max-height: calc(100vh - 100px);
		overflow-y: auto;
		z-index: 100;
		border-bottom: 1px solid
			rgba(45, 125, 94, 0.08);
	}

	.nav-menu.active {
		display: flex;
		animation: slideDownMenu 0.35s
			cubic-bezier(0.4, 0, 0.2, 1) forwards;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	}

	.nav-menu li {
		width: 100%;
		border-bottom: 1px solid #f0f0f0;
	}

	.nav-menu li:last-child {
		border-bottom: none;
	}

	.nav-menu a {
		padding: 16px var(--spacing-lg);
		display: block;
		color: var(--dark-text);
		font-weight: 500;
		text-decoration: none;
		transition: all 0.25s ease;
		position: relative;
	}

	.nav-menu a::before {
		display: none;
	}

	.nav-menu a::after {
		content: "";
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 0;
		height: 2px;
		background: linear-gradient(
			90deg,
			var(--primary-green) 0%,
			var(--accent-green) 100%
		);
		transition: width 0.3s ease;
	}

	.nav-menu a:hover {
		background-color: var(--natural-beige);
		color: var(--primary-green);
		padding-left: calc(var(--spacing-lg) + 8px);
	}

	.nav-menu a:hover::after {
		width: 3px;
	}

	.btn-header-cta {
		display: none;
	}

	@keyframes slideDownMenu {
		from {
			opacity: 0;
			transform: translateY(-15px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	.hero {
		padding: 40px 0;
		height: auto;
		min-height: calc(100vh - 40px);
	}

	.hero-wrapper {
		grid-template-columns: 1fr;
		gap: var(--spacing-2xl);
		padding: 40px var(--spacing-md) 20px;
	}

	.hero-badge {
		margin-bottom: var(--spacing-md);
	}

	.hero-title {
		font-size: clamp(1.75rem, 6vw, 2.5rem);
		margin-bottom: var(--spacing-md);
	}

	.hero-subtitle {
		font-size: clamp(0.95rem, 2.2vw, 1rem);
		margin-bottom: var(--spacing-lg);
		max-width: 100%;
	}

	.hero-content {
		justify-content: flex-start;
	}

	.hero-visual {
		height: 300px;
		display: none;
	}

	.hero-cta {
		flex-direction: column;
		gap: var(--spacing-sm);
	}

	.btn-lg {
		width: 100%;
		padding: 12px 24px;
	}

	.hero-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--spacing-lg);
		padding: 40px var(--spacing-md);
	}

	.stat-item {
		gap: 4px;
	}

	.stat-number {
		font-size: 1.5rem;
	}

	.stat-label {
		font-size: 0.8rem;
	}

	/* Mobile USP Section */
	.usp {
		padding: 60px 0;
	}

	.usp-header {
		margin-bottom: 40px;
	}

	.usp-header h2 {
		font-size: 1.75rem;
		margin-bottom: var(--spacing-md);
	}

	.usp-header .section-subtitle {
		font-size: 0.95rem;
	}

	.usp-grid {
		gap: 20px;
	}

	.usp-card {
		padding: 28px 20px;
	}

	.usp-icon-wrapper {
		width: 50px;
		height: 50px;
	}

	.usp-icon {
		width: 28px;
		height: 28px;
	}

	.usp-card h3 {
		font-size: 1.1rem;
	}

	.usp-card p {
		font-size: 0.9rem;
	}

	/* Mobile Features Section */
	.features {
		padding: 80px 0;
	}

	.features-container {
		padding: 0 1.25rem;
	}

	.features-header {
		margin-bottom: 48px;
	}

	.features-label {
		font-size: 0.75rem;
		padding: 6px 16px;
		margin-bottom: 20px;
	}

	.features-title {
		font-size: 2rem;
		letter-spacing: -1px;
		margin-bottom: 20px;
	}

	.features-description {
		font-size: 1rem;
	}

	.features-grid {
		gap: 24px;
		grid-template-columns: 1fr;
	}

	.feature-card-inner {
		padding: 36px 28px;
	}

	.feature-icon-wrapper {
		margin-bottom: 24px;
	}

	.feature-icon {
		width: 64px;
		height: 64px;
		border-radius: 16px;
	}

	.feature-icon svg {
		width: 26px;
		height: 26px;
	}

	.feature-title {
		font-size: 1.2rem;
		margin-bottom: 14px;
	}

	.feature-text {
		font-size: 0.9375rem;
		margin-bottom: 20px;
	}

	.feature-tag {
		font-size: 0.7rem;
		padding: 5px 12px;
	}

	/* Mobile How It Works Section */
	.how-it-works {
		padding: 80px 0;
	}

	.hiw-container {
		padding: 0 1.25rem;
	}

	.hiw-header {
		margin-bottom: 56px;
	}

	.hiw-label {
		font-size: 0.75rem;
		padding: 6px 16px;
		margin-bottom: 20px;
	}

	.hiw-title {
		font-size: 2rem;
		letter-spacing: -1px;
		margin-bottom: 20px;
	}

	.hiw-description {
		font-size: 1rem;
	}

	.hiw-steps {
		gap: 32px;
		grid-template-columns: 1fr;
		margin-bottom: 48px;
	}

	.hiw-step {
		padding: 40px 28px;
	}

	.hiw-step-number {
		left: 28px;
		width: 56px;
		height: 56px;
		font-size: 1.375rem;
		border-radius: 16px;
	}

	.hiw-step-icon {
		width: 72px;
		height: 72px;
		margin: 32px 0 24px;
	}

	.hiw-step-icon svg {
		width: 30px;
		height: 30px;
	}

	.hiw-step-title {
		font-size: 1.25rem;
		margin-bottom: 14px;
	}

	.hiw-step-text {
		font-size: 0.9375rem;
		margin-bottom: 20px;
	}

	.hiw-step-time {
		font-size: 0.8125rem;
		padding: 6px 14px;
	}

	.hiw-cta {
		margin-top: 48px;
	}

	.hiw-cta .btn-primary {
		padding: 14px 36px;
		font-size: 1rem;
		width: 100%;
		max-width: 320px;
	}

	.step-icon svg {
		width: 40px;
		height: 40px;
	}

	.step h3 {
		font-size: 1.1rem;
	}

	.step p {
		font-size: 0.9rem;
	}

	.nav-menu {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		background-color: white;
		flex-direction: column;
		gap: 0;
		box-sizing: border-box;
		max-height: calc(100vh - 100px);
		overflow-y: auto;
		z-index: 100;
	}

	.menu-toggle {
		display: flex;
		z-index: 102;
	}

	.nav-menu.active {
		display: flex;
		animation: slideDownMenu 0.35s
			cubic-bezier(0.4, 0, 0.2, 1) forwards;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	}

	.nav-menu li {
		width: 100%;
		border-bottom: 1px solid #f0f0f0;
	}

	.nav-menu li:last-child {
		border-bottom: none;
	}

	.nav-menu a {
		padding: 16px var(--spacing-lg);
		display: block;
		color: var(--dark-text);
		font-weight: 500;
		text-decoration: none;
		transition: all 0.25s ease;
		position: relative;
	}

	.nav-menu a::after {
		display: none;
	}

	.nav-menu a:hover {
		background-color: var(--natural-beige);
		color: var(--primary-green);
		padding-left: calc(var(--spacing-lg) + 8px);
	}

	@keyframes slideDownMenu {
		from {
			opacity: 0;
			transform: translateY(-15px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	.steps-container {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
		margin-bottom: var(--spacing-lg);
	}

	.step {
		padding: var(--spacing-lg);
		position: relative;
	}

	.step::before {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		width: 4px;
		background: linear-gradient(
			to bottom,
			var(--primary-green),
			var(--accent-green)
		);
		border-radius: 2px;
	}

	.step:last-child::after {
		display: none;
	}

	.step-number {
		width: 40px;
		height: 40px;
		font-size: 1.1rem;
		margin-bottom: var(--spacing-md);
	}

	.step h3 {
		font-size: 1.1rem;
	}

	.step p {
		font-size: 0.9rem;
	}

	.step-visual {
		font-size: 2rem;
		margin-top: var(--spacing-sm);
	}

	.cta-form {
		flex-direction: column;
	}

	.form-group input {
		width: 100%;
	}

	.cta-form .btn-primary {
		width: 100%;
	}
}

/* ==================== Tablet Responsive Design ==================== */

@media (max-width: 1024px) and (min-width: 769px) {
	.nav-container {
		padding: 0 var(--spacing-md);
		gap: var(--spacing-lg);
	}

	.logo {
		font-size: 1rem;
	}

	.logo-icon {
		width: 20px;
		height: 20px;
	}

	.nav-menu {
		gap: var(--spacing-lg);
	}

	.nav-menu a {
		font-size: 0.9rem;
	}

	.btn-header-cta {
		padding: 8px 16px;
		font-size: 0.9rem;
	}

	/* Tablet Hero Section */
	.hero-wrapper {
		grid-template-columns: 1fr;
		gap: var(--spacing-2xl);
		padding: 40px 2rem;
	}

	.hero-visual {
		height: 350px;
		display: flex;
	}

	.hero-cta {
		flex-direction: column;
	}

	.btn-lg {
		width: 100%;
	}

	.hero-stats {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Tablet USP Section */
	.usp {
		padding: 80px 0;
	}

	.usp-header {
		margin-bottom: 50px;
	}

	.usp-header h2 {
		font-size: 2.25rem;
	}

	.usp-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}

	.usp-card {
		padding: 32px 24px;
	}

	/* Tablet How It Works Section */
	.how-it-works {
		padding: 100px 0;
	}

	.hiw-container {
		padding: 0 2rem;
	}

	.hiw-header {
		margin-bottom: 64px;
	}

	.hiw-title {
		font-size: 2.75rem;
	}

	.hiw-description {
		font-size: 1.0625rem;
	}

	.hiw-steps {
		gap: 32px;
	}

	.hiw-step {
		padding: 44px 32px;
	}

	.hiw-step-number {
		width: 60px;
		height: 60px;
		font-size: 1.4rem;
	}

	.hiw-step-icon {
		width: 76px;
		height: 76px;
	}

	.hiw-step-title {
		font-size: 1.4rem;
	}

	/* Tablet Features Section */
	.features {
		padding: 100px 0;
	}

	.features-container {
		padding: 0 2rem;
	}

	.features-header {
		margin-bottom: 64px;
	}

	.features-title {
		font-size: 2.75rem;
	}

	.features-description {
		font-size: 1.0625rem;
	}

	.features-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px;
	}

	.feature-card-inner {
		padding: 40px 32px;
	}

	.feature-icon {
		width: 68px;
		height: 68px;
	}

	.feature-title {
		font-size: 1.3rem;
	}
}

@media (max-width: 480px) {
	:root {
		--spacing-3xl: 3rem;
	}

	html,
	body {
		overflow-x: hidden;
		width: 100%;
	}

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.5rem;
	}

	.hero {
		padding: 1.5rem 1rem 1.5rem 1rem;
		gap: var(--spacing-lg);
		width: 100%;
	}

	.hero-title {
		font-size: clamp(1.5rem, 5vw, 1.75rem);
		margin-bottom: var(--spacing-sm);
		line-height: 1.15;
	}

	.hero-subtitle {
		font-size: clamp(0.9rem, 2vw, 1rem);
		margin-bottom: var(--spacing-md);
	}

	.hero-cta {
		gap: 0.5rem;
		flex-direction: column;
	}

	.btn {
		padding: 0.75rem 1.5rem;
		font-size: 0.95rem;
	}

	.hero-social-proof {
		flex-direction: column;
		gap: var(--spacing-md);
		padding-top: var(--spacing-md);
		border-top: 1px solid #e0e0e0;
	}

	.social-proof-item {
		text-align: center;
	}

	section {
		padding: var(--spacing-2xl) 0;
	}

	.container {
		padding: 0 var(--spacing-md);
	}

	.hero-cta {
		flex-direction: column;
	}

	.usp-grid,
	.features-grid,
	.impact-grid,
	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.feature-card-inner,
	.usp-card,
	.testimonial-card,
	.impact-card {
		padding: var(--spacing-lg);
	}

	.features-title {
		font-size: 1.75rem;
	}

	.features-description {
		font-size: 0.9375rem;
	}

	.feature-card-inner {
		padding: 28px 24px;
	}

	.feature-icon {
		width: 56px;
		height: 56px;
	}

	.feature-icon svg {
		width: 24px;
		height: 24px;
	}

	.feature-title {
		font-size: 1.1rem;
	}

	.feature-text {
		font-size: 0.875rem;
	}

	.hiw-title {
		font-size: 1.75rem;
	}

	.hiw-description {
		font-size: 0.9375rem;
	}

	.hiw-step {
		padding: 32px 24px;
	}

	.hiw-step-number {
		width: 52px;
		height: 52px;
		font-size: 1.25rem;
		left: 24px;
	}

	.hiw-step-icon {
		width: 68px;
		height: 68px;
	}

	.hiw-step-icon svg {
		width: 28px;
		height: 28px;
	}

	.hiw-step-title {
		font-size: 1.125rem;
	}

	.hiw-step-text {
		font-size: 0.875rem;
	}

	.hiw-cta .btn-primary {
		width: 100%;
	}
}

/* Extra small mobile optimization */
@media (max-width: 360px) {
	.logo-text {
		display: none;
	}

	.navbar {
		padding: var(--spacing-sm) 0;
	}

	.nav-container {
		padding: 0 var(--spacing-md);
	}

	h1 {
		font-size: 1.5rem;
	}

	.hero-title {
		font-size: 1.5rem;
		margin-bottom: var(--spacing-sm);
	}

	.hero-subtitle {
		font-size: 0.95rem;
	}

	.nav-menu.active {
		padding: var(--spacing-md);
	}

	.nav-menu a {
		padding: var(--spacing-md) var(--spacing-md);
		margin: 0 calc(var(--spacing-md) * -1);
	}

	/* Extra Small Mobile - How It Works */
	.hiw-step {
		padding: 28px 20px;
	}

	.hiw-step-number {
		width: 48px;
		height: 48px;
		font-size: 1.125rem;
		left: 20px;
	}

	.hiw-step-icon {
		width: 64px;
		height: 64px;
	}

	.hiw-step-title {
		font-size: 1.05rem;
		margin-bottom: 12px;
	}

	.step p {
		font-size: 0.85rem;
	}

	.step-visual {
		font-size: 1.75rem;
		margin-top: var(--spacing-xs);
	}
}
