/* ========================================
   Hero Section - Platform Style
   ======================================== */

   .hero-platform {
	background: linear-gradient(180deg, #006809 0%, #004d07 60%, #003a05 100%);
}

.min-vh-85 {
	min-height: 85vh;
}

.hero-bg-gradient {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(249, 189, 0, 0.08) 0%, transparent 50%);
	pointer-events: none;
}

.hero-grid-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
}

.hero-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(120px);
	pointer-events: none;
}

.hero-glow-1 {
	width: 600px;
	height: 600px;
	background: rgba(249, 189, 0, 0.15);
	top: -200px;
	right: 10%;
}

.hero-glow-2 {
	width: 400px;
	height: 400px;
	background: rgba(0, 200, 80, 0.1);
	bottom: 0;
	left: -100px;
}

/* Hero Badge */
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 18px;
	background: rgba(249, 189, 0, 0.15);
	border: 1px solid rgba(249, 189, 0, 0.3);
	border-radius: 100px;
	color: #f9bd00;
	font-size: 14px;
	font-weight: 600;
}

.hero-badge-dot {
	width: 8px;
	height: 8px;
	background: #f9bd00;
	border-radius: 50%;
	animation: heroPulse 2s ease-in-out infinite;
}

@keyframes heroPulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(1.2); }
}

/* Hero Title */
.hero-title {
	font-size: 56px;
	font-weight: 700;
	line-height: 1.15;
	color: #fff;
	margin: 0 0 24px 0;
}

.hero-title-gradient {
	background: linear-gradient(135deg, #f9bd00 0%, #ffe066 50%, #f9bd00 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 18px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.8);
	margin: 0 0 32px 0;
	max-width: 480px;
}

/* Hero CTA */
.hero-cta-group {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.hero-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 32px;
	background: linear-gradient(135deg, #f9bd00 0%, #e5ad00 100%);
	color: #000;
	font-size: 16px;
	font-weight: 600;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(249, 189, 0, 0.3);
}

.hero-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(249, 189, 0, 0.4);
	color: #000;
}

.hero-btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 28px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.3);
	color: #fff;
}

/* Hero Trust */
.hero-trust {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.hero-trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	font-weight: 500;
}

.hero-trust-item svg {
	color: #f9bd00;
}

/* Hero Visual */
.hero-visual {
	position: relative;
	padding: 40px;
}

.hero-image-wrap {
	position: absolute;
	bottom: 0;
	right: 9%;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	pointer-events: none;
}

.hero-main-image {
	width: 100%;
	max-width: 45%;
	height: auto;
	object-fit: contain;
	object-position: bottom right;
}

.hero-dashboard {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 
		0 40px 80px rgba(0, 0, 0, 0.3),
		0 0 0 1px rgba(255, 255, 255, 0.1);
	animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-15px); }
}

.hero-dashboard-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 20px;
	background: #f5f5f5;
	border-bottom: 1px solid #eee;
}

.hero-dashboard-dots {
	display: flex;
	gap: 6px;
}

.hero-dashboard-dots span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ddd;
}

.hero-dashboard-dots span:nth-child(1) { background: #ff5f57; }
.hero-dashboard-dots span:nth-child(2) { background: #febc2e; }
.hero-dashboard-dots span:nth-child(3) { background: #28c840; }

.hero-dashboard-title {
	font-size: 13px;
	font-weight: 500;
	color: #666;
}

.hero-dashboard-content {
	padding: 20px;
}

.hero-tour-preview {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 16px;
}

.hero-tour-preview img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.hero-tour-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.hero-dashboard:hover .hero-tour-overlay {
	opacity: 1;
}

.hero-tour-play {
	width: 60px;
	height: 60px;
	background: rgba(249, 189, 0, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: 4px;
}

.hero-dashboard-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.hero-stat-card {
	background: linear-gradient(135deg, #006809 0%, #008810 100%);
	padding: 16px;
	border-radius: 10px;
	text-align: center;
}

.hero-stat-number {
	display: block;
	font-size: 28px;
	font-weight: 700;
	color: #fff;
}

.hero-stat-label {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Hero Floating Elements */
.hero-float {
	position: absolute;
	width: 56px;
	height: 56px;
	background: #fff;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	color: #006809;
}

.hero-float-1 {
	top: 20px;
	right: 0;
	animation: heroFloatItem 5s ease-in-out infinite;
}

.hero-float-2 {
	bottom: 80px;
	left: 0;
	animation: heroFloatItem 5s ease-in-out infinite 1s;
	color: #f9bd00;
}

.hero-float-3 {
	top: 50%;
	right: -20px;
	animation: heroFloatItem 5s ease-in-out infinite 2s;
}

@keyframes heroFloatItem {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-10px) rotate(5deg); }
}

/* Value Props Strip */
/* Hero Audience Text */
.hero-audience {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.6;
	margin-top: 16px;
}

.hero-subtitle-note {
	font-size: 15px;
	font-weight: 600;
	color: #f9bd00;
	margin: 0 0 28px 0;
}

/* Stats Section */
.stats-section {
	background: #fff;
	border-bottom: 1px solid #eee;
	padding: 40px 0;
}

.stats-header {
	text-align: center;
	margin-bottom: 28px;
}

.stats-header h3 {
	font-size: 22px;
	font-weight: 600;
	color: #111;
	margin: 0;
}

.stats-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.stats-item {
	display: flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #f8fdf8 0%, #fff 100%);
	border: 1px solid rgba(0, 104, 9, 0.15);
	border-radius: 50px;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 500;
	color: #111;
	transition: all 0.3s ease;
}

.stats-item:hover {
	border-color: rgba(0, 104, 9, 0.3);
	box-shadow: 0 4px 15px rgba(0, 104, 9, 0.1);
}

.stats-icon {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #006809;
}

/* Why Choose Section */
.why-choose-section {
	background: #f8f9fa !important;
}

.why-badge {
	display: inline-flex;
	align-items: center;
	background: rgba(0, 104, 9, 0.1);
	border: 1px solid rgba(0, 104, 9, 0.2);
	padding: 8px 16px;
	border-radius: 50px;
	color: #006809;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
}

.why-title {
	font-size: 38px;
	font-weight: 700;
	color: #111;
	line-height: 1.25;
	margin-bottom: 16px;
}

.why-highlight {
	color: #006809;
}

.why-subtitle {
	font-size: 16px;
	color: #666;
	line-height: 1.7;
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.why-card {
	display: flex;
	align-items: center;
	gap: 14px;
	background: #fff;
	border: 1px solid rgba(0, 104, 9, 0.1);
	border-radius: 12px;
	padding: 18px 20px;
	transition: all 0.3s ease;
}

.why-card:hover {
	border-color: rgba(0, 104, 9, 0.25);
	box-shadow: 0 6px 20px rgba(0, 104, 9, 0.08);
	transform: translateY(-2px);
}

.why-card-icon {
	width: 44px;
	height: 44px;
	min-width: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #006809 0%, #008810 100%);
	color: #fff;
	border-radius: 10px;
}

.why-card-icon.why-icon-alt {
	background: linear-gradient(135deg, #f9bd00 0%, #ffe066 100%);
	color: #000;
}

.why-card span {
	font-size: 14px;
	font-weight: 500;
	color: #222;
	line-height: 1.4;
}

@media (max-width: 991px) {
	.why-title {
		font-size: 32px;
	}
	
	.why-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.stats-section {
		padding: 30px 0;
	}
	
	.stats-header h3 {
		font-size: 18px;
	}
	
	.stats-grid {
		flex-direction: column;
		align-items: center;
	}
	
	.stats-item {
		width: 100%;
		max-width: 320px;
		justify-content: center;
	}
	
	.why-title {
		font-size: 28px;
	}
}

.value-props-strip {
	background: #fff;
	border-bottom: 1px solid #eee;
	padding: 24px 0;
}

.value-props-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.value-prop-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 20px;
	background: #f8faf8;
	border-radius: 12px;
	transition: all 0.3s ease;
}

.value-prop-item:hover {
	background: #f0f7f0;
	transform: translateY(-2px);
}

.value-prop-icon {
	width: 48px;
	height: 48px;
	min-width: 48px;
	background: linear-gradient(135deg, #006809 0%, #008810 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.value-prop-text {
	display: flex;
	flex-direction: column;
}

.value-prop-title {
	font-size: 15px;
	font-weight: 600;
	color: #1a1a1a;
}

.value-prop-desc {
	font-size: 13px;
	color: #666;
}

/* Responsive Hero */
@media (max-width: 1199px) {
	.hero-title {
		font-size: 46px;
	}
}

@media (max-width: 991px) {
	.hero-platform {
		min-height: auto;
	}
	
	.min-vh-85 {
		min-height: auto;
		padding: 80px 0 60px;
	}
	
	.hero-title {
		font-size: 38px;
	}
	
	.hero-image-wrap {
		position: relative;
		width: 100%;
		margin-top: 40px;
	}
	
	.hero-main-image {
		max-width: 100%;
	}
	
	.value-props-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.hero-title {
		font-size: 32px;
	}
	
	.hero-subtitle {
		font-size: 16px;
	}
	
	.hero-cta-group {
		flex-direction: column;
	}
	
	.hero-btn-primary,
	.hero-btn-secondary {
		justify-content: center;
	}
	
	.hero-trust {
		flex-direction: column;
		gap: 12px;
	}
	
	.value-props-grid {
		grid-template-columns: 1fr;
	}
	
	.hero-glow {
		display: none;
	}
}

/* ========================================
   How It Works Section
   ======================================== */

.how-it-works-section {
	background: #fff;
}

.hiw-badge {
	display: inline-block;
	padding: 6px 16px;
	background: rgba(0, 104, 9, 0.08);
	border-radius: 100px;
	color: #006809;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.hiw-title {
	font-size: 42px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 16px 0;
}

.hiw-highlight {
	color: #006809;
}

.hiw-subtitle {
	font-size: 18px;
	color: #666;
	margin: 0;
}

.hiw-timeline {
	position: relative;
	padding-top: 40px;
}

.hiw-timeline-line {
	position: absolute;
	top: 100px;
	left: 12.5%;
	right: 12.5%;
	height: 2px;
	background: linear-gradient(90deg, #006809 0%, #f9bd00 50%, #006809 100%);
	display: none;
}

@media (min-width: 992px) {
	.hiw-timeline-line {
		display: block;
	}
}

.hiw-step {
	text-align: center;
	padding: 24px;
	background: #f8faf8;
	border-radius: 20px;
	transition: all 0.3s ease;
	height: 100%;
}

.hiw-step:hover {
	background: #fff;
	box-shadow: 0 10px 40px rgba(0, 104, 9, 0.1);
	transform: translateY(-5px);
}

.hiw-step-number {
	font-size: 14px;
	font-weight: 700;
	color: #006809;
	letter-spacing: 1px;
	margin-bottom: 16px;
}

.hiw-step-icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, #006809 0%, #008810 100%);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: all 0.3s ease;
}

.hiw-step:hover .hiw-step-icon {
	transform: scale(1.1) rotate(5deg);
}

.hiw-icon-yellow {
	background: linear-gradient(135deg, #f9bd00 0%, #e5ad00 100%);
}

.hiw-step-title {
	font-size: 20px;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0 0 10px 0;
}

.hiw-step-desc {
	font-size: 15px;
	color: #666;
	margin: 0;
	line-height: 1.6;
}

/* ========================================
   Industries Section
   ======================================== */

.industries-section {
	background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.ind-badge {
	display: inline-block;
	padding: 6px 16px;
	background: rgba(249, 189, 0, 0.15);
	border-radius: 100px;
	color: #b38600;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.ind-title {
	font-size: 42px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 16px 0;
}

.ind-highlight {
	color: #006809;
}

.ind-subtitle {
	font-size: 18px;
	color: #666;
	margin: 0;
}

.industries-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 20px;
}

.industry-card {
	background: #fff;
	padding: 32px 28px;
	border-radius: 20px;
	border: 1px solid #eee;
	transition: all 0.3s ease;
	text-align: center;
}

.industry-card:hover {
	border-color: #006809;
	box-shadow: 0 15px 40px rgba(0, 104, 9, 0.1);
	transform: translateY(-5px);
}

.industry-icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, #006809 0%, #008810 100%);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 104, 9, 0.2);
}

.industry-icon img {
	width: 36px;
	height: 36px;
	filter: brightness(0) invert(1);
}

.industry-icon-alt {
	background: linear-gradient(135deg, #f9bd00 0%, #e5ad00 100%);
	box-shadow: 0 4px 15px rgba(249, 189, 0, 0.2);
}

.industry-icon-alt img {
	filter: brightness(0);
}

.industry-card:hover .industry-icon {
	transform: scale(1.1);
}

.industry-card h3 {
	font-size: 18px;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0 0 10px 0;
}

.industry-card p {
	font-size: 14px;
	color: #666;
	margin: 0;
	line-height: 1.6;
}

@media (max-width: 991px) {
	.industries-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.hiw-title,
	.ind-title {
		font-size: 32px;
	}
}

@media (max-width: 767px) {
	.industries-grid {
		grid-template-columns: 1fr;
	}
	
	.hiw-title,
	.ind-title {
		font-size: 28px;
	}
}

/* ========================================
   Core Features Section
   ======================================== */

.core-features-section {
	background: linear-gradient(180deg, #006809 0%, #004d07 100%);
}

.cf-bg-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 40px 40px;
	pointer-events: none;
}

.cf-glow-1 {
	position: absolute;
	width: 500px;
	height: 500px;
	background: rgba(249, 189, 0, 0.1);
	border-radius: 50%;
	filter: blur(100px);
	top: -200px;
	right: -100px;
}

.cf-glow-2 {
	position: absolute;
	width: 400px;
	height: 400px;
	background: rgba(0, 200, 80, 0.1);
	border-radius: 50%;
	filter: blur(100px);
	bottom: -150px;
	left: -100px;
}

.cf-badge {
	display: inline-block;
	padding: 6px 16px;
	background: rgba(249, 189, 0, 0.2);
	border-radius: 100px;
	color: #f9bd00;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.cf-title {
	font-size: 42px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 16px 0;
}

.cf-highlight {
	color: #f9bd00;
}

.cf-subtitle {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
}

.cf-card {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 32px;
	height: 100%;
	transition: all 0.3s ease;
}

.cf-card:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(249, 189, 0, 0.3);
	transform: translateY(-5px);
}

.cf-card-icon {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, rgba(249, 189, 0, 0.2) 0%, rgba(249, 189, 0, 0.1) 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

.cf-card-icon img {
	width: 36px;
	height: 36px;
}

.cf-icon-alt {
	background: linear-gradient(135deg, rgba(0, 200, 80, 0.2) 0%, rgba(0, 200, 80, 0.1) 100%);
}

.cf-card:hover .cf-card-icon {
	transform: scale(1.1) rotate(5deg);
}

.cf-card-title {
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	margin: 0 0 16px 0;
}

.cf-card-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.cf-card-list li {
	position: relative;
	padding-left: 20px;
	color: rgba(255, 255, 255, 0.75);
	font-size: 15px;
	line-height: 1.8;
}

.cf-card-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 6px;
	height: 6px;
	background: #f9bd00;
	border-radius: 50%;
}

.cf-card-wide {
	display: flex;
	align-items: flex-start;
	gap: 24px;
}

.cf-card-wide .cf-card-icon {
	margin-bottom: 0;
	min-width: 64px;
}

.cf-card-wide .cf-card-content {
	flex: 1;
}

.cf-list-inline {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
}

.cf-list-inline li {
	padding-left: 16px;
}

.cf-list-inline li::before {
	top: 8px;
}

@media (max-width: 991px) {
	.cf-title {
		font-size: 32px;
	}
	
	.cf-card-wide {
		flex-direction: column;
	}
	
	.cf-list-inline {
		flex-direction: column;
		gap: 4px;
	}
}

@media (max-width: 767px) {
	.cf-title {
		font-size: 28px;
	}
}

/* ========================================
   Future Roadmap Section
   ======================================== */

.roadmap-section {
	background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.rm-badge {
	display: inline-block;
	padding: 6px 16px;
	background: linear-gradient(135deg, rgba(0, 104, 9, 0.1) 0%, rgba(249, 189, 0, 0.1) 100%);
	border-radius: 100px;
	color: #006809;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.rm-title {
	font-size: 42px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 16px 0;
}

.rm-highlight {
	background: linear-gradient(135deg, #006809 0%, #00c850 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.rm-subtitle {
	font-size: 18px;
	color: #666;
	margin: 0;
}

.rm-card {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 24px;
	padding: 32px;
	height: 100%;
	text-align: center;
	position: relative;
	transition: all 0.3s ease;
	overflow: hidden;
}

.rm-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #006809, #00c850);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.rm-card:hover::before {
	opacity: 1;
}

.rm-card:hover {
	border-color: #006809;
	box-shadow: 0 20px 50px rgba(0, 104, 9, 0.1);
	transform: translateY(-5px);
}

.rm-card-alt::before {
	background: linear-gradient(90deg, #f9bd00, #ffe066);
}

.rm-card-alt:hover {
	border-color: #f9bd00;
}

.rm-card-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	padding: 4px 12px;
	background: rgba(0, 104, 9, 0.1);
	color: #006809;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: 100px;
}

.rm-badge-planned {
	background: rgba(249, 189, 0, 0.15);
	color: #b38600;
}

.rm-card-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 24px;
	background: linear-gradient(135deg, #006809 0%, #008810 100%);
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 104, 9, 0.2);
}

.rm-card-alt .rm-card-icon {
	background: linear-gradient(135deg, #f9bd00 0%, #e5ad00 100%);
	box-shadow: 0 4px 15px rgba(249, 189, 0, 0.2);
}

.rm-card-icon img {
	width: 40px;
	height: 40px;
	filter: brightness(0) invert(1);
}

.rm-card-alt .rm-card-icon img {
	filter: brightness(0);
}

.rm-card:hover .rm-card-icon {
	transform: scale(1.1) rotate(5deg);
	border-color: #006809;
}

.rm-card h3 {
	font-size: 20px;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0 0 12px 0;
}

.rm-card p {
	font-size: 15px;
	color: #666;
	margin: 0;
	line-height: 1.6;
}

@media (max-width: 991px) {
	.rm-title {
		font-size: 32px;
	}
}

@media (max-width: 767px) {
	.rm-title {
		font-size: 28px;
	}
}

/* ========================================
   Testimonials Section
   ======================================== */

.testimonials-section {
	background: linear-gradient(180deg, #006809 0%, #004d07 100%);
}

.ts-bg-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
	background-size: 50px 50px;
	pointer-events: none;
}

.ts-glow-1 {
	position: absolute;
	width: 500px;
	height: 500px;
	background: rgba(249, 189, 0, 0.08);
	border-radius: 50%;
	filter: blur(100px);
	top: -200px;
	left: 10%;
}

.ts-glow-2 {
	position: absolute;
	width: 400px;
	height: 400px;
	background: rgba(0, 200, 80, 0.08);
	border-radius: 50%;
	filter: blur(100px);
	bottom: -100px;
	right: 10%;
}

.ts-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	background: rgba(249, 189, 0, 0.2);
	border-radius: 100px;
	color: #f9bd00;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.ts-title {
	font-size: 42px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 16px 0;
}

.ts-highlight {
	color: #f9bd00;
}

.ts-subtitle {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
}

.ts-card {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	padding: 32px;
	height: 100%;
	transition: all 0.3s ease;
	position: relative;
}

.ts-card:hover {
	background: rgba(255, 255, 255, 0.12);
	transform: translateY(-5px);
	border-color: rgba(249, 189, 0, 0.3);
}

.ts-card-featured {
	background: rgba(249, 189, 0, 0.15);
	border-color: rgba(249, 189, 0, 0.3);
}

.ts-card-quote {
	color: rgba(249, 189, 0, 0.4);
	margin-bottom: 16px;
}

.ts-card-stars {
	display: flex;
	gap: 4px;
	margin-bottom: 20px;
}

.ts-card-text {
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 24px 0;
}

.ts-card-author {
	display: flex;
	align-items: center;
	gap: 14px;
}

.ts-author-avatar {
	width: 48px;
	height: 48px;
	min-width: 48px;
	background: linear-gradient(135deg, #006809 0%, #00c850 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ts-author-avatar span {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
}

.ts-avatar-alt {
	background: linear-gradient(135deg, #f9bd00 0%, #ffe066 100%);
}

.ts-avatar-alt span {
	color: #000;
}

.ts-author-info {
	display: flex;
	flex-direction: column;
}

.ts-author-name {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
}

.ts-author-role {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 991px) {
	.ts-title {
		font-size: 32px;
	}
}

@media (max-width: 767px) {
	.ts-title {
		font-size: 28px;
	}
}

/* ========================================
   Blog Section
   ======================================== */

.blog-section {
	background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.blog-header-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 24px;
	margin-bottom: 12px;
}

.blog-header-left {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.blog-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	background: rgba(0, 104, 9, 0.08);
	border-radius: 100px;
	color: #006809;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	width: fit-content;
}

.blog-title {
	font-size: 42px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0;
}

.blog-highlight {
	color: #006809;
}

.blog-subtitle {
	font-size: 18px;
	color: #666;
	margin: 0;
}

@media (max-width: 767px) {
	.blog-header-top {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
}

.blog-view-all {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	background: linear-gradient(135deg, #f9bd00 0%, #e5ad00 100%);
	color: #000;
	font-size: 15px;
	font-weight: 600;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(249, 189, 0, 0.25);
}

.blog-view-all:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(249, 189, 0, 0.35);
	color: #000;
}

.blog-card {
	display: block;
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	text-decoration: none;
	transition: all 0.3s ease;
	height: 100%;
	border: 1px solid #eee;
}

.blog-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
	border-color: #006809;
}

.blog-card-image {
	position: relative;
	height: 200px;
	overflow: hidden;
}

.blog-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
	transform: scale(1.08);
}

.blog-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.blog-card:hover .blog-card-overlay {
	opacity: 1;
}

.blog-card-content {
	padding: 24px;
	position: relative;
}

.blog-card-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #888;
	margin-bottom: 12px;
}

.blog-meta-dot {
	width: 4px;
	height: 4px;
	background: #ccc;
	border-radius: 50%;
}

.blog-card-title {
	font-size: 18px;
	font-weight: 600;
	color: #1a1a1a;
	line-height: 1.5;
	margin: 0;
	transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
	color: #006809;
}

.blog-card-arrow {
	position: absolute;
	bottom: 24px;
	right: 24px;
	width: 40px;
	height: 40px;
	background: #f5f5f5;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	transition: all 0.3s ease;
}

.blog-card:hover .blog-card-arrow {
	background: #006809;
	color: #fff;
}

@media (max-width: 991px) {
	.blog-title {
		font-size: 32px;
	}
}

@media (max-width: 767px) {
	.blog-title {
		font-size: 28px;
	}
	
	.blog-card-arrow {
		display: none;
	}
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
	background: linear-gradient(135deg, #006809 0%, #004d07 50%, #003a05 100%);
	min-height: 500px;
	display: flex;
	align-items: center;
}

.cta-bg-gradient {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(249, 189, 0, 0.1) 0%, transparent 60%);
	pointer-events: none;
}

.cta-grid-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 50px 50px;
	pointer-events: none;
}

.cta-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	pointer-events: none;
}

.cta-glow-1 {
	width: 500px;
	height: 500px;
	background: rgba(249, 189, 0, 0.15);
	top: -150px;
	left: -100px;
}

.cta-glow-2 {
	width: 400px;
	height: 400px;
	background: rgba(0, 200, 80, 0.12);
	bottom: -100px;
	right: -50px;
}

/* CTA Floating Shapes */
.cta-shape {
	position: absolute;
	width: 64px;
	height: 64px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.6);
	z-index: 1;
}

.cta-shape-1 {
	top: 15%;
	left: 8%;
	animation: ctaFloat 8s ease-in-out infinite;
}

.cta-shape-2 {
	bottom: 20%;
	right: 10%;
	animation: ctaFloat 8s ease-in-out infinite 2s;
}

.cta-shape-3 {
	top: 25%;
	right: 15%;
	color: #f9bd00;
	animation: ctaFloat 8s ease-in-out infinite 4s;
}

@keyframes ctaFloat {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	25% { transform: translateY(-15px) rotate(5deg); }
	75% { transform: translateY(10px) rotate(-3deg); }
}

/* CTA Content */
.cta-content {
	max-width: 700px;
	margin: 0 auto;
}

.cta-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	background: rgba(249, 189, 0, 0.2);
	border: 1px solid rgba(249, 189, 0, 0.3);
	border-radius: 100px;
	color: #f9bd00;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 28px;
}

.cta-badge-pulse {
	width: 10px;
	height: 10px;
	background: #f9bd00;
	border-radius: 50%;
	animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
	0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(249, 189, 0, 0.4); }
	50% { opacity: 0.8; transform: scale(1.1); box-shadow: 0 0 0 8px rgba(249, 189, 0, 0); }
}

.cta-title {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	margin: 0 0 20px 0;
}

.cta-title-gradient {
	background: linear-gradient(135deg, #f9bd00 0%, #ffe066 50%, #f9bd00 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.cta-subtitle {
	font-size: 18px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.75);
	margin: 0 0 36px 0;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

/* CTA Buttons */
.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.cta-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 36px;
	background: linear-gradient(135deg, #f9bd00 0%, #e5ad00 100%);
	color: #000;
	font-size: 16px;
	font-weight: 600;
	border-radius: 14px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 6px 25px rgba(249, 189, 0, 0.35);
}

.cta-btn-primary:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 35px rgba(249, 189, 0, 0.45);
	color: #000;
}

.cta-btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 18px 32px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	border-radius: 14px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.4);
	color: #fff;
	transform: translateY(-4px);
}

/* CTA Trust Line */
.cta-trust {
	display: flex;
	justify-content: center;
	gap: 32px;
	flex-wrap: wrap;
}

.cta-trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	font-weight: 500;
}

.cta-trust-item svg {
	color: #00c850;
}

/* CTA Responsive */
@media (max-width: 991px) {
	.cta-title {
		font-size: 38px;
	}
	
	.cta-shape {
		display: none;
	}
}

@media (max-width: 767px) {
	.cta-title {
		font-size: 30px;
	}
	
	.cta-subtitle {
		font-size: 16px;
	}
	
	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	.cta-btn-primary,
	.cta-btn-secondary {
		width: 100%;
		justify-content: center;
	}
	
	.cta-trust {
		flex-direction: column;
		gap: 12px;
		align-items: center;
	}
	
	.cta-glow {
		display: none;
	}
}

/* ========================================
   Footer Modern
   ======================================== */

.footer-modern {
	background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
}

.footer-main {
	padding: 80px 0 60px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 48px;
}

/* Footer Brand */
.footer-brand {
	max-width: 320px;
}

.footer-logo {
	display: inline-block;
	margin-bottom: 20px;
}

.footer-logo img {
	height: 40px;
	width: auto;
}

.footer-tagline {
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.5);
	margin: 0 0 28px 0;
}

/* Footer Social */
.footer-social {
	display: flex;
	gap: 12px;
}

.footer-social-link {
	width: 42px;
	height: 42px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.6);
	transition: all 0.3s ease;
}

.footer-social-link:hover {
	background: #f9bd00;
	border-color: #f9bd00;
	color: #000;
	transform: translateY(-3px);
}

/* Footer Links */
.footer-links-col {
	display: flex;
	flex-direction: column;
}

.footer-links-title {
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin: 0 0 20px 0;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.footer-links li a {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
}

.footer-links li a:hover {
	color: #f9bd00;
	transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
	padding: 24px 0;
}

.footer-bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-copyright {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.4);
	margin: 0;
}

.footer-bottom-links {
	display: flex;
	align-items: center;
	gap: 16px;
}

.footer-bottom-links a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.4);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
	color: #f9bd00;
}

.footer-dot {
	width: 4px;
	height: 4px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
}

/* Footer Responsive */
@media (max-width: 991px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
	
	.footer-brand {
		grid-column: span 2;
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	.footer-main {
		padding: 60px 0 40px;
	}
	
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	
	.footer-brand {
		grid-column: span 1;
		text-align: center;
	}
	
	.footer-social {
		justify-content: center;
	}
	
	.footer-links-col {
		text-align: center;
	}
	
	.footer-links li a:hover {
		transform: none;
	}
	
	.footer-bottom-inner {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}
}

.btn-login{
	border:1px solid #f9bd00;
	color: #f9bd00;
}

.btn-login:hover,
.btn-login:focus,
.btn-login:active
{
	background: #f9bd00 !important;
	color:#000 !important;
	border-color:#f9bd00 !important;
}

.btn-signup{
	background: #f9bd00;
	color:#000;
}

.btn-signup:hover,
.btn-signup:focus,
.btn-signup:active
{
	background: #f9bd00 !important;
	color:#000 !important;
	border-color:#f9bd00 !important;
}

.inline-flex{
	display: inline-flex !important;
}

.footer-link-v2 li a{
	color: #adb5bd !important;
}

.text-black{
	color: #212529 !important;
}

.footer-link-v2 li a:hover{
	color: #FFF !important;
}

.text-yellow {
    color: #f9bd00 !important;
}

.border-yellow {
    --bs-border-opacity: 1;
    border-color: rgba(249, 189, 0, var(--bs-border-opacity)) !important;
}

.bg-yellow {
    --bs-bg-opacity: 1;
    background-color: rgba(249, 189, 0, var(--bs-bg-opacity)) !important;
}

.bg-white{
	--bs-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--bs-bg-opacity)) !important;
    background: rgba(255, 255, 255, var(--bs-bg-opacity)) !important;
}

.bg-gradient-yellow {
    background: linear-gradient(to bottom, #f9bd00, #f9bd00);
}

.light-green-gold-banner {
  background: radial-gradient(circle farthest-corner at 130% 110%, #fff 15%, rgba(255, 255, 255, 0) 37%),
    linear-gradient(50deg, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0.8) 93%),
    linear-gradient(100deg, #fff 12%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(0deg, #fff, rgba(255, 255, 255, 0) 85%),
    radial-gradient(circle at -20% -40%, rgba(255, 255, 255, 0) 8%, rgba(0, 104, 9, 0.4) 33%, rgba(255, 255, 255, 0) 68%),
    repeating-linear-gradient(210deg, rgba(255, 255, 255, 0), rgba(245, 195, 36, 0.3) 18%, rgba(255, 255, 255, 0) 50%),
    repeating-linear-gradient(195deg, rgba(255, 255, 255, 0) 55%, rgba(0, 104, 9, 0.3) 66%, rgba(255, 255, 255, 0) 85%);
}

.light-gold-green-banner {
  background: radial-gradient(circle farthest-corner at 130% 110%, #fff 15%, rgba(255, 255, 255, 0) 37%),
    linear-gradient(50deg, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0.8) 93%),
    linear-gradient(100deg, #fff 12%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(0deg, #fff, rgba(255, 255, 255, 0) 85%),
    radial-gradient(circle at -20% -40%, rgba(255, 255, 255, 0) 8%, rgba(245, 195, 36, 0.4) 33%, rgba(255, 255, 255, 0) 68%),
    repeating-linear-gradient(210deg, rgba(255, 255, 255, 0), rgba(0, 104, 9, 0.3) 18%, rgba(255, 255, 255, 0) 50%),
    repeating-linear-gradient(195deg, rgba(255, 255, 255, 0) 55%, rgba(245, 195, 36, 0.3) 66%, rgba(255, 255, 255, 0) 85%);
}

.other-pages .navbar.navbar-light .navbar-nav .nav-item .nav-link{
	color : #212529 !important;
}

.bg-theme {
    background-color: #006809 !important;
}

.bg-theme-card{
	background-color: #007a0b !important;
}

.bg-theme-card:hover{
	border-color: rgba(0, 200, 80, 0.4) !important;
}





.btn-hover-bg-darken-yellow {
    position: relative;
    overflow: hidden;
}
.btn-hover-bg-darken-yellow span,
.btn-hover-bg-darken-yellow svg {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}
.btn-hover-bg-darken-yellow:hover svg {
    transform: translateX(5px);
}
.btn-hover-bg-darken-yellow:after {
    content: "";
    position: absolute;
    background: rgb(199, 151, 0);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s;
}
.btn-hover-bg-darken-yellow:before {
    content: "";
    position: absolute;
    background: rgb(199, 151, 0);
    width: 110%;
    height: 0;
    padding-bottom: 110%;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate3d(-50%, -50%, 0) scale3d(0, 0, 1);
}
.btn-hover-bg-darken-yellow:hover:before {
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
    transform: translate3d(-50%, -50%, 0) scale3d(1, 1, 1);
}
.btn-hover-bg-darken-yellow:hover:after {
    opacity: 1;
    transition-duration: 10ms;
    transition-delay: 0.3s;
}

.pb-50{
	padding-bottom:50px !important;
}
.pb-75{
	padding-bottom:75px !important;
}

.border-primary{
	border-color: #006809 !important;
}

.bg-primary:disabled, .bg-primary.disabled{
	color: #FFFFFF !important;
}


form .bg-primary:hover{
	color: #FFFFFF !important;
}

.header-wrapper.scroll-header{
	background-color: rgba(255, 255, 255, 0.8) !important;
}

.text-green{
	color: #006809 !important;
}

.header-wrapper.other-pages{
	border-bottom: 1px solid #e9ecef !important;
}

.py-50 {
    padding-top: 3.13rem;
    padding-bottom: 3.44rem;
}

.pt-50 {
    padding-top: 3.13rem;
}

.progress-icon-direction.bottom:after{
	bottom: 121px !important;
}

.mt-4d{
	margin-top: 3rem !important;
}

.bg-gradient-future-1{
	background: #006a0d;
	border: 5px solid transparent !important;
}

.bg-gradient-future-2{
	background: #006a0d;
	border: 5px solid transparent !important;
}

.bg-gradient-future-3{
	background: #006a0d;
	border: 5px solid transparent !important;
}

.bg-gradient-future-1 h3, 
.bg-gradient-future-1 svg {
  color: #ffffff;
  stroke: #ffffff;
}

.bg-gradient-future-2 h3, 
.bg-gradient-future-2 svg {
  color: #ffffff;
  stroke: #ffffff;
}

.bg-gradient-future-3 h3, 
.bg-gradient-future-3 svg {
  color: #ffffff;
  stroke: #ffffff;
}

.bg-gradient-future-1:hover,
.bg-gradient-future-2:hover,
.bg-gradient-future-3:hover{
	border-color: rgba(0, 200, 80, 0.4) !important;
}


.social-vertical {
	position: fixed;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 12px;
	z-index: 9999;
  }

  .social-vertical a {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: #fff;
	opacity: 0;
	background: #3a3a3a; /* default */
	transition: transform 0.6s ease, opacity 0.6s ease;
	transform: translateX(-60px);
	transition-delay: var(--delay, 0s);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
	animation-fill-mode: forwards;
  }

  .social-vertical a:hover {
	transform: scale(1.1);
	box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  }
  
  .social-vertical a svg {
		width: 1.2rem;
		height: 1.2rem;
		color: #fff;
	}
	
	.social-block{
		display: flex;
		align-items: center;
	}
	
	.social-block a label{
		position: absolute;
		left: 55px;
		top: 50%;
		transform: translateY(-50%) translateX(-10px);
		opacity: 0;
		white-space: nowrap;
		background: #3a3a3a;
		color: #fff;
		padding: 3px 10px;
		border-radius: 6px;
		font-size: 14px;
		transition: all 0.3s ease;
		pointer-events: none;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
	}
	.social-block a:hover label {
		opacity: 1;
		transform: translateY(-50%) translateX(0);
	  }
	  
	  .social-block.show a {
			transform: translateX(0);
			opacity: 1;
			transition: slideIn all 0.6s ease;
		  }
		  
	  @keyframes slideIn {
		  to {
			transform: translateX(0);
			opacity: 1;
		  }
		}

		.social-block.hide a {
		  animation: slideOut 0.4s ease forwards;
		}

		@keyframes slideOut {
		  to {
			transform: translateX(-60px);
			opacity: 0;
		  }
		}

/* ========================================
   User Features - Modern Bento Grid Design
   ======================================== */

.user-features-wrap {
	background: linear-gradient(180deg, #f8faf8 0%, #ffffff 50%, #f0f7f0 100%);
}

/* Animated Background Elements */
.uf-bg-gradient {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 104, 9, 0.06) 0%, transparent 50%),
		radial-gradient(ellipse 60% 40% at 80% 60%, rgba(249, 189, 0, 0.08) 0%, transparent 50%);
	pointer-events: none;
}

.uf-floating-shape {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.4;
	pointer-events: none;
	animation: ufFloat 20s ease-in-out infinite;
}

.uf-shape-1 {
	width: 400px;
	height: 400px;
	background: linear-gradient(135deg, rgba(0, 104, 9, 0.15) 0%, rgba(0, 200, 80, 0.1) 100%);
	top: 10%;
	left: -10%;
	animation-delay: 0s;
}

.uf-shape-2 {
	width: 300px;
	height: 300px;
	background: linear-gradient(135deg, rgba(249, 189, 0, 0.2) 0%, rgba(255, 220, 100, 0.1) 100%);
	top: 60%;
	right: -5%;
	animation-delay: -7s;
}

.uf-shape-3 {
	width: 250px;
	height: 250px;
	background: linear-gradient(135deg, rgba(0, 104, 9, 0.1) 0%, rgba(0, 150, 50, 0.08) 100%);
	bottom: 10%;
	left: 30%;
	animation-delay: -14s;
}

@keyframes ufFloat {
	0%, 100% { transform: translate(0, 0) rotate(0deg); }
	25% { transform: translate(30px, -30px) rotate(5deg); }
	50% { transform: translate(-20px, 20px) rotate(-5deg); }
	75% { transform: translate(20px, 10px) rotate(3deg); }
}

/* Badge */
.uf-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: rgba(0, 104, 9, 0.08);
	border: 1px solid rgba(0, 104, 9, 0.15);
	border-radius: 100px;
	color: #006809;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.uf-badge svg {
	opacity: 0.8;
}

/* Gradient Text */
.uf-gradient-text {
	background: linear-gradient(135deg, #006809 0%, #00a815 50%, #f9bd00 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.fs-18 {
	font-size: 18px !important;
}

/* Bento Grid */
.uf-bento-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	padding: 20px 0;
}

.uf-bento-item {
	min-height: 180px;
}

.uf-bento-item.uf-bento-large {
	grid-column: span 2;
}

/* Glass Card */
.uf-glass-card {
	position: relative;
	height: 100%;
	padding: 28px;
	border-radius: 24px;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
}

.uf-glass-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 24px;
	padding: 1px;
	background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.2) 100%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

/* Card Glow Effect */
.uf-card-glow {
	position: absolute;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	filter: blur(50px);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
	top: -50px;
	right: -50px;
}

.uf-glass-card:hover .uf-card-glow {
	opacity: 1;
}

/* Green Card */
.uf-card-green {
	background: linear-gradient(145deg, rgba(0, 104, 9, 0.95) 0%, rgba(0, 80, 7, 0.98) 100%);
	box-shadow: 
		0 4px 24px rgba(0, 104, 9, 0.15),
		0 1px 2px rgba(0, 0, 0, 0.05),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.uf-card-green .uf-card-glow {
	background: rgba(0, 200, 80, 0.4);
}

.uf-card-green:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 
		0 20px 40px rgba(0, 104, 9, 0.25),
		0 8px 16px rgba(0, 104, 9, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.uf-card-green .uf-icon-wrap {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

.uf-card-green .uf-card-title,
.uf-card-green .uf-card-desc {
	color: #fff;
}

.uf-card-green .uf-card-number {
	color: rgba(255, 255, 255, 0.15);
}

/* Yellow Card */
.uf-card-yellow {
	background: linear-gradient(145deg, #f9bd00 0%, #e5ad00 100%);
	box-shadow: 
		0 4px 24px rgba(249, 189, 0, 0.2),
		0 1px 2px rgba(0, 0, 0, 0.05),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.uf-card-yellow .uf-card-glow {
	background: rgba(255, 230, 100, 0.5);
}

.uf-card-yellow:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 
		0 20px 40px rgba(249, 189, 0, 0.3),
		0 8px 16px rgba(249, 189, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.uf-card-yellow .uf-icon-wrap {
	background: rgba(0, 0, 0, 0.1);
	color: #1a1a1a;
}

.uf-card-yellow .uf-card-title,
.uf-card-yellow .uf-card-desc {
	color: #1a1a1a;
}

.uf-card-yellow .uf-card-number {
	color: rgba(0, 0, 0, 0.1);
}

/* Light Card */
.uf-card-light {
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 248, 0.98) 100%);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow: 
		0 4px 24px rgba(0, 104, 9, 0.08),
		0 1px 2px rgba(0, 0, 0, 0.04),
		inset 0 1px 0 rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(0, 104, 9, 0.1);
}

.uf-card-light .uf-card-glow {
	background: rgba(0, 104, 9, 0.15);
}

.uf-card-light:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 
		0 20px 40px rgba(0, 104, 9, 0.12),
		0 8px 16px rgba(0, 104, 9, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 1);
	border-color: rgba(0, 104, 9, 0.2);
}

.uf-card-light .uf-icon-wrap {
	background: linear-gradient(135deg, rgba(0, 104, 9, 0.1) 0%, rgba(0, 150, 50, 0.15) 100%);
	color: #006809;
}

.uf-card-light .uf-card-title {
	color: #1a1a1a;
}

.uf-card-light .uf-card-desc {
	color: #4a4a4a;
}

.uf-card-light .uf-card-number {
	color: rgba(0, 104, 9, 0.08);
}

/* Icon Wrapper */
.uf-icon-wrap {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.uf-icon-float {
	animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}

.uf-glass-card:hover .uf-icon-wrap {
	transform: scale(1.1) rotate(5deg);
}

/* Card Content */
.uf-card-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.uf-card-title {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0;
	transition: transform 0.3s ease;
}

.uf-glass-card:hover .uf-card-title {
	transform: translateX(4px);
}

.uf-card-desc {
	font-size: 14px;
	line-height: 1.6;
	margin: 8px 0 0 0;
	opacity: 0.8;
}

/* Card Number */
.uf-card-number {
	position: absolute;
	bottom: 20px;
	right: 24px;
	font-size: 64px;
	font-weight: 800;
	line-height: 1;
	pointer-events: none;
	transition: all 0.4s ease;
}

.uf-glass-card:hover .uf-card-number {
	transform: scale(1.1);
	opacity: 0.8;
}

/* Z-Index */
.z-2 {
	z-index: 2;
}

/* Responsive */
@media (max-width: 991px) {
	.uf-bento-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.uf-bento-item.uf-bento-large {
		grid-column: span 2;
	}
	
	.uf-card-number {
		font-size: 48px;
	}
}

@media (max-width: 767px) {
	.uf-bento-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.uf-bento-item.uf-bento-large {
		grid-column: span 1;
	}
	
	.uf-bento-item {
		min-height: 160px;
	}
	
	.uf-glass-card {
		padding: 24px;
	}
	
	.uf-card-number {
		font-size: 40px;
		bottom: 16px;
		right: 20px;
	}
	
	.uf-floating-shape {
		display: none;
	}
}

.w-14 {
	width: 56px !important;
}

.h-14 {
	height: 56px !important;
}

/* ========================================
   Hosting Features - Modern Dark Section
   ======================================== */

.hosting-features-wrap {
	background: linear-gradient(165deg, #006809 0%, #004d07 50%, #003305 100%);
}

/* Background Pattern */
.hf-bg-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
	background-size: 60px 60px, 80px 80px;
	pointer-events: none;
}

.hf-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	pointer-events: none;
}

.hf-glow-1 {
	width: 500px;
	height: 500px;
	background: rgba(249, 189, 0, 0.12);
	top: -150px;
	right: -100px;
}

.hf-glow-2 {
	width: 400px;
	height: 400px;
	background: rgba(0, 200, 80, 0.1);
	bottom: -100px;
	left: -100px;
}

/* Badge */
.hf-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: rgba(249, 189, 0, 0.15);
	border: 1px solid rgba(249, 189, 0, 0.3);
	border-radius: 100px;
	color: #f9bd00;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Gradient Text */
.hf-gradient-text {
	background: linear-gradient(135deg, #f9bd00 0%, #ffe066 50%, #f9bd00 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Hosting Card */
.hf-card {
	height: 100%;
	perspective: 1000px;
}

.hf-card-inner {
	position: relative;
	height: 100%;
	padding: 32px 28px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
}

.hf-card-inner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

.hf-card:hover .hf-card-inner {
	transform: translateY(-8px);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
	border-color: rgba(249, 189, 0, 0.3);
	box-shadow: 
		0 20px 40px rgba(0, 0, 0, 0.3),
		0 0 40px rgba(249, 189, 0, 0.1);
}

/* Icon Box */
.hf-icon-box {
	position: relative;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(249, 189, 0, 0.2) 0%, rgba(249, 189, 0, 0.1) 100%);
	color: #f9bd00;
	transition: all 0.4s ease;
}

.hf-icon-glow {
	position: absolute;
	inset: -10px;
	background: radial-gradient(circle, rgba(249, 189, 0, 0.3) 0%, transparent 70%);
	border-radius: 50%;
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.hf-card:hover .hf-icon-box {
	transform: scale(1.1) rotate(5deg);
	background: linear-gradient(135deg, rgba(249, 189, 0, 0.3) 0%, rgba(249, 189, 0, 0.15) 100%);
}

.hf-card:hover .hf-icon-glow {
	opacity: 1;
}

/* Card Title */
.hf-card-title {
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	margin: 0 0 6px 0;
	line-height: 1.4;
	transition: transform 0.3s ease;
}

.hf-card:hover .hf-card-title {
	transform: translateX(4px);
}

/* Card Subtitle */
.hf-card-subtitle {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	margin: 0;
	line-height: 1.5;
}

/* Animated Line */
.hf-card-line {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, #f9bd00 0%, #ffe066 100%);
	border-radius: 0 0 20px 20px;
	transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hf-card:hover .hf-card-line {
	width: 100%;
}

/* Responsive */
@media (max-width: 767px) {
	.hf-card-inner {
		padding: 24px 20px;
	}
	
	.hf-glow {
		display: none;
	}
}

/* ========================================
   Highlight Sections - Compact Cards
   ======================================== */

.highlight-sections-wrap {
	background: linear-gradient(180deg, #f8faf8 0%, #ffffff 100%);
}

.py-75 {
	padding-top: 75px;
	padding-bottom: 75px;
}

/* Highlight Card Base */
.hs-card {
	display: flex;
	gap: 24px;
	padding: 28px;
	border-radius: 20px;
	height: 100%;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.hs-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, currentColor, transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.hs-card:hover::before {
	opacity: 0.3;
}

/* Light Card */
.hs-card-light {
	background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
	border: 1px solid rgba(249, 189, 0, 0.2);
	box-shadow: 0 4px 20px rgba(249, 189, 0, 0.08);
	color: #f9bd00;
}

.hs-card-light:hover {
	transform: translateY(-6px);
	border-color: rgba(249, 189, 0, 0.4);
	box-shadow: 0 16px 40px rgba(249, 189, 0, 0.15);
}

/* Dark Card */
.hs-card-dark {
	background: linear-gradient(145deg, #006809 0%, #005507 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 4px 20px rgba(0, 104, 9, 0.2);
	color: #00c853;
}

.hs-card-dark:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0, 104, 9, 0.3);
}

/* Card Icon */
.hs-card-icon {
	width: 64px;
	height: 64px;
	min-width: 64px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.hs-card:hover .hs-card-icon {
	transform: scale(1.1) rotate(5deg);
}

.hs-icon-yellow {
	background: linear-gradient(135deg, #f9bd00 0%, #e5ad00 100%);
	color: #fff;
	box-shadow: 0 4px 16px rgba(249, 189, 0, 0.3);
}

.hs-icon-green {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Card Content */
.hs-card-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.hs-card-header {
	margin-bottom: 10px;
}

.hs-card-title {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 4px 0;
	line-height: 1.3;
}

.hs-card-light .hs-card-title {
	color: #1a1a1a;
}

.hs-card-dark .hs-card-title {
	color: #fff;
}

.hs-card-subtitle {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.hs-card-light .hs-card-subtitle {
	color: #006809;
}

.hs-card-dark .hs-card-subtitle {
	color: #f9bd00;
}

.hs-card-desc {
	font-size: 14px;
	line-height: 1.6;
	margin: 0 0 14px 0;
	flex: 1;
}

.hs-card-light .hs-card-desc {
	color: #555;
}

.hs-card-dark .hs-card-desc {
	color: rgba(255, 255, 255, 0.8);
}

/* Card Tag */
.hs-card-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 100px;
	font-size: 13px;
	font-weight: 500;
	width: fit-content;
	transition: all 0.3s ease;
}

.hs-card-light .hs-card-tag {
	background: rgba(0, 104, 9, 0.08);
	color: #006809;
	border: 1px solid rgba(0, 104, 9, 0.15);
}

.hs-card-dark .hs-card-tag,
.hs-card-tag.hs-tag-light {
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.hs-card:hover .hs-card-tag {
	transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
	.hs-card {
		padding: 24px;
	}
	
	.hs-card-title {
		font-size: 20px;
	}
}

@media (max-width: 767px) {
	.py-75 {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	
	.hs-card {
		flex-direction: column;
		text-align: center;
		padding: 24px 20px;
	}
	
	.hs-card-icon {
		margin: 0 auto;
	}
	
	.hs-card-tag {
		margin: 0 auto;
	}
}

/* ========================================
   Pricing - Free to Use Section
   ======================================== */

.pricing-free-wrap {
	background: linear-gradient(180deg, #006809 0%, #005207 100%);
}

.pf-bg-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 1000px;
	height: 600px;
	background: radial-gradient(ellipse, rgba(249, 189, 0, 0.15) 0%, transparent 60%);
	pointer-events: none;
}

/* Header */
.pf-badge {
	display: inline-block;
	padding: 6px 16px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 100px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.pf-title {
	font-size: 48px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 16px 0;
	line-height: 1.2;
}

.pf-highlight {
	color: #f9bd00;
}

.pf-subtitle {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
	line-height: 1.6;
}

.pf-subtitle strong {
	color: #fff;
}

/* Features Card */
.pf-features-card {
	background: #fff;
	border-radius: 24px;
	padding: 40px;
	height: 100%;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
	transition: all 0.4s ease;
}

.pf-features-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.pf-features-header {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 28px;
	padding-bottom: 24px;
	border-bottom: 1px solid #eee;
}

.pf-price-tag {
	display: flex;
	align-items: baseline;
	gap: 4px;
}

.pf-currency {
	font-size: 28px;
	font-weight: 600;
	color: #006809;
}

.pf-amount {
	font-size: 64px;
	font-weight: 800;
	color: #006809;
	line-height: 1;
}

.pf-period {
	font-size: 16px;
	font-weight: 500;
	color: #888;
	margin-left: 4px;
}

.pf-features-title {
	font-size: 20px;
	font-weight: 600;
	color: #333;
	margin: 0;
}

/* Features Grid */
.pf-features-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.pf-feature-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	background: linear-gradient(135deg, #f8faf8 0%, #f0f7f0 100%);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.pf-feature-item:hover {
	background: linear-gradient(135deg, #e8f5e8 0%, #d8f0d8 100%);
	transform: translateX(4px);
}

.pf-feature-wide {
	grid-column: span 2;
}

.pf-feature-icon {
	width: 36px;
	height: 36px;
	min-width: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #006809 0%, #008810 100%);
	border-radius: 10px;
	color: #fff;
}

.pf-feature-item span {
	font-size: 15px;
	font-weight: 500;
	color: #333;
}

/* Funded Card */
.pf-funded-card {
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 24px;
	padding: 40px;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.pf-funded-icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(249, 189, 0, 0.15);
	border-radius: 20px;
	color: #f9bd00;
	margin-bottom: 24px;
}

.pf-funded-title {
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	margin: 0 0 8px 0;
}

.pf-funded-desc {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.7);
	margin: 0 0 16px 0;
}

.pf-google-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 20px;
	background: #fff;
	border-radius: 12px;
	margin-bottom: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pf-google-badge span {
	font-size: 15px;
	font-weight: 600;
	color: #333;
}

.pf-funded-note {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
	line-height: 1.6;
	max-width: 280px;
}

/* Responsive */
@media (max-width: 991px) {
	.pf-title {
		font-size: 36px;
	}
	
	.pf-features-card {
		padding: 32px;
	}
	
	.pf-features-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
	
	.pf-amount {
		font-size: 48px;
	}
}

@media (max-width: 767px) {
	.pf-title {
		font-size: 32px;
	}
	
	.pf-features-card {
		padding: 24px;
	}
	
	.pf-features-grid {
		grid-template-columns: 1fr;
	}
	
	.pf-feature-wide {
		grid-column: span 1;
	}
	
	.pf-funded-card {
		padding: 32px 24px;
	}
	
	.pf-bg-glow {
		display: none;
	}
}

/* ========================================
   About Page Styles
   ======================================== */

/* About Hero */
.about-hero {
	background: linear-gradient(180deg, #006809 0%, #004d07 60%, #003a05 100%);
	padding: 160px 0 100px;
}

.about-hero-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 30% 20%, rgba(249, 189, 0, 0.08) 0%, transparent 50%);
}

.about-hero-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: 60px 60px;
}

.about-hero-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
}

.about-hero-glow-1 {
	width: 500px;
	height: 500px;
	background: rgba(249, 189, 0, 0.15);
	top: -100px;
	right: 10%;
}

.about-hero-glow-2 {
	width: 400px;
	height: 400px;
	background: rgba(0, 104, 9, 0.3);
	bottom: -100px;
	left: 10%;
}

.about-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(249, 189, 0, 0.15);
	border: 1px solid rgba(249, 189, 0, 0.3);
	padding: 8px 16px;
	border-radius: 50px;
	color: #f9bd00;
	font-size: 14px;
	font-weight: 500;
}

.about-hero-title {
	font-size: 52px;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 24px;
}

.about-title-gradient {
	background: linear-gradient(135deg, #f9bd00 0%, #ffe066 50%, #f9bd00 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.about-hero-subtitle {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.7;
	max-width: 700px;
	margin: 0 auto;
}

/* About Intro Section */
.about-intro-section {
	background: linear-gradient(180deg, #f8fdf8 0%, #fff 100%);
	position: relative;
	overflow: hidden;
}

.about-intro-bg-pattern {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 2px 2px, rgba(0, 104, 9, 0.05) 1px, transparent 0);
	background-size: 40px 40px;
}

.about-intro-main {
	background: #fff;
	border: 1px solid rgba(0, 104, 9, 0.1);
	border-radius: 24px;
	padding: 48px;
	box-shadow: 0 20px 60px rgba(0, 104, 9, 0.08);
	height: 100%;
	position: relative;
}

.about-intro-quote {
	position: absolute;
	top: -20px;
	left: 40px;
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, #006809 0%, #008810 100%);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	box-shadow: 0 10px 30px rgba(0, 104, 9, 0.3);
}

.about-intro-quote svg {
	width: 28px;
	height: 28px;
}

.about-intro-main-text {
	font-size: 22px;
	color: #111;
	line-height: 1.7;
	margin-bottom: 20px;
	margin-top: 20px;
	font-weight: 500;
}

.about-intro-main-text .text-highlight {
	color: #006809;
	font-weight: 600;
	position: relative;
}

.about-intro-main-text .text-highlight::after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 0;
	width: 100%;
	height: 6px;
	background: rgba(249, 189, 0, 0.3);
	z-index: -1;
	border-radius: 2px;
}

.about-intro-secondary-text {
	font-size: 16px;
	color: #555;
	line-height: 1.8;
	margin-bottom: 24px;
}

.about-intro-divider {
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, #006809, #f9bd00);
	border-radius: 2px;
	margin-bottom: 24px;
}

.about-intro-tagline {
	font-size: 17px;
	color: #333;
	line-height: 1.7;
	margin: 0;
}

.about-intro-tagline strong {
	color: #006809;
}

/* Intro Highlights */
.about-intro-highlights {
	display: flex;
	flex-direction: column;
	gap: 16px;
	height: 100%;
}

.about-highlight-card {
	background: #fff;
	border: 1px solid rgba(0, 104, 9, 0.1);
	border-radius: 16px;
	padding: 20px 24px;
	display: flex;
	align-items: center;
	gap: 20px;
	transition: all 0.3s ease;
	flex: 1;
}

.about-highlight-card:hover {
	border-color: rgba(0, 104, 9, 0.2);
	box-shadow: 0 10px 30px rgba(0, 104, 9, 0.1);
	transform: translateX(5px);
}

.about-highlight-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.about-highlight-icon-green {
	background: linear-gradient(135deg, #006809 0%, #008810 100%);
	color: #fff;
}

.about-highlight-icon-yellow {
	background: linear-gradient(135deg, #f9bd00 0%, #ffdd77 100%);
	color: #000;
}

.about-highlight-content h4 {
	font-size: 16px;
	font-weight: 600;
	color: #111;
	margin: 0 0 4px 0;
}

.about-highlight-content p {
	font-size: 14px;
	color: #666;
	margin: 0;
	line-height: 1.4;
}

/* About Section Common Styles */
.about-section-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(249, 189, 0, 0.15);
	border: 1px solid rgba(249, 189, 0, 0.3);
	padding: 8px 20px;
	border-radius: 50px;
	color: #f9bd00;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.about-badge-dark {
	background: rgba(0, 104, 9, 0.1);
	border-color: rgba(0, 104, 9, 0.2);
	color: #006809;
}

.about-section-title {
	font-size: 42px;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 16px;
}

.about-section-title.text-dark {
	color: #111;
}

.text-gradient-yellow {
	background: linear-gradient(135deg, #f9bd00 0%, #ffe066 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.text-gradient-green {
	background: linear-gradient(135deg, #006809 0%, #00a810 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.about-section-subtitle {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
	max-width: 600px;
	margin: 0 auto;
}

.about-section-subtitle.text-dark {
	color: #666;
}

/* Why Choose Section */
.about-why-section {
	background: linear-gradient(180deg, #006809 0%, #004d07 100%);
	position: relative;
}

.about-why-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 80% 50%, rgba(249, 189, 0, 0.08) 0%, transparent 50%);
}

.about-users-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	padding: 48px;
	backdrop-filter: blur(10px);
}

.about-users-title {
	font-size: 28px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 8px;
}

.about-users-subtitle {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 32px;
}

.about-users-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 32px;
}

.about-user-item {
	display: flex;
	align-items: center;
	gap: 16px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 20px;
	transition: all 0.3s ease;
}

.about-user-item:hover {
	background: rgba(249, 189, 0, 0.1);
	border-color: rgba(249, 189, 0, 0.3);
	transform: translateY(-2px);
}

.about-user-icon {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, #f9bd00 0%, #ffdd77 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.about-user-icon svg {
	color: #000;
}

.about-user-item span {
	font-size: 15px;
	font-weight: 500;
	color: #fff;
}

.about-users-footer {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* What We Offer Section */
.about-offer-section {
	background: #f8fdf8;
}

.about-offer-card {
	background: #fff;
	border: 1px solid rgba(0, 104, 9, 0.1);
	border-radius: 16px;
	padding: 28px;
	display: flex;
	align-items: center;
	gap: 20px;
	transition: all 0.3s ease;
	height: 100%;
}

.about-offer-card:hover {
	border-color: rgba(0, 104, 9, 0.3);
	box-shadow: 0 10px 30px rgba(0, 104, 9, 0.1);
	transform: translateY(-3px);
}

.about-offer-icon {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, #006809 0%, #008810 100%);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.about-offer-icon svg {
	color: #fff;
}

.about-offer-icon-alt {
	background: linear-gradient(135deg, #f9bd00 0%, #ffdd77 100%);
}

.about-offer-icon-alt svg {
	color: #000;
}

.about-offer-card h4 {
	font-size: 16px;
	font-weight: 600;
	color: #111;
	margin: 0;
	line-height: 1.4;
}

.about-browser-note {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg, #006809 0%, #008810 100%);
	padding: 16px 28px;
	border-radius: 50px;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
}

/* Our Story Section */
.about-story-section {
	background: linear-gradient(180deg, #004d07 0%, #006809 100%);
	position: relative;
}

.about-story-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% 80%, rgba(249, 189, 0, 0.1) 0%, transparent 50%);
}

.about-story-text {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.8;
	margin-bottom: 20px;
}

.about-story-text strong {
	color: #f9bd00;
}

.about-mission-vision-grid {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.about-mv-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 32px;
	backdrop-filter: blur(10px);
}

.about-mission-card {
	border-left: 4px solid #f9bd00;
}

.about-vision-card {
	border-left: 4px solid #00a810;
}

.about-mv-icon {
	width: 56px;
	height: 56px;
	background: rgba(249, 189, 0, 0.15);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.about-mv-icon svg {
	color: #f9bd00;
}

.about-mv-card h3 {
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 12px;
}

.about-mv-card p {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
	margin: 0;
}

/* Platform Trust Section */
.about-trust-section {
	background: #fff;
}

.about-trust-card {
	background: #f8fdf8;
	border: 1px solid rgba(0, 104, 9, 0.1);
	border-radius: 16px;
	padding: 28px;
	text-align: center;
	height: 100%;
	transition: all 0.3s ease;
}

.about-trust-card:hover {
	border-color: rgba(0, 104, 9, 0.3);
	box-shadow: 0 10px 30px rgba(0, 104, 9, 0.1);
	transform: translateY(-3px);
}

.about-trust-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #006809 0%, #008810 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.about-trust-icon svg {
	color: #fff;
}

.about-trust-card h4 {
	font-size: 17px;
	font-weight: 600;
	color: #111;
	margin-bottom: 8px;
}

.about-trust-card p {
	font-size: 14px;
	color: #666;
	margin: 0;
}

.about-free-note {
	background: linear-gradient(135deg, rgba(0, 104, 9, 0.05) 0%, rgba(249, 189, 0, 0.05) 100%);
	border: 1px solid rgba(0, 104, 9, 0.1);
	border-radius: 12px;
	padding: 20px 32px;
}

.about-free-note p {
	font-size: 16px;
	color: #333;
	margin: 0;
}

.about-free-note strong {
	color: #006809;
}

/* Community Section */
.about-community-section {
	background: linear-gradient(180deg, #fff 0%, #f8fdf8 100%);
	position: relative;
	overflow: hidden;
}

.about-community-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		radial-gradient(circle at 20% 30%, rgba(0, 104, 9, 0.03) 0%, transparent 40%),
		radial-gradient(circle at 80% 70%, rgba(249, 189, 0, 0.05) 0%, transparent 40%);
}

.about-community-card {
	background: linear-gradient(135deg, #fff 0%, #fafffe 100%);
	border: 2px solid rgba(0, 104, 9, 0.1);
	border-radius: 20px;
	padding: 36px 40px;
	text-align: center;
	position: relative;
	box-shadow: 0 20px 50px rgba(0, 104, 9, 0.06);
}

.about-community-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: linear-gradient(90deg, #006809, #f9bd00, #006809);
	border-radius: 0 0 3px 3px;
}

.about-community-icon {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, #006809 0%, #008810 100%);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	color: #fff;
	box-shadow: 0 10px 25px rgba(0, 104, 9, 0.2);
}

.about-community-icon svg {
	width: 28px;
	height: 28px;
}

.about-community-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(249, 189, 0, 0.15);
	border: 1px solid rgba(249, 189, 0, 0.3);
	padding: 6px 14px;
	border-radius: 50px;
	color: #b38600;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 12px;
}

.about-community-title {
	font-size: 24px;
	font-weight: 700;
	color: #111;
	margin-bottom: 12px;
}

.about-community-text {
	font-size: 15px;
	color: #444;
	line-height: 1.7;
	margin-bottom: 20px;
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
}

.about-community-text .highlight-text {
	color: #006809;
	font-weight: 600;
	background: linear-gradient(180deg, transparent 60%, rgba(249, 189, 0, 0.3) 60%);
}

.about-community-features {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.about-community-feature {
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(0, 104, 9, 0.05);
	border: 1px solid rgba(0, 104, 9, 0.1);
	padding: 8px 16px;
	border-radius: 50px;
	transition: all 0.3s ease;
}

.about-community-feature:hover {
	background: rgba(0, 104, 9, 0.1);
	transform: translateY(-2px);
}

.about-community-feature svg {
	color: #006809;
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

.about-community-feature span {
	font-size: 13px;
	font-weight: 500;
	color: #333;
}

.about-community-note {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(249, 189, 0, 0.1);
	border: 1px solid rgba(249, 189, 0, 0.2);
	padding: 10px 18px;
	border-radius: 10px;
	margin: 0;
}

.about-community-note svg {
	color: #b38600;
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

.about-community-note span {
	font-size: 13px;
	color: #666;
	font-style: italic;
}

/* About CTA Section */
.about-cta-section {
	background: linear-gradient(180deg, #003a05 0%, #001a02 100%);
}

.about-cta-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 30%, rgba(249, 189, 0, 0.15) 0%, transparent 50%);
}

.about-cta-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
	background-size: 40px 40px;
}

.about-cta-title {
	font-size: 44px;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 20px;
}

.about-cta-subtitle {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
	margin-bottom: 32px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.about-cta-tagline {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-bottom: 12px;
}

.about-cta-tagline span {
	font-size: 28px;
	font-weight: 700;
	color: #f9bd00;
}

.about-cta-free {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 40px;
}

.about-cta-buttons {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.about-cta-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #f9bd00 0%, #e6ac00 100%);
	color: #000;
	font-size: 16px;
	font-weight: 600;
	padding: 16px 32px;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.about-cta-btn-primary:hover {
	background: linear-gradient(135deg, #ffcc33 0%, #f9bd00 100%);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(249, 189, 0, 0.3);
	color: #000;
}

.about-cta-btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	padding: 14px 32px;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.about-cta-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.5);
	color: #fff;
}

/* About Page Responsive */
@media (max-width: 991px) {
	.about-hero {
		padding: 140px 0 80px;
	}
	
	.about-hero-title {
		font-size: 38px;
	}
	
	.about-section-title {
		font-size: 32px;
	}
	
	.about-users-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.about-cta-title {
		font-size: 34px;
	}
	
	.about-cta-tagline span {
		font-size: 22px;
	}
	
	.about-intro-main {
		padding: 36px;
		margin-bottom: 24px;
	}
	
	.about-community-card {
		padding: 32px;
	}
	
	.about-community-title {
		font-size: 22px;
	}
	
	.about-intro-main-text {
		font-size: 20px;
	}
	
	.about-intro-highlights {
		flex-direction: row;
		flex-wrap: wrap;
	}
	
	.about-highlight-card {
		flex: 1 1 calc(50% - 8px);
	}
}

@media (max-width: 767px) {
	.about-hero {
		padding: 120px 0 60px;
	}
	
	.about-hero-title {
		font-size: 30px;
	}
	
	.about-hero-subtitle {
		font-size: 16px;
	}
	
	.about-intro-main {
		padding: 28px;
	}
	
	.about-intro-quote {
		top: -16px;
		left: 24px;
		width: 48px;
		height: 48px;
	}
	
	.about-intro-quote svg {
		width: 24px;
		height: 24px;
	}
	
	.about-intro-main-text {
		font-size: 18px;
		margin-top: 16px;
	}
	
	.about-intro-highlights {
		flex-direction: column;
	}
	
	.about-highlight-card {
		flex: 1;
	}
	
	.about-community-card {
		padding: 24px 20px;
	}
	
	.about-community-icon {
		width: 48px;
		height: 48px;
	}
	
	.about-community-icon svg {
		width: 24px;
		height: 24px;
	}
	
	.about-community-title {
		font-size: 20px;
	}
	
	.about-community-text {
		font-size: 14px;
	}
	
	.about-community-features {
		flex-direction: column;
		gap: 8px;
		align-items: center;
	}
	
	.about-community-feature {
		width: 100%;
		justify-content: center;
		padding: 8px 14px;
	}
	
	.about-community-note {
		flex-direction: column;
		text-align: center;
		gap: 6px;
		padding: 10px 14px;
	}
	
	.about-section-title {
		font-size: 28px;
	}
	
	.about-users-card {
		padding: 28px;
	}
	
	.about-users-grid {
		grid-template-columns: 1fr;
	}
	
	.about-offer-card {
		flex-direction: column;
		text-align: center;
	}
	
	.about-cta-title {
		font-size: 28px;
	}
	
	.about-cta-tagline {
		flex-direction: column;
		gap: 8px;
	}
	
	.about-cta-tagline span {
		font-size: 20px;
	}
	
	.about-cta-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	.about-cta-btn-primary,
	.about-cta-btn-secondary {
		width: 100%;
		justify-content: center;
	}
}

/* ========================================
   Contact Page Styles
   ======================================== */

/* Contact Hero */
.contact-hero {
	background: linear-gradient(180deg, #006809 0%, #004d07 60%, #003a05 100%);
	padding: 160px 0 80px;
}

.contact-hero-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 30%, rgba(249, 189, 0, 0.08) 0%, transparent 50%);
}

.contact-hero-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: 60px 60px;
}

.contact-hero-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
}

.contact-hero-glow-1 {
	width: 400px;
	height: 400px;
	background: rgba(249, 189, 0, 0.15);
	top: -50px;
	right: 20%;
}

.contact-hero-glow-2 {
	width: 300px;
	height: 300px;
	background: rgba(0, 104, 9, 0.3);
	bottom: -50px;
	left: 20%;
}

.contact-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(249, 189, 0, 0.15);
	border: 1px solid rgba(249, 189, 0, 0.3);
	padding: 8px 16px;
	border-radius: 50px;
	color: #f9bd00;
	font-size: 14px;
	font-weight: 500;
}

.contact-hero-title {
	font-size: 48px;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 20px;
}

.contact-title-gradient {
	background: linear-gradient(135deg, #f9bd00 0%, #ffe066 50%, #f9bd00 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.contact-hero-subtitle {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.7;
	margin-bottom: 16px;
}

.contact-hero-note {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
}

/* Contact Form Section */
.contact-form-section {
	background: linear-gradient(180deg, #f8fdf8 0%, #fff 100%);
	position: relative;
}

.contact-form-pattern {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 2px 2px, rgba(0, 104, 9, 0.03) 1px, transparent 0);
	background-size: 40px 40px;
}

/* Contact Info */
.contact-info-wrap {
	position: sticky;
	top: 120px;
}

.contact-info-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(0, 104, 9, 0.1);
	border: 1px solid rgba(0, 104, 9, 0.2);
	padding: 6px 14px;
	border-radius: 50px;
	color: #006809;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.contact-info-title {
	font-size: 36px;
	font-weight: 700;
	color: #111;
	margin-bottom: 12px;
}

.contact-info-text {
	font-size: 16px;
	color: #555;
	line-height: 1.7;
	margin-bottom: 32px;
}

.contact-features {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-feature {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.contact-feature-icon {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, #006809 0%, #008810 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #fff;
}

.contact-feature-icon-alt {
	background: linear-gradient(135deg, #f9bd00 0%, #ffdd77 100%);
	color: #000;
}

.contact-feature-content h4 {
	font-size: 16px;
	font-weight: 600;
	color: #111;
	margin: 0 0 4px 0;
}

.contact-feature-content p {
	font-size: 14px;
	color: #666;
	margin: 0;
	line-height: 1.5;
}

/* Contact Form Card */
.contact-form-card {
	background: #fff;
	border: 1px solid rgba(0, 104, 9, 0.1);
	border-radius: 24px;
	padding: 40px;
	box-shadow: 0 20px 60px rgba(0, 104, 9, 0.08);
}

.contact-form-header {
	margin-bottom: 28px;
}

.contact-form-header h3 {
	font-size: 24px;
	font-weight: 700;
	color: #111;
	margin-bottom: 8px;
}

.contact-form-header p {
	font-size: 15px;
	color: #666;
	margin: 0;
}

.contact-form-label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
}

.contact-form-label span {
	color: #e53e3e;
}

.contact-form-label .optional {
	color: #999;
	font-weight: 400;
}

.contact-form-input,
.contact-form-textarea {
	width: 100%;
	padding: 14px 18px;
	font-size: 15px;
	color: #333;
	background: #f8fdf8;
	border: 1px solid rgba(0, 104, 9, 0.15);
	border-radius: 12px;
	transition: all 0.3s ease;
	font-family: inherit;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
	outline: none;
	border-color: #006809;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(0, 104, 9, 0.1);
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
	color: #999;
}

.contact-form-textarea {
	resize: vertical;
	min-height: 120px;
}

.contact-form-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #006809 0%, #008810 100%);
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	padding: 16px 32px;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 20px;
}

.contact-form-btn:hover {
	background: linear-gradient(135deg, #008810 0%, #00a815 100%);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(0, 104, 9, 0.3);
}

/* Contact FAQ Section */
.contact-faq-section {
	background: #fff;
}

.contact-faq-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(0, 104, 9, 0.1);
	border: 1px solid rgba(0, 104, 9, 0.2);
	padding: 8px 16px;
	border-radius: 50px;
	color: #006809;
	font-size: 13px;
	font-weight: 600;
}

.contact-faq-title {
	font-size: 36px;
	font-weight: 700;
	color: #111;
	margin-bottom: 12px;
}

.contact-faq-subtitle {
	font-size: 16px;
	color: #666;
	line-height: 1.7;
}

.contact-faq-grid {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-faq-card {
	background: #f8fdf8;
	border: 1px solid rgba(0, 104, 9, 0.1);
	border-radius: 16px;
	padding: 28px;
	display: flex;
	gap: 20px;
	transition: all 0.3s ease;
}

.contact-faq-card:hover {
	border-color: rgba(0, 104, 9, 0.2);
	box-shadow: 0 10px 30px rgba(0, 104, 9, 0.08);
	transform: translateY(-2px);
}

.contact-faq-icon {
	width: 52px;
	height: 52px;
	background: linear-gradient(135deg, #006809 0%, #008810 100%);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #fff;
}

.contact-faq-icon-alt {
	background: linear-gradient(135deg, #f9bd00 0%, #ffdd77 100%);
	color: #000;
}

.contact-faq-content h4 {
	font-size: 17px;
	font-weight: 600;
	color: #111;
	margin: 0 0 8px 0;
}

.contact-faq-content p {
	font-size: 15px;
	color: #555;
	line-height: 1.6;
	margin: 0;
}

/* Contact Testimonial Section */
.contact-testimonial-section {
	background: linear-gradient(180deg, #006809 0%, #004d07 100%);
	position: relative;
}

.contact-testimonial-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 50%, rgba(249, 189, 0, 0.1) 0%, transparent 60%);
}

.contact-testimonial-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(249, 189, 0, 0.15);
	border: 1px solid rgba(249, 189, 0, 0.3);
	padding: 6px 14px;
	border-radius: 50px;
	color: #f9bd00;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.contact-testimonial-title {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 16px;
}

.contact-testimonial-text {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.7;
	margin-bottom: 32px;
}

.contact-testimonial-stats {
	display: inline-flex;
	align-items: center;
	gap: 32px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 16px;
	padding: 24px 40px;
	backdrop-filter: blur(10px);
}

.contact-stat {
	text-align: center;
}

.contact-stat-number {
	display: block;
	font-size: 32px;
	font-weight: 700;
	color: #f9bd00;
	line-height: 1;
	margin-bottom: 4px;
}

.contact-stat-label {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
}

.contact-stat-divider {
	width: 1px;
	height: 40px;
	background: rgba(255, 255, 255, 0.2);
}

/* Contact CTA Section */
.contact-cta-section {
	background: linear-gradient(180deg, #003a05 0%, #001a02 100%);
}

.contact-cta-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 30%, rgba(249, 189, 0, 0.12) 0%, transparent 50%);
}

.contact-cta-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
	background-size: 40px 40px;
}

.contact-cta-title {
	font-size: 40px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 16px;
}

.contact-cta-subtitle {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
	margin-bottom: 32px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.contact-cta-buttons {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.contact-cta-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #f9bd00 0%, #e6ac00 100%);
	color: #000;
	font-size: 16px;
	font-weight: 600;
	padding: 16px 32px;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.contact-cta-btn-primary:hover {
	background: linear-gradient(135deg, #ffcc33 0%, #f9bd00 100%);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(249, 189, 0, 0.3);
	color: #000;
}

.contact-cta-btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	padding: 14px 32px;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.contact-cta-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.5);
	color: #fff;
}

/* Contact Page Responsive */
@media (max-width: 991px) {
	.contact-hero {
		padding: 140px 0 60px;
	}
	
	.contact-hero-title {
		font-size: 36px;
	}
	
	.contact-info-wrap {
		position: static;
		margin-bottom: 40px;
	}
	
	.contact-info-title {
		font-size: 28px;
	}
	
	.contact-faq-title,
	.contact-testimonial-title {
		font-size: 28px;
	}
	
	.contact-cta-title {
		font-size: 32px;
	}
}

@media (max-width: 767px) {
	.contact-hero {
		padding: 120px 0 50px;
	}
	
	.contact-hero-title {
		font-size: 30px;
	}
	
	.contact-hero-subtitle {
		font-size: 16px;
	}
	
	.contact-form-card {
		padding: 28px 24px;
	}
	
	.contact-faq-card {
		flex-direction: column;
		text-align: center;
		padding: 24px;
	}
	
	.contact-faq-icon {
		margin: 0 auto;
	}
	
	.contact-testimonial-stats {
		flex-direction: column;
		gap: 20px;
		padding: 24px 32px;
	}
	
	.contact-stat-divider {
		width: 60px;
		height: 1px;
	}
	
	.contact-cta-title {
		font-size: 26px;
	}
	
	.contact-cta-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	.contact-cta-btn-primary,
	.contact-cta-btn-secondary {
		width: 100%;
		justify-content: center;
	}
}

/* ========================================
   Features Page Styles
   ======================================== */

/* Features Hero */
.feat-hero {
	background: linear-gradient(180deg, #006809 0%, #004d07 60%, #003a05 100%);
	padding: 128px 0 80px;
}

.feat-hero-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 30%, rgba(249, 189, 0, 0.1) 0%, transparent 50%);
}

.feat-hero-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: 60px 60px;
}

.feat-hero-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
}

.feat-hero-glow-1 {
	width: 500px;
	height: 500px;
	background: rgba(249, 189, 0, 0.15);
	top: -100px;
	left: 10%;
}

.feat-hero-glow-2 {
	width: 400px;
	height: 400px;
	background: rgba(0, 104, 9, 0.3);
	bottom: -100px;
	right: 10%;
}

.feat-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(249, 189, 0, 0.15);
	border: 1px solid rgba(249, 189, 0, 0.3);
	padding: 8px 16px;
	border-radius: 50px;
	color: #f9bd00;
	font-size: 14px;
	font-weight: 500;
}

.feat-hero-title {
	font-size: 48px;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 24px;
}

.feat-title-gradient {
	background: linear-gradient(135deg, #f9bd00 0%, #ffe066 50%, #f9bd00 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.feat-hero-subtitle {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.7;
	margin-bottom: 16px;
}

.feat-hero-note {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 32px;
}

.feat-hero-cta {
	display: flex;
	justify-content: center;
	gap: 16px;
}

.feat-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #f9bd00 0%, #e6ac00 100%);
	color: #000;
	font-size: 16px;
	font-weight: 600;
	padding: 16px 32px;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.feat-btn-primary:hover {
	background: linear-gradient(135deg, #ffcc33 0%, #f9bd00 100%);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(249, 189, 0, 0.3);
	color: #000;
}

/* Features Section Common */
.feat-section-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(0, 104, 9, 0.1);
	border: 1px solid rgba(0, 104, 9, 0.2);
	padding: 8px 16px;
	border-radius: 50px;
	color: #006809;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.feat-badge-light {
	background: rgba(249, 189, 0, 0.15);
	border-color: rgba(249, 189, 0, 0.3);
	color: #f9bd00;
}

.feat-section-title {
	font-size: 38px;
	font-weight: 700;
	color: #111;
	line-height: 1.2;
	margin-bottom: 16px;
}

.feat-section-subtitle {
	font-size: 16px;
	color: #666;
	line-height: 1.7;
}

/* Core Platform Features */
.feat-core-section {
	background: #fff;
}

.feat-core-card {
	background: linear-gradient(135deg, #f8fdf8 0%, #fff 100%);
	border: 1px solid rgba(0, 104, 9, 0.1);
	border-radius: 20px;
	padding: 32px;
	height: 100%;
	transition: all 0.3s ease;
}

.feat-core-card:hover {
	border-color: rgba(0, 104, 9, 0.2);
	box-shadow: 0 20px 50px rgba(0, 104, 9, 0.1);
	transform: translateY(-5px);
}

.feat-core-card-alt {
	background: linear-gradient(135deg, #fffdf5 0%, #fff 100%);
	border-color: rgba(249, 189, 0, 0.15);
}

.feat-core-card-alt:hover {
	border-color: rgba(249, 189, 0, 0.3);
	box-shadow: 0 20px 50px rgba(249, 189, 0, 0.1);
}

.feat-core-icon {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, #006809 0%, #008810 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	margin-bottom: 20px;
}

.feat-core-icon-alt {
	background: linear-gradient(135deg, #f9bd00 0%, #ffdd77 100%);
	color: #000;
}

.feat-core-card h3 {
	font-size: 22px;
	font-weight: 700;
	color: #111;
	margin-bottom: 16px;
}

.feat-core-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.feat-core-list li {
	position: relative;
	padding-left: 24px;
	font-size: 15px;
	color: #555;
	line-height: 1.6;
	margin-bottom: 12px;
}

.feat-core-list li:last-child {
	margin-bottom: 0;
}

.feat-core-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	background: #006809;
	border-radius: 50%;
}

.feat-core-card-alt .feat-core-list li::before {
	background: #f9bd00;
}

/* Our Core Services */
.feat-services-section {
	background: linear-gradient(180deg, #006809 0%, #004d07 100%);
	position: relative;
}

.feat-services-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 80% 20%, rgba(249, 189, 0, 0.1) 0%, transparent 50%);
}

.feat-service-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 32px;
	backdrop-filter: blur(10px);
	height: 100%;
	transition: all 0.3s ease;
}

.feat-service-card:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.15);
	transform: translateY(-5px);
}

.feat-service-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
}

.feat-service-icon {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, #006809 0%, #00a810 100%);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	flex-shrink: 0;
}

.feat-service-icon-alt {
	background: linear-gradient(135deg, #f9bd00 0%, #ffdd77 100%);
	color: #000;
}

.feat-service-card h3 {
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	margin: 0;
}

.feat-service-desc {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
	margin-bottom: 20px;
}

.feat-service-features {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.feat-service-features span {
	background: rgba(249, 189, 0, 0.15);
	border: 1px solid rgba(249, 189, 0, 0.25);
	color: #f9bd00;
	font-size: 13px;
	font-weight: 500;
	padding: 6px 14px;
	border-radius: 50px;
}

/* Industries We Serve */
.feat-industries-section {
	background: #f8fdf8;
}

.feat-industry-card {
	background: #fff;
	border: 1px solid rgba(0, 104, 9, 0.1);
	border-radius: 16px;
	padding: 28px;
	text-align: center;
	transition: all 0.3s ease;
	height: 100%;
}

.feat-industry-card:hover {
	border-color: rgba(0, 104, 9, 0.2);
	box-shadow: 0 15px 40px rgba(0, 104, 9, 0.1);
	transform: translateY(-5px);
}

.feat-industry-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #006809 0%, #008810 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	margin: 0 auto 16px;
}

.feat-industry-icon-alt {
	background: linear-gradient(135deg, #f9bd00 0%, #ffdd77 100%);
	color: #000;
}

.feat-industry-card h4 {
	font-size: 18px;
	font-weight: 600;
	color: #111;
	margin-bottom: 8px;
}

.feat-industry-card p {
	font-size: 14px;
	color: #666;
	margin: 0;
	line-height: 1.5;
}

/* Why Choose Section */
.feat-why-section {
	background: linear-gradient(180deg, #004d07 0%, #006809 100%);
	position: relative;
}

.feat-why-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% 50%, rgba(249, 189, 0, 0.1) 0%, transparent 50%);
}

.feat-why-text {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
}

.feat-why-grid {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.feat-why-item {
	display: flex;
	align-items: center;
	gap: 16px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 18px 24px;
	transition: all 0.3s ease;
}

.feat-why-item:hover {
	background: rgba(249, 189, 0, 0.1);
	border-color: rgba(249, 189, 0, 0.3);
	transform: translateX(10px);
}

.feat-why-item svg {
	color: #f9bd00;
	flex-shrink: 0;
}

.feat-why-item span {
	font-size: 15px;
	color: #fff;
	font-weight: 500;
}

/* FAQ Section */
.feat-faq-section {
	background: #fff;
}

.feat-faq-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.feat-faq-item {
	background: #f8fdf8;
	border: 1px solid rgba(0, 104, 9, 0.1);
	border-radius: 16px;
	padding: 24px 28px;
	transition: all 0.3s ease;
}

.feat-faq-item:hover {
	border-color: rgba(0, 104, 9, 0.2);
	box-shadow: 0 10px 30px rgba(0, 104, 9, 0.08);
}

.feat-faq-q {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 12px;
}

.feat-faq-num {
	background: linear-gradient(135deg, #006809 0%, #008810 100%);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	padding: 6px 12px;
	border-radius: 8px;
}

.feat-faq-q h4 {
	font-size: 17px;
	font-weight: 600;
	color: #111;
	margin: 0;
}

.feat-faq-a {
	font-size: 15px;
	color: #555;
	line-height: 1.7;
	margin: 0;
	padding-left: 56px;
}

/* Features CTA Section */
.feat-cta-section {
	background: linear-gradient(180deg, #003a05 0%, #001a02 100%);
}

.feat-cta-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 30%, rgba(249, 189, 0, 0.15) 0%, transparent 50%);
}

.feat-cta-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
	background-size: 40px 40px;
}

.feat-cta-title {
	font-size: 40px;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 16px;
}

.feat-cta-subtitle {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
	margin-bottom: 32px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.feat-cta-buttons {
	display: flex;
	justify-content: center;
}

.feat-cta-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #f9bd00 0%, #e6ac00 100%);
	color: #000;
	font-size: 16px;
	font-weight: 600;
	padding: 18px 36px;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.feat-cta-btn-primary:hover {
	background: linear-gradient(135deg, #ffcc33 0%, #f9bd00 100%);
	transform: translateY(-2px);
	box-shadow: 0 15px 40px rgba(249, 189, 0, 0.3);
	color: #000;
}

/* Features Page Responsive */
@media (max-width: 991px) {
	.feat-hero {
		padding: 140px 0 80px;
	}
	
	.feat-hero-title {
		font-size: 36px;
	}
	
	.feat-section-title {
		font-size: 30px;
	}
	
	.feat-cta-title {
		font-size: 32px;
	}
}

@media (max-width: 767px) {
	.feat-hero {
		padding: 120px 0 60px;
	}
	
	.feat-hero-title {
		font-size: 30px;
	}
	
	.feat-hero-subtitle {
		font-size: 15px;
	}
	
	.feat-section-title {
		font-size: 26px;
	}
	
	.feat-core-card {
		padding: 24px;
	}
	
	.feat-service-card {
		padding: 24px;
	}
	
	.feat-service-header {
		flex-direction: column;
		text-align: center;
	}
	
	.feat-why-item:hover {
		transform: none;
	}
	
	.feat-faq-q {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	
	.feat-faq-a {
		padding-left: 0;
	}
	
	.feat-cta-title {
		font-size: 26px;
	}
	
	.feat-cta-btn-primary {
		width: 100%;
		justify-content: center;
	}
}

/* ========================================
   Pricing Page Styles
   ======================================== */

/* Pricing Hero */
.price-hero {
	background: linear-gradient(180deg, #006809 0%, #004d07 60%, #003a05 100%);
	padding: 160px 0 100px;
}

.price-hero-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 30%, rgba(249, 189, 0, 0.12) 0%, transparent 50%);
}

.price-hero-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: 60px 60px;
}

.price-hero-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
}

.price-hero-glow-1 {
	width: 500px;
	height: 500px;
	background: rgba(249, 189, 0, 0.15);
	top: -100px;
	right: 10%;
}

.price-hero-glow-2 {
	width: 400px;
	height: 400px;
	background: rgba(0, 104, 9, 0.3);
	bottom: -100px;
	left: 10%;
}

.price-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(249, 189, 0, 0.15);
	border: 1px solid rgba(249, 189, 0, 0.3);
	padding: 8px 16px;
	border-radius: 50px;
	color: #f9bd00;
	font-size: 14px;
	font-weight: 500;
}

.price-hero-title {
	font-size: 52px;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 24px;
}

.price-title-gradient {
	background: linear-gradient(135deg, #f9bd00 0%, #ffe066 50%, #f9bd00 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.price-hero-subtitle {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.7;
	margin-bottom: 32px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.price-hero-highlights {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
}

.price-highlight-item {
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 10px 20px;
	border-radius: 50px;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
}

.price-highlight-item svg {
	color: #f9bd00;
}

/* Pricing Section Common */
.price-section-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(0, 104, 9, 0.1);
	border: 1px solid rgba(0, 104, 9, 0.2);
	padding: 8px 16px;
	border-radius: 50px;
	color: #006809;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.price-badge-light {
	background: rgba(249, 189, 0, 0.15);
	border-color: rgba(249, 189, 0, 0.3);
	color: #f9bd00;
}

.price-section-title {
	font-size: 38px;
	font-weight: 700;
	color: #111;
	line-height: 1.2;
	margin-bottom: 16px;
}

/* Free Plan Card - Horizontal Compact */
.price-plan-section {
	background: linear-gradient(180deg, #f8fdf8 0%, #fff 100%);
}

.price-plan-horizontal {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 40px;
	background: #fff;
	border: 2px solid #efefef;
	border-radius: 20px;
	padding: 36px 40px;
	box-shadow: 0 20px 60px rgba(0, 104, 9, 0.12);
}

.price-plan-left {
	display: flex;
	flex-direction: column;
	border-right: 1px solid rgba(0, 104, 9, 0.1);
	padding-right: 40px;
}

.price-plan-badge-inline {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: linear-gradient(135deg, #006809 0%, #008810 100%);
	color: #fff;
	padding: 6px 14px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 600;
	width: fit-content;
	margin-bottom: 12px;
}

.price-plan-title-h {
	font-size: 32px;
	font-weight: 700;
	color: #111;
	margin-bottom: 8px;
}

.price-plan-desc-h {
	font-size: 14px;
	color: #666;
	margin-bottom: 16px;
	line-height: 1.5;
}

.price-plan-price-h {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 20px;
}

.price-amount-h {
	font-size: 48px;
	font-weight: 800;
	color: #006809;
	line-height: 1;
}

.price-period-h {
	font-size: 14px;
	color: #888;
	font-weight: 500;
}

.price-plan-cta-h {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, #f9bd00 0%, #e6ac00 100%);
	color: #000;
	font-size: 15px;
	font-weight: 600;
	padding: 14px 24px;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
	width: fit-content;
}

.price-plan-cta-h:hover {
	background: linear-gradient(135deg, #ffcc33 0%, #f9bd00 100%);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(249, 189, 0, 0.3);
	color: #000;
}

.price-plan-right {
	display: flex;
	flex-direction: column;
}

.price-features-title-h {
	font-size: 16px;
	font-weight: 600;
	color: #111;
	margin-bottom: 16px;
}

.price-features-compact {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
}

.price-feat-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #f0fdf0;
	border: 1px solid rgba(0, 104, 9, 0.15);
	color: #333;
	font-size: 13px;
	font-weight: 500;
	padding: 8px 14px;
	border-radius: 50px;
}

.price-feat-pill svg {
	color: #006809;
}

.price-best-for-h {
	margin-top: auto;
	background: linear-gradient(135deg, #fffdf5 0%, #fff 100%);
	border: 1px solid rgba(249, 189, 0, 0.2);
	border-radius: 12px;
	padding: 14px 18px;
	font-size: 13px;
	color: #555;
	line-height: 1.5;
}

.price-best-for-h strong {
	color: #006809;
}

@media (max-width: 991px) {
	.price-plan-horizontal {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 28px;
	}
	
	.price-plan-left {
		border-right: none;
		border-bottom: 1px solid rgba(0, 104, 9, 0.1);
		padding-right: 0;
		padding-bottom: 24px;
	}
}

/* Feature Comparison - Compact Grid with Green BG */
.price-compare-section-v2 {
	background: linear-gradient(180deg, #006809 0%, #004d07 100%);
	position: relative;
}

.price-compare-bg-v2 {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 80% 20%, rgba(249, 189, 0, 0.1) 0%, transparent 50%);
}

.price-compare-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.price-compare-item {
	display: flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 10px;
	padding: 14px 16px;
	transition: all 0.2s ease;
}

.price-compare-item:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.2);
}

.price-compare-item svg {
	color: #fff;
	flex-shrink: 0;
}

.price-compare-item span {
	font-size: 14px;
	color: #fff;
	font-weight: 500;
}

.price-compare-item span em {
	font-style: normal;
	color: rgba(255, 255, 255, 0.6);
	font-weight: 400;
	font-size: 12px;
	display: block;
	margin-top: 2px;
}

.price-ads-note-v2 {
	display: flex;
	align-items: center;
	gap: 10px;
	background: rgba(249, 189, 0, 0.12);
	border: 1px solid rgba(249, 189, 0, 0.25);
	border-radius: 10px;
	padding: 14px 20px;
	margin-top: 20px;
}

.price-ads-note-v2 svg {
	color: #f9bd00;
	flex-shrink: 0;
}

.price-ads-note-v2 span {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.5;
}

.price-ads-note-v2 strong {
	color: #f9bd00;
}

@media (max-width: 991px) {
	.price-compare-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575px) {
	.price-compare-grid {
		grid-template-columns: 1fr;
	}
}

/* Why Choose Section */
.price-why-section {
	background: #fff;
}

.price-why-card {
	background: #f8fdf8;
	border: 1px solid rgba(0, 104, 9, 0.1);
	border-radius: 16px;
	padding: 28px;
	text-align: center;
	height: 100%;
	transition: all 0.3s ease;
}

.price-why-card:hover {
	border-color: rgba(0, 104, 9, 0.2);
	box-shadow: 0 15px 40px rgba(0, 104, 9, 0.1);
	transform: translateY(-5px);
}

.price-why-icon {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, #006809 0%, #008810 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	margin: 0 auto 16px;
}

.price-why-icon-alt {
	background: linear-gradient(135deg, #f9bd00 0%, #ffdd77 100%);
	color: #000;
}

.price-why-card h4 {
	font-size: 18px;
	font-weight: 600;
	color: #111;
	margin-bottom: 8px;
}

.price-why-card p {
	font-size: 14px;
	color: #666;
	margin: 0;
	line-height: 1.5;
}

/* Pricing FAQ - Light Design */
.price-faq-section-v2 {
	background: linear-gradient(180deg, #f8faf8 0%, #ffffff 50%, #f0f7f0 100%);
}

.price-faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.price-faq-card {
	background: #fff;
	border: 1px solid rgba(0, 104, 9, 0.12);
	border-radius: 14px;
	padding: 20px 24px;
	transition: all 0.3s ease;
}

.price-faq-card:hover {
	border-color: rgba(0, 104, 9, 0.25);
	box-shadow: 0 8px 25px rgba(0, 104, 9, 0.08);
}

.price-faq-card-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 10px;
}

.price-faq-icon {
	background: linear-gradient(135deg, #006809 0%, #008810 100%);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 6px 10px;
	border-radius: 6px;
	flex-shrink: 0;
}

.price-faq-card-header h4 {
	font-size: 16px;
	font-weight: 600;
	color: #111;
	margin: 0;
}

.price-faq-card p {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	margin: 0;
	padding-left: 52px;
}

/* Pricing CTA Section */
.price-cta-section {
	background: linear-gradient(180deg, #003a05 0%, #001a02 100%);
}

.price-cta-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 30%, rgba(249, 189, 0, 0.15) 0%, transparent 50%);
}

.price-cta-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
	background-size: 40px 40px;
}

.price-cta-title {
	font-size: 44px;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 16px;
}

.price-cta-subtitle {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
	margin-bottom: 32px;
}

.price-cta-buttons {
	display: flex;
	justify-content: center;
}

.price-cta-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #f9bd00 0%, #e6ac00 100%);
	color: #000;
	font-size: 16px;
	font-weight: 600;
	padding: 18px 36px;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.price-cta-btn-primary:hover {
	background: linear-gradient(135deg, #ffcc33 0%, #f9bd00 100%);
	transform: translateY(-2px);
	box-shadow: 0 15px 40px rgba(249, 189, 0, 0.3);
	color: #000;
}

/* Pricing Page Responsive */
@media (max-width: 991px) {
	.price-hero {
		padding: 140px 0 80px;
	}
	
	.price-hero-title {
		font-size: 40px;
	}
	
	.price-section-title {
		font-size: 30px;
	}
	
	.price-plan-card {
		padding: 36px;
	}
	
	.price-features-grid {
		grid-template-columns: 1fr;
	}
	
	.price-cta-title {
		font-size: 36px;
	}
}

@media (max-width: 767px) {
	.price-hero {
		padding: 120px 0 60px;
	}
	
	.price-hero-title {
		font-size: 32px;
	}
	
	.price-hero-subtitle {
		font-size: 16px;
	}
	
	.price-hero-highlights {
		flex-direction: column;
		align-items: center;
	}
	
	.price-section-title {
		font-size: 26px;
	}
	
	.price-plan-title-h {
		font-size: 26px;
	}
	
	.price-amount-h {
		font-size: 40px;
	}
	
	.price-faq-card-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	
	.price-faq-card p {
		padding-left: 0;
	}
	
	.price-cta-title {
		font-size: 28px;
	}
	
	.price-cta-btn-primary {
		width: 100%;
		justify-content: center;
	}
}

/* ========================================
   Policy Pages (Privacy, Terms, Quality)
   ======================================== */

.policy-hero {
	background: linear-gradient(180deg, #006809 0%, #004d07 100%);
	padding: 160px 0 60px;
	position: relative;
}

.policy-hero-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 30%, rgba(249, 189, 0, 0.1) 0%, transparent 50%);
}

.policy-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(249, 189, 0, 0.15);
	border: 1px solid rgba(249, 189, 0, 0.3);
	padding: 8px 16px;
	border-radius: 50px;
	color: #f9bd00;
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 20px;
}

.policy-title {
	font-size: 44px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 16px;
}

.policy-date {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
}

.policy-date strong {
	color: #f9bd00;
}

/* Policy Content */
.policy-content {
	background: #fff;
}

.policy-intro {
	background: linear-gradient(135deg, #f8fdf8 0%, #fff 100%);
	border: 1px solid rgba(0, 104, 9, 0.1);
	border-left: 4px solid #006809;
	border-radius: 12px;
	padding: 24px 28px;
	margin-bottom: 40px;
}

.policy-intro p {
	font-size: 16px;
	color: #444;
	line-height: 1.8;
	margin-bottom: 12px;
}

.policy-intro p:last-child {
	margin-bottom: 0;
}

.policy-section {
	margin-bottom: 36px;
	padding-bottom: 36px;
	border-bottom: 1px solid #eee;
}

.policy-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.policy-section h2 {
	font-size: 22px;
	font-weight: 700;
	color: #111;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.policy-section h2::before {
	content: '';
	width: 4px;
	height: 24px;
	background: linear-gradient(180deg, #006809 0%, #f9bd00 100%);
	border-radius: 2px;
}

.policy-section p {
	font-size: 15px;
	color: #555;
	line-height: 1.8;
	margin-bottom: 16px;
}

.policy-section p:last-child {
	margin-bottom: 0;
}

.policy-section ul,
.policy-section ol {
	list-style: none;
	padding: 0;
	margin: 0 0 16px 0;
}

.policy-section ul li,
.policy-section ol li {
	position: relative;
	padding-left: 28px;
	font-size: 15px;
	color: #555;
	line-height: 1.7;
	margin-bottom: 12px;
}

.policy-section ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	background: linear-gradient(135deg, #006809 0%, #00a810 100%);
	border-radius: 50%;
}

.policy-section ol {
	counter-reset: policy-counter;
}

.policy-section ol li {
	counter-increment: policy-counter;
}

.policy-section ol li::before {
	content: counter(policy-counter);
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	background: linear-gradient(135deg, #006809 0%, #008810 100%);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.policy-section ul li strong,
.policy-section ol li strong {
	color: #111;
}

.policy-section a {
	color: #006809;
	font-weight: 500;
	text-decoration: underline;
}

.policy-section a:hover {
	color: #004d07;
}

.policy-subsection {
	margin-left: 20px;
	margin-top: 20px;
	padding-left: 20px;
	border-left: 2px solid rgba(0, 104, 9, 0.15);
}

.policy-subsection h3 {
	font-size: 17px;
	font-weight: 600;
	color: #222;
	margin-bottom: 12px;
}

.policy-contact {
	background: linear-gradient(135deg, #fffdf5 0%, #fff 100%);
	border: 1px solid rgba(249, 189, 0, 0.2);
	border-radius: 10px;
	padding: 16px 20px;
	margin-top: 12px;
}

.policy-contact strong {
	color: #006809;
}

.policy-contact a {
	color: #006809;
	font-weight: 600;
}

/* Policy Responsive */
@media (max-width: 767px) {
	.policy-hero {
		padding: 130px 0 50px;
	}
	
	.policy-title {
		font-size: 32px;
	}
	
	.policy-section h2 {
		font-size: 19px;
	}
	
	.policy-subsection {
		margin-left: 0;
		padding-left: 16px;
	}
}

/* ========================================
   Thank You Page
   ======================================== */

.thankyou-hero {
	background: linear-gradient(180deg, #006809 0%, #004d07 60%, #003a05 100%);
	padding: 180px 0 100px;
	position: relative;
	overflow: hidden;
}

.thankyou-hero-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 30%, rgba(249, 189, 0, 0.12) 0%, transparent 50%);
}

.thankyou-hero-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: 60px 60px;
}

.thankyou-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
}

.thankyou-glow-1 {
	width: 400px;
	height: 400px;
	background: rgba(249, 189, 0, 0.15);
	top: 10%;
	left: 10%;
}

.thankyou-glow-2 {
	width: 300px;
	height: 300px;
	background: rgba(0, 168, 16, 0.15);
	bottom: 10%;
	right: 15%;
}

.thankyou-icon {
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, rgba(249, 189, 0, 0.2) 0%, rgba(249, 189, 0, 0.1) 100%);
	border: 2px solid rgba(249, 189, 0, 0.4);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #f9bd00;
	margin: 0 auto 28px;
}

.thankyou-title {
	font-size: 52px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 20px;
}

.thankyou-text {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
	margin-bottom: 36px;
}

.thankyou-actions {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.thankyou-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #f9bd00 0%, #e6ac00 100%);
	color: #000;
	font-size: 16px;
	font-weight: 600;
	padding: 16px 32px;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.thankyou-btn-primary:hover {
	background: linear-gradient(135deg, #ffcc33 0%, #f9bd00 100%);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(249, 189, 0, 0.3);
	color: #000;
}

.thankyou-btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	padding: 16px 32px;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.thankyou-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.3);
	color: #fff;
}

/* Thank You FAQ */
.thankyou-faq {
	background: linear-gradient(180deg, #f8faf8 0%, #fff 100%);
}

.thankyou-faq-header {
	position: sticky;
	top: 100px;
}

.thankyou-faq-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(0, 104, 9, 0.1);
	border: 1px solid rgba(0, 104, 9, 0.2);
	padding: 8px 14px;
	border-radius: 50px;
	color: #006809;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.thankyou-faq-header h2 {
	font-size: 32px;
	font-weight: 700;
	color: #111;
	margin-bottom: 16px;
	line-height: 1.3;
}

.thankyou-faq-header p {
	font-size: 15px;
	color: #666;
	line-height: 1.7;
	margin-bottom: 24px;
}

.thankyou-faq-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, #006809 0%, #008810 100%);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	padding: 14px 24px;
	border-radius: 10px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.thankyou-faq-link:hover {
	background: linear-gradient(135deg, #008810 0%, #00a810 100%);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 104, 9, 0.2);
	color: #fff;
}

.thankyou-faq-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.thankyou-faq-card {
	background: #fff;
	border: 1px solid rgba(0, 104, 9, 0.1);
	border-radius: 14px;
	padding: 22px 26px;
	transition: all 0.3s ease;
}

.thankyou-faq-card:hover {
	border-color: rgba(0, 104, 9, 0.2);
	box-shadow: 0 10px 30px rgba(0, 104, 9, 0.08);
}

.thankyou-faq-q {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 10px;
}

.thankyou-faq-num {
	background: linear-gradient(135deg, #006809 0%, #008810 100%);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 5px 10px;
	border-radius: 6px;
}

.thankyou-faq-q h4 {
	font-size: 16px;
	font-weight: 600;
	color: #111;
	margin: 0;
}

.thankyou-faq-card p {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	margin: 0;
	padding-left: 48px;
}

/* Thank You CTA */
.thankyou-cta {
	background: linear-gradient(180deg, #006809 0%, #003a05 100%);
	position: relative;
}

.thankyou-cta-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 50%, rgba(249, 189, 0, 0.1) 0%, transparent 50%);
}

.thankyou-cta-title {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 12px;
	line-height: 1.3;
}

.thankyou-cta-subtitle {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 28px;
}

.thankyou-cta-buttons {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.thankyou-cta-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #f9bd00 0%, #e6ac00 100%);
	color: #000;
	font-size: 15px;
	font-weight: 600;
	padding: 14px 28px;
	border-radius: 10px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.thankyou-cta-btn-primary:hover {
	background: linear-gradient(135deg, #ffcc33 0%, #f9bd00 100%);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(249, 189, 0, 0.3);
	color: #000;
}

.thankyou-cta-btn-secondary {
	display: inline-flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	padding: 14px 28px;
	border-radius: 10px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.thankyou-cta-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.3);
	color: #fff;
}

/* Thank You Responsive */
@media (max-width: 991px) {
	.thankyou-faq-header {
		position: relative;
		top: 0;
	}
}

@media (max-width: 767px) {
	.thankyou-hero {
		padding: 140px 0 70px;
	}
	
	.thankyou-title {
		font-size: 36px;
	}
	
	.thankyou-text {
		font-size: 15px;
	}
	
	.thankyou-faq-header h2 {
		font-size: 26px;
	}
	
	.thankyou-faq-q {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	
	.thankyou-faq-card p {
		padding-left: 0;
	}
	
	.thankyou-cta-title {
		font-size: 28px;
	}
	
	.thankyou-btn-primary,
	.thankyou-btn-secondary,
	.thankyou-cta-btn-primary,
	.thankyou-cta-btn-secondary {
		width: 100%;
		justify-content: center;
	}
}