/* Reset and Base Styles */
* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	line-height: 1.5;
	background-color: #f0fdf4;
	color: #1f2937;
}

/* Utility Classes */
.hidden {
	display: none !important;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

/* Layout */
.container {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.container-max {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
}

/* ============================================
   АНИМАЦИИ
   ============================================ */

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes pulse {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@keyframes shimmer {
	0% {
		background-position: -1000px 0;
	}
	100% {
		background-position: 1000px 0;
	}
}

/* ============================================
   HEADER
   ============================================ */

.header {
	background: linear-gradient(135deg, #dcfce7 0%, #ffffff 100%);
	color: #1f2937;
	padding-top: 1rem;
	padding-bottom: 1rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	border-bottom: 2px solid rgba(16, 185, 129, 0.2);
	position: sticky;
	top: 0;
	z-index: 1000;
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	animation: fadeIn 0.6s ease-out;
	transition: all 0.3s ease;
}

.header:hover {
	border-bottom-color: rgba(16, 185, 129, 0.4);
	box-shadow: 0 6px 30px rgba(16, 185, 129, 0.2);
}

.header-container {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.logo-link:hover {
	transform: scale(1.05);
}

.logo-image {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	transition: transform 0.3s ease;
}

.logo-link:hover .logo-image {
	transform: rotate(5deg) scale(1.1);
}

.logo-text {
	font-size: 1.5rem;
	font-weight: 700;
	background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #059669 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.025em;
	transition: all 0.3s ease;
}

.logo-link:hover .logo-text {
	background: linear-gradient(135deg, #6ee7b7 0%, #34d399 50%, #10b981 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav {
	display: none;
	align-items: center;
	gap: 2rem;
}

@media (min-width: 768px) {
	.nav {
		display: flex;
	}
}

.nav-link {
	color: #374151;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.5rem 0;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #34d399, #10b981);
	transition: width 0.3s ease;
}

.nav-link:hover {
	color: #34d399;
	transform: translateY(-2px);
}

.nav-link:hover::after {
	width: 100%;
}

.menu-toggle {
	display: block;
	color: #374151;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	transition: all 0.3s ease;
	border-radius: 0.5rem;
}

@media (min-width: 768px) {
	.menu-toggle {
		display: none;
	}
}

.menu-toggle:hover {
	color: #34d399;
	background-color: rgba(16, 185, 129, 0.1);
	transform: scale(1.1);
}

.menu-toggle:focus {
	outline: 2px solid rgba(16, 185, 129, 0.5);
	outline-offset: 2px;
}

.menu-toggle-icon {
	width: 1.75rem;
	height: 1.75rem;
	transition: transform 0.3s ease;
}

.menu-toggle:hover .menu-toggle-icon {
	transform: rotate(90deg);
}

.mobile-menu {
	display: none;
	margin-top: 1rem;
	animation: fadeInUp 0.3s ease-out;
}

.mobile-menu:not(.hidden) {
	display: block !important;
}

@media (min-width: 768px) {
	.mobile-menu {
		display: none !important;
	}
	
	.mobile-menu:not(.hidden) {
		display: none !important;
	}
}

.mobile-menu-item {
	display: block;
	padding: 0.75rem 1rem;
	border-radius: 0.5rem;
	color: #374151;
	text-decoration: none;
	transition: all 0.3s ease;
	margin-bottom: 0.5rem;
}

.mobile-menu-item:hover {
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.1));
	color: #34d399;
	transform: translateX(10px);
	padding-left: 1.5rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
	position: relative;
	background: linear-gradient(135deg, #ffffff 0%, #dcfce7 50%, #f0fdf4 100%);
	color: #1f2937;
	padding-top: 8rem;
	padding-bottom: 8rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	overflow: hidden;
	min-height: 90vh;
	display: flex;
	align-items: center;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
	animation: pulse 4s ease-in-out infinite;
}

.hero-container {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 2.5rem;
	position: relative;
	z-index: 1;
}

.hero-content {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	text-align: center;
	animation: fadeInUp 0.8s ease-out;
}

.hero-title {
	font-size: 2.25rem;
	font-weight: 800;
	line-height: 1.2;
	margin: 0;
	background: linear-gradient(135deg, #ffffff 0%, #374151 50%, #34d399 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: fadeInUp 1s ease-out;
}

.hero-description {
	color: #4b5563;
	font-size: 1.125rem;
	line-height: 1.75;
	animation: fadeInUp 1.2s ease-out;
}

.hero-buttons {
	padding-top: 1rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
	animation: fadeInUp 1.4s ease-out;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.875rem 2rem;
	border-radius: 0.75rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	font-size: 0.875rem;
	position: relative;
	overflow: hidden;
}

.button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.button:hover::before {
	left: 100%;
}

.button-primary {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.button-primary:hover {
	background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
}

.button-primary:active {
	transform: translateY(-1px);
}

.button-secondary {
	border: 2px solid #10b981;
	color: #10b981;
	background: transparent;
	position: relative;
}

.button-secondary::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: linear-gradient(135deg, #10b981, #059669);
	transition: width 0.3s ease;
	z-index: -1;
}

.button-secondary:hover {
	color: #ffffff;
	border-color: #34d399;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.button-secondary:hover::after {
	width: 100%;
}

.hero-image-wrapper {
	width: 100%;
	position: relative;
	animation: fadeInUp 1.6s ease-out;
}

.hero-image {
	width: 100%;
	border-radius: 1rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
	border: 2px solid rgba(16, 185, 129, 0.3);
	transition: all 0.5s ease;
}

.hero-image:hover {
	transform: scale(1.02);
	border-color: rgba(16, 185, 129, 0.6);
	box-shadow: 0 35px 60px -12px rgba(16, 185, 129, 0.4);
}

.hero-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(240, 253, 244, 0.8), rgba(240, 253, 244, 0.3), transparent);
	border-radius: 1rem;
	pointer-events: none;
}

.hero-decorative-bg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	height: 80%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
	filter: blur(80px);
	border-radius: 50%;
	z-index: 0;
	animation: float 6s ease-in-out infinite;
}

/* ============================================
   SECTION
   ============================================ */

.section {
	padding-top: 6rem;
	padding-bottom: 6rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	position: relative;
	overflow: hidden;
}

.section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.5), transparent);
}

.section-light {
	background: linear-gradient(180deg, #ffffff 0%, #dcfce7 100%);
}

.section-white {
	background: linear-gradient(180deg, #dcfce7 0%, #ffffff 100%);
}

.section-dark {
	background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.section-container {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
}

.section-header {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	animation: fadeInUp 0.6s ease-out;
}

.section-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border-radius: 9999px;
	border: 2px solid rgba(16, 185, 129, 0.3);
	padding: 0.5rem 1rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: #34d399;
	background: rgba(16, 185, 129, 0.1);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	animation: fadeInUp 0.8s ease-out;
}

.section-badge:hover {
	border-color: rgba(16, 185, 129, 0.6);
	background: rgba(16, 185, 129, 0.2);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.section-title {
	margin-top: 1.5rem;
	font-size: 2.5rem;
	font-weight: 800;
	letter-spacing: -0.025em;
	background: linear-gradient(135deg, #ffffff 0%, #374151 50%, #34d399 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.2;
	animation: fadeInUp 1s ease-out;
}

.section-description {
	margin-top: 1.5rem;
	font-size: 1.125rem;
	line-height: 1.75;
	color: #4b5563;
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	animation: fadeInUp 1.2s ease-out;
}

/* ============================================
   CARDS GRID
   ============================================ */

.cards-grid {
	margin-top: 4rem;
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
}

.card {
	border-radius: 1.5rem;
	border: 2px solid rgba(16, 185, 129, 0.2);
	background: linear-gradient(135deg, rgba(220, 252, 231, 0.8) 0%, rgba(240, 253, 244, 0.8) 100%);
	backdrop-filter: blur(10px);
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	animation: fadeInUp 0.6s ease-out;
}

.card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #10b981, #059669, #34d399);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.card:hover {
	border-color: rgba(16, 185, 129, 0.6);
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
	background: linear-gradient(135deg, rgba(220, 252, 231, 0.95) 0%, rgba(240, 253, 244, 0.95) 100%);
}

.card:hover::before {
	transform: scaleX(1);
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }

.card-icon {
	border-radius: 1rem;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.1) 100%);
	color: #34d399;
	padding: 1rem;
	display: inline-flex;
	width: 4rem;
	height: 4rem;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease;
	border: 2px solid rgba(16, 185, 129, 0.3);
}

.card:hover .card-icon {
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.4) 0%, rgba(5, 150, 105, 0.3) 100%);
	transform: rotate(5deg) scale(1.1);
	border-color: rgba(16, 185, 129, 0.6);
	box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.card-icon svg {
	width: 2rem;
	height: 2rem;
	transition: transform 0.4s ease;
}

.card:hover .card-icon svg {
	transform: scale(1.2);
}

.card-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #1f2937;
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
	transition: color 0.3s ease;
}

.card:hover .card-title {
	color: #34d399;
}

.card-description {
	font-size: 0.9375rem;
	color: #4b5563;
	line-height: 1.6;
	transition: color 0.3s ease;
}

.card:hover .card-description {
	color: #374151;
}

/* ============================================
   FEATURE CARD
   ============================================ */

.feature-card {
	display: flex;
	flex-direction: column;
	border-radius: 1.5rem;
	border: 2px solid rgba(16, 185, 129, 0.2);
	background: linear-gradient(135deg, rgba(220, 252, 231, 0.8) 0%, rgba(240, 253, 244, 0.8) 100%);
	backdrop-filter: blur(10px);
	padding: 2.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	animation: fadeInUp 0.6s ease-out;
}

.feature-card::after {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.feature-card:hover {
	border-color: rgba(16, 185, 129, 0.6);
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
}

.feature-card:hover::after {
	opacity: 1;
}

.feature-icon {
	margin: 0 auto;
	border-radius: 50%;
	width: 5rem;
	height: 5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(5, 150, 105, 0.2) 100%);
	color: #34d399;
	border: 3px solid rgba(16, 185, 129, 0.4);
	transition: all 0.4s ease;
	position: relative;
}

.feature-icon::before {
	content: '';
	position: absolute;
	inset: -3px;
	border-radius: 50%;
	background: linear-gradient(135deg, #10b981, #059669, #34d399);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
}

.feature-card:hover .feature-icon {
	transform: rotate(360deg) scale(1.1);
	border-color: rgba(16, 185, 129, 0.8);
	box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
}

.feature-card:hover .feature-icon::before {
	opacity: 0.3;
	animation: pulse 2s ease-in-out infinite;
}

.feature-icon svg {
	width: 2.5rem;
	height: 2.5rem;
	transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon svg {
	transform: scale(1.2);
}

.feature-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 0.75rem;
	text-align: center;
	transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
	color: #34d399;
}

.feature-description {
	font-size: 0.9375rem;
	color: #4b5563;
	text-align: center;
	line-height: 1.6;
	transition: color 0.3s ease;
}

.feature-card:hover .feature-description {
	color: #374151;
}

/* ============================================
   PROCESS STEPS
   ============================================ */

.process-grid {
	margin-top: 4rem;
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
}

.process-step {
	position: relative;
	text-align: center;
	animation: fadeInUp 0.6s ease-out;
	padding: 2rem;
	border-radius: 1.5rem;
	transition: all 0.4s ease;
}

.process-step:hover {
	background: rgba(16, 185, 129, 0.05);
	transform: translateY(-5px);
}

.process-number {
	margin: 0 auto;
	border-radius: 50%;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: #ffffff;
	width: 4rem;
	height: 4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.process-number::before {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: 50%;
	background: linear-gradient(135deg, #10b981, #059669, #34d399);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
	animation: pulse 2s ease-in-out infinite;
}

.process-step:hover .process-number {
	transform: scale(1.15) rotate(5deg);
	box-shadow: 0 12px 30px rgba(16, 185, 129, 0.6);
}

.process-step:hover .process-number::before {
	opacity: 0.5;
}

.process-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 0.75rem;
	transition: color 0.3s ease;
}

.process-step:hover .process-title {
	color: #34d399;
}

.process-description {
	font-size: 0.9375rem;
	color: #4b5563;
	line-height: 1.6;
	transition: color 0.3s ease;
}

.process-step:hover .process-description {
	color: #374151;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
	padding-top: 8rem;
	padding-bottom: 8rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #ffffff 100%);
}

.testimonials-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 30% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
	animation: pulse 6s ease-in-out infinite;
	pointer-events: none;
}

.testimonials-container {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
}

.testimonials-header {
	text-align: center;
	margin-bottom: 5rem;
	animation: fadeInUp 0.8s ease-out;
}

.testimonials-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border-radius: 9999px;
	border: 2px solid rgba(16, 185, 129, 0.4);
	padding: 0.625rem 1.25rem;
	font-size: 0.875rem;
	font-weight: 700;
	color: #34d399;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 100%);
	backdrop-filter: blur(10px);
	transition: all 0.4s ease;
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.testimonials-badge:hover {
	border-color: rgba(16, 185, 129, 0.7);
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.25) 0%, rgba(5, 150, 105, 0.2) 100%);
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.testimonials-title {
	margin-top: 2rem;
	font-size: 3rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, #ffffff 0%, #374151 40%, #34d399 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.1;
	animation: fadeInUp 1s ease-out;
}

.testimonials-subtitle {
	margin-top: 1.5rem;
	font-size: 1.25rem;
	line-height: 1.75;
	color: #4b5563;
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	animation: fadeInUp 1.2s ease-out;
}

.testimonials-grid {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: 1fr;
}

.testimonial-item {
	position: relative;
	border-radius: 2rem;
	border: 2px solid rgba(16, 185, 129, 0.25);
	background: linear-gradient(135deg, rgba(220, 252, 231, 0.9) 0%, rgba(240, 253, 244, 0.9) 100%);
	backdrop-filter: blur(20px);
	padding: 3rem;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	animation: fadeInUp 0.8s ease-out;
}

.testimonial-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #10b981, #059669, #34d399, #10b981);
	background-size: 200% 100%;
	transform: scaleX(0);
	transition: transform 0.5s ease;
	animation: shimmer 3s linear infinite;
}

.testimonial-item:hover {
	border-color: rgba(16, 185, 129, 0.7);
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 25px 50px rgba(16, 185, 129, 0.4);
	background: linear-gradient(135deg, rgba(220, 252, 231, 0.95) 0%, rgba(240, 253, 244, 0.95) 100%);
}

.testimonial-item:hover::before {
	transform: scaleX(1);
}

.testimonial-item:nth-child(1) { animation-delay: 0.1s; }
.testimonial-item:nth-child(2) { animation-delay: 0.3s; }
.testimonial-item:nth-child(3) { animation-delay: 0.5s; }

.testimonial-quote-icon {
	position: absolute;
	top: 2rem;
	right: 2rem;
	width: 4rem;
	height: 4rem;
	color: rgba(16, 185, 129, 0.2);
	transition: all 0.4s ease;
	z-index: 0;
}

.testimonial-item:hover .testimonial-quote-icon {
	color: rgba(16, 185, 129, 0.4);
	transform: scale(1.2) rotate(5deg);
}

.testimonial-content {
	position: relative;
	z-index: 1;
	margin-bottom: 2.5rem;
}

.testimonial-quote {
	font-size: 1.125rem;
	color: #1f2937;
	line-height: 1.8;
	margin: 0;
	font-style: italic;
	transition: color 0.3s ease;
}

.testimonial-item:hover .testimonial-quote {
	color: #1f2937;
}

.testimonial-rating {
	display: flex;
	gap: 0.5rem;
	margin-top: 1.5rem;
}

.star {
	width: 1.5rem;
	height: 1.5rem;
	position: relative;
	transition: transform 0.3s ease;
}

.star::before {
	content: '★';
	position: absolute;
	inset: 0;
	color: #475569;
	font-size: 1.5rem;
	line-height: 1;
	transition: all 0.3s ease;
}

.star.filled::before {
	color: #fbbf24;
	text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.testimonial-item:hover .star {
	transform: scale(1.1);
}

.testimonial-item:hover .star.filled::before {
	color: #fcd34d;
	text-shadow: 0 0 15px rgba(252, 211, 77, 0.7);
}

.testimonial-author-block {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(16, 185, 129, 0.2);
	position: relative;
	z-index: 1;
}

.testimonial-avatar-wrapper {
	position: relative;
	flex-shrink: 0;
}

.testimonial-avatar-new {
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	border: 3px solid rgba(16, 185, 129, 0.4);
	transition: all 0.4s ease;
	position: relative;
	z-index: 2;
	object-fit: cover;
}

.testimonial-avatar-glow {
	position: absolute;
	inset: -5px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
	animation: pulse 2s ease-in-out infinite;
}

.testimonial-item:hover .testimonial-avatar-new {
	border-color: rgba(16, 185, 129, 0.9);
	transform: scale(1.1);
	box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
}

.testimonial-item:hover .testimonial-avatar-glow {
	opacity: 1;
}

.testimonial-author-info {
	flex: 1;
}

.testimonial-author-name {
	font-size: 1.25rem;
	font-weight: 700;
	color: #1f2937;
	margin: 0 0 0.5rem 0;
	transition: color 0.3s ease;
}

.testimonial-item:hover .testimonial-author-name {
	color: #34d399;
}

.testimonial-author-position {
	font-size: 0.9375rem;
	color: #4b5563;
	margin: 0 0 0.75rem 0;
	transition: color 0.3s ease;
}

.testimonial-item:hover .testimonial-author-position {
	color: #374151;
}

.testimonial-company-badge {
	display: inline-block;
	padding: 0.375rem 0.875rem;
	border-radius: 9999px;
	font-size: 0.75rem;
	font-weight: 600;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.15) 100%);
	color: #34d399;
	border: 1px solid rgba(16, 185, 129, 0.3);
	transition: all 0.3s ease;
}

.testimonial-item:hover .testimonial-company-badge {
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(5, 150, 105, 0.25) 100%);
	border-color: rgba(16, 185, 129, 0.5);
	transform: scale(1.05);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
	background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
	color: #374151;
	padding-top: 4rem;
	padding-bottom: 3rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	border-top: 2px solid rgba(16, 185, 129, 0.2);
	position: relative;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.5), transparent);
}

.footer-container {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
}

.footer-grid {
	display: grid;
	gap: 3rem;
	grid-template-columns: 1fr;
}

.footer-section-title {
	font-size: 0.875rem;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	position: relative;
	padding-bottom: 0.75rem;
}

.footer-section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 3rem;
	height: 2px;
	background: linear-gradient(90deg, #10b981, #059669);
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-link {
	color: #4b5563;
	text-decoration: none;
	font-size: 0.9375rem;
	transition: all 0.3s ease;
	position: relative;
	padding-left: 0;
}

.footer-link::before {
	content: '→';
	position: absolute;
	left: -1.5rem;
	opacity: 0;
	transition: all 0.3s ease;
	color: #34d399;
}

.footer-link:hover {
	color: #34d399;
	padding-left: 1.5rem;
	transform: translateX(5px);
}

.footer-link:hover::before {
	opacity: 1;
	left: 0;
}

.footer-bottom {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(16, 185, 129, 0.2);
	text-align: center;
	font-size: 0.875rem;
	color: #64748b;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */

.scroll-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 50;
	display: none;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: #ffffff;
	padding: 1rem;
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	width: 3.5rem;
	height: 3.5rem;
}

.scroll-top:hover {
	background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 12px 35px rgba(16, 185, 129, 0.7);
}

.scroll-top:active {
	transform: translateY(-3px) scale(1.05);
}

.scroll-top:focus {
	outline: 2px solid rgba(16, 185, 129, 0.5);
	outline-offset: 2px;
}

/* ============================================
   BADGE
   ============================================ */

.badge {
	border-radius: 9999px;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	padding: 0.375rem 0.875rem;
	font-size: 0.75rem;
	font-weight: 700;
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
	transition: all 0.3s ease;
}

.badge:hover {
	transform: scale(1.05);
	box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

/* ============================================
   TEXT UTILITIES
   ============================================ */

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-white {
	color: #ffffff;
}

.text-gray-light {
	color: #374151;
}

.text-gray-medium {
	color: #4b5563;
}

.text-gray-dark {
	color: #64748b;
}

.text-primary {
	color: #34d399;
}

.text-purple {
	color: #10b981;
}

.font-bold {
	font-weight: 700;
}

.font-semibold {
	font-weight: 600;
}

.font-medium {
	font-weight: 500;
}

.leading-tight {
	line-height: 1.25;
}

.leading-relaxed {
	line-height: 1.75;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (min-width: 640px) {
	.hero-title {
		font-size: 3rem;
	}
	
	.hero-description {
		font-size: 1.25rem;
	}
	
	.hero-buttons {
		flex-direction: row;
	}
	
	.cards-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.process-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.testimonials-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 768px) {
	.header {
		padding-left: 3rem;
		padding-right: 3rem;
	}
	
	.hero {
		padding-left: 3rem;
		padding-right: 3rem;
	}
	
	.hero-container {
		flex-direction: row;
	}
	
	.hero-content {
		width: 50%;
		text-align: left;
	}
	
	.hero-buttons {
		justify-content: flex-start;
	}
	
	.hero-image-wrapper {
		width: 50%;
	}
	
	.section {
		padding-left: 2rem;
		padding-right: 2rem;
	}
	
	.testimonials-section {
		padding-left: 2rem;
		padding-right: 2rem;
	}
	
	.cards-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.process-grid {
		grid-template-columns: repeat(4, 1fr);
	}
	
	.testimonials-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.footer-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (min-width: 1024px) {
	.header {
		padding-left: 5rem;
		padding-right: 5rem;
	}
	
	.hero {
		padding-left: 5rem;
		padding-right: 5rem;
	}
	
	.section {
		padding-left: 2rem;
		padding-right: 2rem;
	}
	
	.testimonials-section {
		padding-left: 2rem;
		padding-right: 2rem;
	}
	
	.hero-title {
		font-size: 3.75rem;
	}
	
	.section-title {
		font-size: 3rem;
	}
	
	.testimonials-title {
		font-size: 3.5rem;
	}
	
	.cards-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.testimonials-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ============================================
   DARK MODE SUPPORT (уже темная тема по умолчанию)
   ============================================ */

@media (prefers-color-scheme: light) {
	body {
		background-color: #f8fafc;
		color: #1e293b;
	}
	
	.section-light {
		background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
	}
	
	.section-white {
		background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
	}
	
	.card-title,
	.feature-title,
	.process-title,
	.testimonial-name {
		color: #1e293b;
	}
	
	.card-description,
	.feature-description,
	.process-description,
	.testimonial-text {
		color: #475569;
	}
}

/* ============================================
   NEW HERO SECTION
   ============================================ */

.hero-new {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 6rem;
	padding-bottom: 6rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	overflow: hidden;
}

.hero-new-background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-new-gradient-1 {
	position: absolute;
	top: -20%;
	left: -10%;
	width: 60%;
	height: 60%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 8s ease-in-out infinite;
}

.hero-new-gradient-2 {
	position: absolute;
	bottom: -20%;
	right: -10%;
	width: 60%;
	height: 60%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 10s ease-in-out infinite reverse;
}

.hero-new-gradient-3 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	height: 80%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
	filter: blur(120px);
	animation: pulse 6s ease-in-out infinite;
}

.hero-new-container {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	position: relative;
	z-index: 1;
}

.hero-new-content {
	text-align: center;
	animation: fadeInUp 0.8s ease-out;
}

.hero-new-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	border-radius: 9999px;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.15) 100%);
	border: 2px solid rgba(16, 185, 129, 0.3);
	color: #34d399;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 2rem;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.hero-new-badge:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.hero-new-title {
	font-size: 2.5rem;
	font-weight: 900;
	line-height: 1.1;
	margin: 0 0 1.5rem 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.hero-new-title-line {
	display: block;
	background: linear-gradient(135deg, #ffffff 0%, #374151 50%, #34d399 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: fadeInUp 1s ease-out;
}

.hero-new-title-line:nth-child(2) { animation-delay: 0.2s; }
.hero-new-title-line:nth-child(3) { animation-delay: 0.4s; }

.hero-new-title-accent {
	background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #059669 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-new-description {
	font-size: 1.125rem;
	line-height: 1.75;
	color: #4b5563;
	max-width: 42rem;
	margin: 0 auto 2.5rem;
	animation: fadeInUp 1.2s ease-out;
}

.hero-new-stats {
	display: flex;
	justify-content: center;
	gap: 3rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
	animation: fadeInUp 1.4s ease-out;
}

.hero-new-stat {
	text-align: center;
}

.hero-new-stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.hero-new-stat-label {
	font-size: 0.875rem;
	color: #4b5563;
	font-weight: 500;
}

.hero-new-buttons {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
	animation: fadeInUp 1.6s ease-out;
}

.hero-new-button {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border-radius: 0.75rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.hero-new-button-primary {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.hero-new-button-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

.hero-new-button-secondary {
	background: rgba(16, 185, 129, 0.1);
	color: #34d399;
	border: 2px solid rgba(16, 185, 129, 0.3);
}

.hero-new-button-secondary:hover {
	background: rgba(16, 185, 129, 0.2);
	border-color: rgba(16, 185, 129, 0.5);
	transform: translateY(-2px);
}

.hero-new-visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 400px;
	animation: fadeIn 1.8s ease-out;
}

.hero-new-visual-wrapper {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	max-width: 500px;
	width: 100%;
}

.hero-new-card {
	background: linear-gradient(135deg, rgba(220, 252, 231, 0.9) 0%, rgba(240, 253, 244, 0.9) 100%);
	border: 2px solid rgba(16, 185, 129, 0.3);
	border-radius: 1.5rem;
	padding: 2rem;
	backdrop-filter: blur(20px);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.hero-new-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #10b981, #059669, #34d399);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.hero-new-card:hover {
	transform: translateY(-10px) scale(1.05);
	border-color: rgba(16, 185, 129, 0.6);
	box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
}

.hero-new-card:hover::before {
	transform: scaleX(1);
}

.hero-new-card-1 { animation: fadeInUp 2s ease-out; }
.hero-new-card-2 { animation: fadeInUp 2.2s ease-out; }
.hero-new-card-3 { 
	grid-column: 1 / -1;
	animation: fadeInUp 2.4s ease-out;
}

.hero-new-card-icon {
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.15) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #34d399;
	margin-bottom: 1rem;
	transition: all 0.3s ease;
}

.hero-new-card:hover .hero-new-card-icon {
	transform: scale(1.1) rotate(5deg);
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(5, 150, 105, 0.25) 100%);
}

.hero-new-card-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.hero-new-card-title {
	font-size: 0.875rem;
	color: #4b5563;
	font-weight: 500;
	margin: 0;
}

.hero-new-card-value {
	font-size: 1.75rem;
	font-weight: 800;
	background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-new-glow {
	position: absolute;
	inset: -50%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
	filter: blur(80px);
	animation: pulse 4s ease-in-out infinite;
	z-index: -1;
}

@media (min-width: 768px) {
	.hero-new-container {
		grid-template-columns: 1fr 1fr;
		align-items: center;
	}
	
	.hero-new-content {
		text-align: left;
	}
	
	.hero-new-buttons {
		justify-content: flex-start;
	}
	
	.hero-new-title {
		font-size: 3.5rem;
	}
	
	.hero-new-visual-wrapper {
		max-width: 600px;
	}
}

@media (min-width: 1024px) {
	.hero-new-title {
		font-size: 4rem;
	}
}

/* ============================================
   SOLUTIONS SECTION
   ============================================ */

.solutions-section {
	padding-top: 8rem;
	padding-bottom: 8rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #ffffff 100%);
}

.solutions-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

.solutions-container {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
}

.solutions-header {
	text-align: center;
	margin-bottom: 5rem;
	animation: fadeInUp 0.8s ease-out;
}

.solutions-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	border-radius: 9999px;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 100%);
	border: 2px solid rgba(16, 185, 129, 0.4);
	color: #34d399;
	font-size: 0.875rem;
	font-weight: 700;
	backdrop-filter: blur(10px);
	transition: all 0.4s ease;
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.solutions-badge:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.solutions-title {
	margin-top: 2rem;
	font-size: 3rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, #ffffff 0%, #374151 40%, #34d399 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.1;
	animation: fadeInUp 1s ease-out;
}

.solutions-subtitle {
	margin-top: 1.5rem;
	font-size: 1.25rem;
	line-height: 1.75;
	color: #4b5563;
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	animation: fadeInUp 1.2s ease-out;
}

.solutions-grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
	margin-bottom: 4rem;
}

.solution-card {
	background: linear-gradient(135deg, rgba(220, 252, 231, 0.9) 0%, rgba(240, 253, 244, 0.9) 100%);
	border: 2px solid rgba(16, 185, 129, 0.25);
	border-radius: 1.5rem;
	padding: 2.5rem;
	backdrop-filter: blur(20px);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	animation: fadeInUp 0.8s ease-out;
}

.solution-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #10b981, #059669, #34d399, #10b981);
	background-size: 200% 100%;
	transform: scaleX(0);
	transition: transform 0.5s ease;
}

.solution-card:hover {
	border-color: rgba(16, 185, 129, 0.7);
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 25px 50px rgba(16, 185, 129, 0.4);
	background: linear-gradient(135deg, rgba(220, 252, 231, 0.95) 0%, rgba(240, 253, 244, 0.95) 100%);
}

.solution-card:hover::before {
	transform: scaleX(1);
	animation: shimmer 3s linear infinite;
}

.solution-card:nth-child(1) { animation-delay: 0.1s; }
.solution-card:nth-child(2) { animation-delay: 0.2s; }
.solution-card:nth-child(3) { animation-delay: 0.3s; }
.solution-card:nth-child(4) { animation-delay: 0.4s; }
.solution-card:nth-child(5) { animation-delay: 0.5s; }
.solution-card:nth-child(6) { animation-delay: 0.6s; }

.solution-card-icon {
	width: 4rem;
	height: 4rem;
	border-radius: 1rem;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.15) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #34d399;
	margin-bottom: 1.5rem;
	transition: all 0.4s ease;
}

.solution-card:hover .solution-card-icon {
	transform: scale(1.1) rotate(5deg);
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(5, 150, 105, 0.25) 100%);
	box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.solution-card-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1f2937;
	margin: 0 0 1rem 0;
	transition: color 0.3s ease;
}

.solution-card:hover .solution-card-title {
	color: #34d399;
}

.solution-card-description {
	font-size: 1rem;
	line-height: 1.75;
	color: #4b5563;
	margin: 0 0 1.5rem 0;
	transition: color 0.3s ease;
}

.solution-card:hover .solution-card-description {
	color: #374151;
}

.solution-card-footer {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(16, 185, 129, 0.2);
	transition: all 0.3s ease;
}

.solution-card:hover .solution-card-footer {
	border-color: rgba(16, 185, 129, 0.4);
}

.solution-card-link {
	color: #34d399;
	font-weight: 600;
	font-size: 0.9375rem;
	transition: all 0.3s ease;
}

.solution-card:hover .solution-card-link {
	color: #6ee7b7;
	transform: translateX(5px);
}

.solution-card-footer svg {
	color: #34d399;
	transition: all 0.3s ease;
}

.solution-card:hover .solution-card-footer svg {
	color: #6ee7b7;
	transform: translateX(5px);
}

.solutions-cta {
	text-align: center;
	animation: fadeInUp 1.4s ease-out;
}

.solutions-cta-button {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2.5rem;
	border-radius: 0.75rem;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: #ffffff;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.solutions-cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section {
	padding-top: 8rem;
	padding-bottom: 8rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #ffffff 0%, #dcfce7 50%, #f0fdf4 100%);
}

.pricing-background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.pricing-gradient-1 {
	position: absolute;
	top: -10%;
	left: -10%;
	width: 50%;
	height: 50%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 8s ease-in-out infinite;
}

.pricing-gradient-2 {
	position: absolute;
	bottom: -10%;
	right: -10%;
	width: 50%;
	height: 50%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 10s ease-in-out infinite reverse;
}

.pricing-container {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
}

.pricing-header {
	text-align: center;
	margin-bottom: 4rem;
	animation: fadeInUp 0.8s ease-out;
}

.pricing-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	border-radius: 9999px;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 100%);
	border: 2px solid rgba(16, 185, 129, 0.4);
	color: #34d399;
	font-size: 0.875rem;
	font-weight: 700;
	backdrop-filter: blur(10px);
	transition: all 0.4s ease;
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.pricing-badge:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.pricing-title {
	margin-top: 2rem;
	font-size: 3rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, #ffffff 0%, #374151 40%, #34d399 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.1;
	animation: fadeInUp 1s ease-out;
}

.pricing-subtitle {
	margin-top: 1.5rem;
	font-size: 1.25rem;
	line-height: 1.75;
	color: #4b5563;
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	animation: fadeInUp 1.2s ease-out;
}

.pricing-table-wrapper {
	overflow-x: auto;
	margin-bottom: 3rem;
	animation: fadeInUp 1.4s ease-out;
}

.pricing-table {
	width: 100%;
	border-collapse: collapse;
	background: linear-gradient(135deg, rgba(220, 252, 231, 0.9) 0%, rgba(240, 253, 244, 0.9) 100%);
	border: 2px solid rgba(16, 185, 129, 0.25);
	border-radius: 1.5rem;
	overflow: hidden;
	backdrop-filter: blur(20px);
}

.pricing-table-header {
	padding: 1.5rem 1.25rem;
	text-align: left;
	font-size: 1.125rem;
	font-weight: 700;
	color: #1f2937;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.15) 100%);
	border-bottom: 2px solid rgba(16, 185, 129, 0.3);
}

.pricing-table-header:first-child {
	border-top-left-radius: 1.5rem;
}

.pricing-table-header:last-child {
	border-top-right-radius: 1.5rem;
	text-align: center;
}

.pricing-table-header:nth-child(2),
.pricing-table-header:nth-child(3),
.pricing-table-header:nth-child(4) {
	text-align: center;
}

.pricing-table-label {
	padding: 1.25rem 1.5rem;
	font-size: 1rem;
	font-weight: 600;
	color: #374151;
	border-bottom: 1px solid rgba(16, 185, 129, 0.15);
	background: rgba(240, 253, 244, 0.5);
}

.pricing-table-cell {
	padding: 1.25rem 1.5rem;
	font-size: 1rem;
	color: #4b5563;
	border-bottom: 1px solid rgba(16, 185, 129, 0.15);
	text-align: center;
	transition: all 0.3s ease;
}

.pricing-table tbody tr:hover .pricing-table-cell {
	background: rgba(16, 185, 129, 0.1);
	color: #374151;
}

.pricing-table tbody tr:last-child .pricing-table-label,
.pricing-table tbody tr:last-child .pricing-table-cell {
	border-bottom: none;
}

.pricing-note {
	margin-bottom: 3rem;
	animation: fadeInUp 1.6s ease-out;
}

.pricing-note-text {
	font-size: 0.9375rem;
	line-height: 1.75;
	color: #4b5563;
	text-align: center;
	max-width: 60rem;
	margin: 0 auto;
	padding: 1.5rem;
	background: rgba(16, 185, 129, 0.05);
	border: 1px solid rgba(16, 185, 129, 0.2);
	border-radius: 0.75rem;
}

.pricing-note-text strong {
	color: #34d399;
}

.pricing-cta {
	text-align: center;
	animation: fadeInUp 1.8s ease-out;
}

.pricing-cta-button {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2.5rem;
	border-radius: 0.75rem;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: #ffffff;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.pricing-cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

@media (min-width: 768px) {
	.pricing-title {
		font-size: 3.5rem;
	}
	
	.pricing-table-header,
	.pricing-table-label,
	.pricing-table-cell {
		padding: 1.5rem 2rem;
	}
}

@media (min-width: 1024px) {
	.pricing-title {
		font-size: 4rem;
	}
}

@media (min-width: 640px) {
	.solutions-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.solutions-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.solutions-title {
		font-size: 3.5rem;
	}
}

/* ============================================
   NEW FOOTER
   ============================================ */

.footer-new {
	position: relative;
	background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
	border-top: 2px solid rgba(16, 185, 129, 0.2);
	padding-top: 5rem;
	padding-bottom: 3rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	overflow: hidden;
}

.footer-new-background {
	position: absolute;
	inset: 0;
	background: 
		radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

.footer-new-container {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
}

.footer-new-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-new-brand {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.footer-new-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.footer-new-logo:hover {
	transform: scale(1.05);
}

.footer-new-logo-image {
	width: 2.5rem;
	height: 2.5rem;
	object-fit: contain;
}

.footer-new-logo-text {
	font-size: 1.5rem;
	font-weight: 800;
	background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-new-description {
	font-size: 0.9375rem;
	line-height: 1.75;
	color: #4b5563;
	max-width: 20rem;
}

.footer-new-social {
	display: flex;
	gap: 1rem;
}

.footer-new-social-link {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0.5rem;
	background: rgba(16, 185, 129, 0.1);
	border: 2px solid rgba(16, 185, 129, 0.2);
	color: #34d399;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	text-decoration: none;
}

.footer-new-social-link:hover {
	background: rgba(16, 185, 129, 0.2);
	border-color: rgba(16, 185, 129, 0.4);
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.footer-new-column {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.footer-new-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: #1f2937;
	margin: 0;
}

.footer-new-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-new-link {
	color: #4b5563;
	text-decoration: none;
	font-size: 0.9375rem;
	transition: all 0.3s ease;
	display: inline-block;
}

.footer-new-link:hover {
	color: #34d399;
	transform: translateX(5px);
}

.footer-new-legal {
	font-size: 0.875rem;
	line-height: 1.75;
	color: #4b5563;
	margin: 0 0 1rem 0;
}

.footer-new-legal-info {
	font-size: 0.875rem;
	color: #64748b;
	margin: 0;
}

.footer-new-bottom {
	padding-top: 3rem;
	border-top: 1px solid rgba(16, 185, 129, 0.2);
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	align-items: center;
	text-align: center;
}

.footer-new-copyright {
	font-size: 0.875rem;
	color: #64748b;
	margin: 0;
}

.footer-new-legal-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	justify-content: center;
}

.footer-new-legal-link {
	color: #4b5563;
	text-decoration: none;
	font-size: 0.875rem;
	transition: all 0.3s ease;
}

.footer-new-legal-link:hover {
	color: #34d399;
}

@media (min-width: 640px) {
	.footer-new-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.footer-new-bottom {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}

@media (min-width: 1024px) {
	.footer-new-grid {
		grid-template-columns: 2fr 1fr 1fr 1.5fr;
	}
}

/* ============================================
   COOKIE BANNER
   ============================================ */

.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	padding: 1.5rem;
	animation: slideInUp 0.5s ease-out;
}

.cookie-banner:not(.hidden) {
	display: block;
}

.cookie-banner-container {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	background: linear-gradient(135deg, rgba(220, 252, 231, 0.98) 0%, rgba(240, 253, 244, 0.98) 100%);
	border: 2px solid rgba(16, 185, 129, 0.3);
	border-radius: 1.5rem;
	padding: 2rem;
	backdrop-filter: blur(20px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cookie-banner-content {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.cookie-banner-icon {
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.15) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #34d399;
	flex-shrink: 0;
}

.cookie-banner-text {
	flex: 1;
}

.cookie-banner-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1f2937;
	margin: 0 0 0.75rem 0;
}

.cookie-banner-description {
	font-size: 0.9375rem;
	line-height: 1.75;
	color: #4b5563;
	margin: 0;
}

.cookie-banner-prefs {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 1.5rem;
	border-radius: 1rem;
	border: 1px solid rgba(16, 185, 129, 0.2);
	background: rgba(16, 185, 129, 0.05);
	margin-top: 1rem;
}

.cookie-banner-prefs:not(.hidden) {
	display: flex;
}

.cookie-banner-pref-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 1rem 0;
}

.cookie-banner-pref-info {
	flex: 1;
}

.cookie-banner-pref-name {
	font-size: 1rem;
	font-weight: 600;
	color: #1f2937;
	margin: 0 0 0.25rem 0;
}

.cookie-banner-pref-desc {
	font-size: 0.875rem;
	color: #4b5563;
	margin: 0;
	line-height: 1.5;
}

.cookie-banner-pref-badge {
	padding: 0.375rem 0.875rem;
	border-radius: 9999px;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 600;
}

.cookie-banner-pref-divider {
	height: 1px;
	background: rgba(16, 185, 129, 0.2);
}

.cookie-banner-toggle {
	position: relative;
	display: inline-block;
	width: 3rem;
	height: 1.5rem;
	cursor: pointer;
}

.cookie-banner-toggle-input {
	opacity: 0;
	width: 0;
	height: 0;
}

.cookie-banner-toggle-slider {
	position: absolute;
	inset: 0;
	background-color: rgba(16, 185, 129, 0.2);
	border-radius: 9999px;
	transition: all 0.3s ease;
}

.cookie-banner-toggle-slider::before {
	content: '';
	position: absolute;
	height: 1.125rem;
	width: 1.125rem;
	left: 0.1875rem;
	bottom: 0.1875rem;
	background-color: #ffffff;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.cookie-banner-toggle-input:checked + .cookie-banner-toggle-slider {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.cookie-banner-toggle-input:checked + .cookie-banner-toggle-slider::before {
	transform: translateX(1.5rem);
}

.cookie-banner-pref-actions {
	display: flex;
	gap: 1rem;
	margin-top: 0.5rem;
	flex-wrap: wrap;
}

.cookie-banner-btn {
	padding: 0.625rem 1.25rem;
	border-radius: 0.5rem;
	font-weight: 600;
	font-size: 0.875rem;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.cookie-banner-btn-primary {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: #ffffff;
}

.cookie-banner-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.cookie-banner-btn-secondary {
	background: rgba(16, 185, 129, 0.1);
	color: #34d399;
	border: 2px solid rgba(16, 185, 129, 0.3);
}

.cookie-banner-btn-secondary:hover {
	background: rgba(16, 185, 129, 0.2);
	border-color: rgba(16, 185, 129, 0.5);
}

.cookie-banner-actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.cookie-banner-action-btn {
	padding: 0.875rem 1.5rem;
	border-radius: 0.5rem;
	font-weight: 600;
	font-size: 0.875rem;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
}

.cookie-banner-action-btn-primary {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: #ffffff;
}

.cookie-banner-action-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.cookie-banner-action-btn-secondary {
	background: rgba(16, 185, 129, 0.1);
	color: #34d399;
	border: 2px solid rgba(16, 185, 129, 0.3);
}

.cookie-banner-action-btn-secondary:hover {
	background: rgba(16, 185, 129, 0.2);
	border-color: rgba(16, 185, 129, 0.5);
}

.cookie-banner-action-btn-tertiary {
	background: transparent;
	color: #4b5563;
}

.cookie-banner-action-btn-tertiary:hover {
	color: #34d399;
	background: rgba(16, 185, 129, 0.05);
}

@keyframes slideInUp {
	from {
		transform: translateY(100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@media (min-width: 768px) {
	.cookie-banner-content {
		flex-direction: row;
		align-items: flex-start;
	}
	
	.cookie-banner-actions {
		flex-direction: column;
		margin-top: 0;
		min-width: 12rem;
	}
}

/* ============================================
   TECHNOLOGIES SECTION
   ============================================ */

.technologies-section {
	position: relative;
	padding-top: 8rem;
	padding-bottom: 8rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	overflow: hidden;
	background: linear-gradient(135deg, #ffffff 0%, #dcfce7 50%, #f0fdf4 100%);
}

.technologies-background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.technologies-gradient-1 {
	position: absolute;
	top: -10%;
	left: -10%;
	width: 50%;
	height: 50%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 8s ease-in-out infinite;
}

.technologies-gradient-2 {
	position: absolute;
	bottom: -10%;
	right: -10%;
	width: 50%;
	height: 50%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 10s ease-in-out infinite reverse;
}

.technologies-container {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
}

.technologies-header {
	text-align: center;
	margin-bottom: 5rem;
	animation: fadeInUp 0.8s ease-out;
}

.technologies-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	border-radius: 9999px;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 100%);
	border: 2px solid rgba(16, 185, 129, 0.4);
	color: #34d399;
	font-size: 0.875rem;
	font-weight: 700;
	backdrop-filter: blur(10px);
	transition: all 0.4s ease;
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.technologies-badge:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.technologies-title {
	margin-top: 2rem;
	font-size: 3rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, #ffffff 0%, #374151 40%, #34d399 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.1;
	animation: fadeInUp 1s ease-out;
}

.technologies-subtitle {
	margin-top: 1.5rem;
	font-size: 1.25rem;
	line-height: 1.75;
	color: #4b5563;
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	animation: fadeInUp 1.2s ease-out;
}

.technologies-grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
}

.technology-card {
	position: relative;
	background: linear-gradient(135deg, rgba(220, 252, 231, 0.9) 0%, rgba(240, 253, 244, 0.9) 100%);
	border: 2px solid rgba(16, 185, 129, 0.25);
	border-radius: 2rem;
	overflow: hidden;
	backdrop-filter: blur(20px);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	animation: fadeInUp 0.8s ease-out;
}

.technology-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #10b981, #059669, #34d399, #10b981);
	background-size: 200% 100%;
	transform: scaleX(0);
	transition: transform 0.5s ease;
	z-index: 2;
}

.technology-card-glow {
	position: absolute;
	inset: -2px;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.3));
	border-radius: 2rem;
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: -1;
	filter: blur(20px);
}

.technology-card:hover {
	border-color: rgba(16, 185, 129, 0.7);
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 25px 50px rgba(16, 185, 129, 0.4);
	background: linear-gradient(135deg, rgba(220, 252, 231, 0.95) 0%, rgba(240, 253, 244, 0.95) 100%);
}

.technology-card:hover::before {
	transform: scaleX(1);
	animation: shimmer 3s linear infinite;
}

.technology-card:hover .technology-card-glow {
	opacity: 1;
}

.technology-card:nth-child(1) { animation-delay: 0.1s; }
.technology-card:nth-child(2) { animation-delay: 0.2s; }
.technology-card:nth-child(3) { animation-delay: 0.3s; }
.technology-card:nth-child(4) { animation-delay: 0.4s; }
.technology-card:nth-child(5) { animation-delay: 0.5s; }
.technology-card:nth-child(6) { animation-delay: 0.6s; }

.technology-card-image-wrapper {
	position: relative;
	width: 100%;
	height: 220px;
	overflow: hidden;
}

.technology-card-image {
	width: 100%;
	height: 100%;
	transition: transform 0.5s ease;
}

.technology-card-image svg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.technology-card:hover .technology-card-image {
	transform: scale(1.1);
}

.technology-card-image-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent 0%, rgba(220, 252, 231, 0.8) 100%);
	transition: opacity 0.3s ease;
}

.technology-card:hover .technology-card-image-overlay {
	opacity: 0.5;
}

.technology-card-content {
	padding: 2rem;
	position: relative;
}

.technology-card-icon-wrapper {
	position: absolute;
	top: -2.5rem;
	left: 2rem;
	width: 5rem;
	height: 5rem;
}

.technology-card-icon {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 1.25rem;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.15) 100%);
	border: 3px solid rgba(16, 185, 129, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #34d399;
	transition: all 0.4s ease;
	z-index: 2;
	backdrop-filter: blur(10px);
}

.technology-card-icon-bg {
	position: absolute;
	inset: -5px;
	border-radius: 1.5rem;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
	animation: pulse 2s ease-in-out infinite;
}

.technology-card:hover .technology-card-icon {
	transform: scale(1.1) rotate(5deg);
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(5, 150, 105, 0.25) 100%);
	border-color: rgba(16, 185, 129, 0.6);
	box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.technology-card:hover .technology-card-icon-bg {
	opacity: 1;
}

.technology-card-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #014500;
	margin: 0 0 0.5rem 0;
	transition: color 0.3s ease;
}

.technology-card:hover .technology-card-title {
	color: #34d399;
}

.technology-card-subtitle {
	font-size: 0.875rem;
	font-weight: 500;
	color: #64748b;
	margin: 0 0 1rem 0;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: color 0.3s ease;
}

.technology-card:hover .technology-card-subtitle {
	color: #4b5563;
}

.technology-card-description {
	font-size: 1rem;
	line-height: 1.75;
	color: #4b5563;
	margin: 0 0 1.5rem 0;
	transition: color 0.3s ease;
}

.technology-card:hover .technology-card-description {
	color: #374151;
}

.technology-card-features {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.technology-card:hover .technology-card-features {
	border-color: rgba(16, 185, 129, 0.4);
}

.technology-card-feature {
	display: inline-block;
	padding: 0.375rem 0.875rem;
	border-radius: 9999px;
	font-size: 0.75rem;
	font-weight: 600;
	background: rgba(16, 185, 129, 0.1);
	color: #34d399;
	border: 1px solid rgba(16, 185, 129, 0.2);
	transition: all 0.3s ease;
}

.technology-card:hover .technology-card-feature {
	background: rgba(16, 185, 129, 0.2);
	border-color: rgba(16, 185, 129, 0.4);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

@media (min-width: 640px) {
	.technologies-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.technologies-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.technologies-title {
		font-size: 3.5rem;
	}
}

/* ============================================
   BENEFITS SECTION (vyhody)
   ============================================ */

.benefits-section {
	position: relative;
	padding-top: 8rem;
	padding-bottom: 8rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	overflow: hidden;
	background: linear-gradient(135deg, #dcfce7 0%, #ffffff 50%, #f0fdf4 100%);
}

.benefits-background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.benefits-gradient-1 {
	position: absolute;
	top: -10%;
	right: -10%;
	width: 50%;
	height: 50%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 8s ease-in-out infinite;
}

.benefits-gradient-2 {
	position: absolute;
	bottom: -10%;
	left: -10%;
	width: 50%;
	height: 50%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 10s ease-in-out infinite reverse;
}

.benefits-container {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
}

.benefits-header {
	text-align: center;
	margin-bottom: 5rem;
	animation: fadeInUp 0.8s ease-out;
}

.benefits-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	border-radius: 9999px;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 100%);
	border: 2px solid rgba(16, 185, 129, 0.4);
	color: #34d399;
	font-size: 0.875rem;
	font-weight: 700;
	backdrop-filter: blur(10px);
	transition: all 0.4s ease;
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.benefits-badge:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.benefits-title {
	margin-top: 2rem;
	font-size: 3rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, #ffffff 0%, #374151 40%, #34d399 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.1;
	animation: fadeInUp 1s ease-out;
}

.benefits-subtitle {
	margin-top: 1.5rem;
	font-size: 1.25rem;
	line-height: 1.75;
	color: #4b5563;
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	animation: fadeInUp 1.2s ease-out;
}

.benefits-grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
}

.benefit-card {
	position: relative;
	background: linear-gradient(135deg, rgba(220, 252, 231, 0.9) 0%, rgba(240, 253, 244, 0.9) 100%);
	border: 2px solid rgba(16, 185, 129, 0.25);
	border-radius: 2rem;
	overflow: hidden;
	backdrop-filter: blur(20px);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	animation: fadeInUp 0.8s ease-out;
}

.benefit-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #10b981, #059669, #34d399, #10b981);
	background-size: 200% 100%;
	transform: scaleX(0);
	transition: transform 0.5s ease;
	z-index: 2;
}

.benefit-card:hover {
	border-color: rgba(16, 185, 129, 0.7);
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 25px 50px rgba(16, 185, 129, 0.4);
}

.benefit-card:hover::before {
	transform: scaleX(1);
	animation: shimmer 3s linear infinite;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }

.benefit-card-image-wrapper {
	position: relative;
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.benefit-card-image {
	width: 100%;
	height: 100%;
	transition: transform 0.5s ease;
}

.benefit-card-image svg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.benefit-card:hover .benefit-card-image {
	transform: scale(1.1);
}

.benefit-card-image-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent 0%, rgba(220, 252, 231, 0.8) 100%);
	transition: opacity 0.3s ease;
}

.benefit-card:hover .benefit-card-image-overlay {
	opacity: 0.5;
}

.benefit-card-content {
	padding: 2rem;
	position: relative;
}

.benefit-card-icon-wrapper {
	position: absolute;
	top: -2.5rem;
	left: 2rem;
	width: 5rem;
	height: 5rem;
}

.benefit-card-icon {
	width: 100%;
	height: 100%;
	border-radius: 1.25rem;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.15) 100%);
	border: 3px solid rgba(16, 185, 129, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #34d399;
	transition: all 0.4s ease;
	backdrop-filter: blur(10px);
}

.benefit-card:hover .benefit-card-icon {
	transform: scale(1.1) rotate(5deg);
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(5, 150, 105, 0.25) 100%);
	border-color: rgba(16, 185, 129, 0.6);
	box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.benefit-card-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #014500;
	margin: 1rem 0 0.75rem 0;
	transition: color 0.3s ease;
}

.benefit-card:hover .benefit-card-title {
	color: #34d399;
}

.benefit-card-description {
	font-size: 1rem;
	line-height: 1.75;
	color: #4b5563;
	margin: 0 0 1.5rem 0;
	transition: color 0.3s ease;
}

.benefit-card:hover .benefit-card-description {
	color: #374151;
}

.benefit-card-metric {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.benefit-card:hover .benefit-card-metric {
	border-color: rgba(16, 185, 129, 0.4);
}

.benefit-card-metric-value {
	font-size: 1.75rem;
	font-weight: 800;
	background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
}

.benefit-card-metric-label {
	font-size: 0.875rem;
	color: #64748b;
	font-weight: 500;
}

@media (min-width: 640px) {
	.benefits-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.benefits-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.benefits-title {
		font-size: 3.5rem;
	}
	
	.benefit-card-image-wrapper {
		height: 250px;
	}
}

/* ============================================
   PROCESS SECTION (proces)
   ============================================ */

.process-section {
	position: relative;
	padding-top: 8rem;
	padding-bottom: 8rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	overflow: hidden;
	background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #ffffff 100%);
}

.process-background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.process-gradient-1 {
	position: absolute;
	top: 20%;
	left: -10%;
	width: 40%;
	height: 40%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 8s ease-in-out infinite;
}

.process-gradient-2 {
	position: absolute;
	bottom: 20%;
	right: -10%;
	width: 40%;
	height: 40%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 10s ease-in-out infinite reverse;
}

.process-container {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
}

.process-header {
	text-align: center;
	margin-bottom: 5rem;
	animation: fadeInUp 0.8s ease-out;
}

.process-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	border-radius: 9999px;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 100%);
	border: 2px solid rgba(16, 185, 129, 0.4);
	color: #34d399;
	font-size: 0.875rem;
	font-weight: 700;
	backdrop-filter: blur(10px);
	transition: all 0.4s ease;
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.process-badge:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.process-title {
	margin-top: 2rem;
	font-size: 3rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, #ffffff 0%, #374151 40%, #34d399 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.1;
	animation: fadeInUp 1s ease-out;
}

.process-subtitle {
	margin-top: 1.5rem;
	font-size: 1.25rem;
	line-height: 1.75;
	color: #4b5563;
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	animation: fadeInUp 1.2s ease-out;
}

.process-timeline {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 4rem;
	margin-bottom: 4rem;
}

.process-timeline-line {
	position: absolute;
	left: 3rem;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(180deg, rgba(16, 185, 129, 0.3) 0%, rgba(16, 185, 129, 0.3) 100%);
	display: none;
}

.process-item {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 2rem;
	align-items: start;
	animation: fadeInUp 0.8s ease-out;
}

.process-item:nth-child(1) { animation-delay: 0.1s; }
.process-item:nth-child(2) { animation-delay: 0.3s; }
.process-item:nth-child(3) { animation-delay: 0.5s; }
.process-item:nth-child(4) { animation-delay: 0.7s; }

.process-item-visual {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.process-item-image-wrapper {
	position: relative;
	width: 200px;
	height: 200px;
	flex-shrink: 0;
}

.process-item-image {
	width: 100%;
	height: 100%;
	border-radius: 1.5rem;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(220, 252, 231, 0.9) 0%, rgba(240, 253, 244, 0.9) 100%);
	border: 3px solid rgba(16, 185, 129, 0.3);
	transition: all 0.5s ease;
	position: relative;
	z-index: 2;
}

.process-item-image svg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.process-item-image-glow {
	position: absolute;
	inset: -10px;
	border-radius: 1.75rem;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 1;
	animation: pulse 2s ease-in-out infinite;
}

.process-item:hover .process-item-image {
	transform: scale(1.05) rotate(2deg);
	border-color: rgba(16, 185, 129, 0.7);
	box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.process-item:hover .process-item-image-glow {
	opacity: 1;
}

.process-item-number {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 50%;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: #ffffff;
	font-size: 1.5rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
	transition: all 0.4s ease;
	position: relative;
	z-index: 3;
}

.process-item:hover .process-item-number {
	transform: scale(1.15) rotate(360deg);
	box-shadow: 0 12px 30px rgba(16, 185, 129, 0.6);
}

.process-item-content {
	flex: 1;
	padding-top: 0.5rem;
}

.process-item-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: #1f2937;
	margin: 0 0 1rem 0;
	transition: color 0.3s ease;
}

.process-item:hover .process-item-title {
	color: #34d399;
}

.process-item-description {
	font-size: 1.0625rem;
	line-height: 1.75;
	color: #4b5563;
	margin: 0 0 1.5rem 0;
	transition: color 0.3s ease;
}

.process-item:hover .process-item-description {
	color: #374151;
}

.process-item-duration {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	background: rgba(16, 185, 129, 0.1);
	border: 1px solid rgba(16, 185, 129, 0.2);
	color: #34d399;
	font-size: 0.875rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.process-item:hover .process-item-duration {
	background: rgba(16, 185, 129, 0.2);
	border-color: rgba(16, 185, 129, 0.4);
	transform: translateX(5px);
}

.process-item-duration svg {
	width: 1rem;
	height: 1rem;
}

.process-cta {
	text-align: center;
	animation: fadeInUp 1.4s ease-out;
}

.process-cta-button {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2.5rem;
	border-radius: 0.75rem;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: #ffffff;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.process-cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

@media (min-width: 768px) {
	.process-timeline-line {
		display: block;
	}
	
	.process-item {
		grid-template-columns: 250px 1fr;
	}
	
	.process-item-image-wrapper {
		width: 250px;
		height: 250px;
	}
}

@media (min-width: 1024px) {
	.process-title {
		font-size: 3.5rem;
	}
	
	.process-item {
		grid-template-columns: 300px 1fr;
	}
	
	.process-item-image-wrapper {
		width: 300px;
		height: 300px;
	}
}

/* ============================================
   ABOUT PAGE
   ============================================ */

/* About Hero Section */
.about-hero-section {
	position: relative;
	padding-top: 8rem;
	padding-bottom: 6rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	overflow: hidden;
	background: linear-gradient(135deg, #ffffff 0%, #dcfce7 50%, #f0fdf4 100%);
}

.about-hero-background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.about-hero-gradient-1 {
	position: absolute;
	top: -10%;
	left: -10%;
	width: 50%;
	height: 50%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 8s ease-in-out infinite;
}

.about-hero-gradient-2 {
	position: absolute;
	bottom: -10%;
	right: -10%;
	width: 50%;
	height: 50%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 10s ease-in-out infinite reverse;
}

.about-hero-container {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	position: relative;
	z-index: 1;
	align-items: center;
}

.about-hero-content {
	text-align: center;
	animation: fadeInUp 0.8s ease-out;
}

.about-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	border-radius: 9999px;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 100%);
	border: 2px solid rgba(16, 185, 129, 0.4);
	color: #34d399;
	font-size: 0.875rem;
	font-weight: 700;
	backdrop-filter: blur(10px);
	transition: all 0.4s ease;
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.about-hero-badge:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.about-hero-title {
	margin-top: 2rem;
	font-size: 2.5rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, #ffffff 0%, #374151 40%, #34d399 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.1;
	animation: fadeInUp 1s ease-out;
}

.about-hero-description {
	margin-top: 1.5rem;
	font-size: 1.125rem;
	line-height: 1.75;
	color: #4b5563;
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	animation: fadeInUp 1.2s ease-out;
}

.about-hero-visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	animation: fadeIn 1.4s ease-out;
}

.about-hero-image-wrapper {
	position: relative;
	width: 100%;
	max-width: 600px;
	height: 400px;
	border-radius: 2rem;
	overflow: hidden;
}

.about-hero-image {
	width: 100%;
	height: 100%;
	transition: transform 0.5s ease;
}

.about-hero-image svg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-hero-image-glow {
	position: absolute;
	inset: -20px;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: -1;
	animation: pulse 3s ease-in-out infinite;
}

.about-hero-image-wrapper:hover .about-hero-image {
	transform: scale(1.05);
}

.about-hero-image-wrapper:hover .about-hero-image-glow {
	opacity: 1;
}

@media (min-width: 768px) {
	.about-hero-container {
		grid-template-columns: 1fr 1fr;
	}
	
	.about-hero-content {
		text-align: left;
	}
	
	.about-hero-title {
		font-size: 3rem;
	}
}

@media (min-width: 1024px) {
	.about-hero-title {
		font-size: 3.5rem;
	}
}

/* About Features Section */
.about-features-section {
	position: relative;
	padding-top: 6rem;
	padding-bottom: 6rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	overflow: hidden;
	background: linear-gradient(135deg, #dcfce7 0%, #ffffff 50%, #f0fdf4 100%);
}

.about-features-background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.about-features-gradient-1 {
	position: absolute;
	top: -10%;
	right: -10%;
	width: 40%;
	height: 40%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 8s ease-in-out infinite;
}

.about-features-gradient-2 {
	position: absolute;
	bottom: -10%;
	left: -10%;
	width: 40%;
	height: 40%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 10s ease-in-out infinite reverse;
}

.about-features-container {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
}

.about-features-grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
}

.about-feature-card {
	position: relative;
	background: linear-gradient(135deg, rgba(220, 252, 231, 0.9) 0%, rgba(240, 253, 244, 0.9) 100%);
	border: 2px solid rgba(16, 185, 129, 0.25);
	border-radius: 2rem;
	overflow: hidden;
	backdrop-filter: blur(20px);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	animation: fadeInUp 0.8s ease-out;
}

.about-feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #10b981, #059669, #34d399, #10b981);
	background-size: 200% 100%;
	transform: scaleX(0);
	transition: transform 0.5s ease;
	z-index: 2;
}

.about-feature-card:hover {
	border-color: rgba(16, 185, 129, 0.7);
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4);
}

.about-feature-card:hover::before {
	transform: scaleX(1);
	animation: shimmer 3s linear infinite;
}

.about-feature-card:nth-child(1) { animation-delay: 0.1s; }
.about-feature-card:nth-child(2) { animation-delay: 0.2s; }
.about-feature-card:nth-child(3) { animation-delay: 0.3s; }

.about-feature-image-wrapper {
	position: relative;
	width: 100%;
	height: 180px;
	overflow: hidden;
}

.about-feature-image {
	width: 100%;
	height: 100%;
	transition: transform 0.5s ease;
}

.about-feature-image svg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-feature-card:hover .about-feature-image {
	transform: scale(1.1);
}

.about-feature-image-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent 0%, rgba(220, 252, 231, 0.8) 100%);
	transition: opacity 0.3s ease;
}

.about-feature-card:hover .about-feature-image-overlay {
	opacity: 0.5;
}

.about-feature-content {
	padding: 2rem;
	position: relative;
}

.about-feature-icon-wrapper {
	position: absolute;
	top: -2.5rem;
	left: 2rem;
	width: 5rem;
	height: 5rem;
}

.about-feature-icon {
	width: 100%;
	height: 100%;
	border-radius: 1.25rem;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.15) 100%);
	border: 3px solid rgba(16, 185, 129, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #34d399;
	transition: all 0.4s ease;
	backdrop-filter: blur(10px);
}

.about-feature-card:hover .about-feature-icon {
	transform: scale(1.1) rotate(5deg);
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(5, 150, 105, 0.25) 100%);
	border-color: rgba(16, 185, 129, 0.6);
	box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.about-feature-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	margin: 1rem 0 0.75rem 0;
	transition: color 0.3s ease;
}

.about-feature-card:hover .about-feature-title {
	color: #34d399;
}

.about-feature-description {
	font-size: 1rem;
	line-height: 1.75;
	color: #4b5563;
	margin: 0;
	transition: color 0.3s ease;
}

.about-feature-card:hover .about-feature-description {
	color: #374151;
}

@media (min-width: 768px) {
	.about-features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.about-features-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* About Stats Section */
.about-stats-section {
	position: relative;
	padding-top: 6rem;
	padding-bottom: 6rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	overflow: hidden;
	background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #ffffff 100%);
}

.about-stats-background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.about-stats-gradient-1 {
	position: absolute;
	top: 20%;
	left: -10%;
	width: 40%;
	height: 40%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 8s ease-in-out infinite;
}

.about-stats-gradient-2 {
	position: absolute;
	bottom: 20%;
	right: -10%;
	width: 40%;
	height: 40%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 10s ease-in-out infinite reverse;
}

.about-stats-container {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	position: relative;
	z-index: 1;
	align-items: center;
}

.about-stats-visual {
	position: relative;
	animation: fadeInUp 0.8s ease-out;
}

.about-stats-image-wrapper {
	position: relative;
	width: 100%;
	max-width: 500px;
	height: 400px;
	border-radius: 2rem;
	overflow: hidden;
	margin: 0 auto;
}

.about-stats-image {
	width: 100%;
	height: 100%;
	transition: transform 0.5s ease;
}

.about-stats-image svg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-stats-image-glow {
	position: absolute;
	inset: -20px;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: -1;
	animation: pulse 3s ease-in-out infinite;
}

.about-stats-image-wrapper:hover .about-stats-image {
	transform: scale(1.05);
}

.about-stats-image-wrapper:hover .about-stats-image-glow {
	opacity: 1;
}

.about-stats-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-top: 2rem;
}

.about-stat-card {
	background: linear-gradient(135deg, rgba(220, 252, 231, 0.9) 0%, rgba(240, 253, 244, 0.9) 100%);
	border: 2px solid rgba(16, 185, 129, 0.25);
	border-radius: 1.5rem;
	padding: 1.5rem;
	text-align: center;
	backdrop-filter: blur(20px);
	transition: all 0.4s ease;
}

.about-stat-card:hover {
	border-color: rgba(16, 185, 129, 0.7);
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3);
}

.about-stat-value {
	font-size: 2rem;
	font-weight: 800;
	background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.about-stat-label {
	font-size: 0.875rem;
	color: #4b5563;
	font-weight: 500;
}

.about-stats-info {
	animation: fadeInUp 1s ease-out;
}

.about-stats-info-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
	margin-bottom: 3rem;
}

.about-info-card {
	background: linear-gradient(135deg, rgba(220, 252, 231, 0.9) 0%, rgba(240, 253, 244, 0.9) 100%);
	border: 2px solid rgba(16, 185, 129, 0.25);
	border-radius: 1.5rem;
	padding: 2rem;
	backdrop-filter: blur(20px);
	transition: all 0.4s ease;
}

.about-info-card:hover {
	border-color: rgba(16, 185, 129, 0.7);
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3);
}

.about-info-icon {
	width: 3rem;
	height: 3rem;
	border-radius: 1rem;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.15) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #34d399;
	margin-bottom: 1rem;
	transition: all 0.3s ease;
}

.about-info-card:hover .about-info-icon {
	transform: scale(1.1) rotate(5deg);
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(5, 150, 105, 0.25) 100%);
	box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.about-info-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 0.5rem 0;
}

.about-info-text {
	font-size: 0.9375rem;
	color: #4b5563;
	margin: 0;
}

.about-stats-cta {
	text-align: center;
}

.about-stats-cta-button {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2.5rem;
	border-radius: 0.75rem;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: #ffffff;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.about-stats-cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

@media (min-width: 640px) {
	.about-stats-info-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 768px) {
	.about-stats-container {
		grid-template-columns: 1fr 1fr;
	}
	
	.about-stats-info-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1024px) {
	.about-stats-image-wrapper {
		max-width: 600px;
		height: 450px;
	}
}

/* ============================================
   CONTACT PAGE
   ============================================ */

/* Contact Hero Section */
.contact-hero-section {
	position: relative;
	padding-top: 8rem;
	padding-bottom: 6rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	overflow: hidden;
	background: linear-gradient(135deg, #ffffff 0%, #dcfce7 50%, #f0fdf4 100%);
}

.contact-hero-background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.contact-hero-gradient-1 {
	position: absolute;
	top: -10%;
	left: -10%;
	width: 50%;
	height: 50%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 8s ease-in-out infinite;
}

.contact-hero-gradient-2 {
	position: absolute;
	bottom: -10%;
	right: -10%;
	width: 50%;
	height: 50%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 10s ease-in-out infinite reverse;
}

.contact-hero-container {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	position: relative;
	z-index: 1;
	align-items: center;
}

.contact-hero-content {
	text-align: center;
	animation: fadeInUp 0.8s ease-out;
}

.contact-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	border-radius: 9999px;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 100%);
	border: 2px solid rgba(16, 185, 129, 0.4);
	color: #34d399;
	font-size: 0.875rem;
	font-weight: 700;
	backdrop-filter: blur(10px);
	transition: all 0.4s ease;
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.contact-hero-badge:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.contact-hero-title {
	margin-top: 2rem;
	font-size: 2.5rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, #ffffff 0%, #374151 40%, #34d399 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.1;
	animation: fadeInUp 1s ease-out;
}

.contact-hero-description {
	margin-top: 1.5rem;
	font-size: 1.125rem;
	line-height: 1.75;
	color: #4b5563;
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	animation: fadeInUp 1.2s ease-out;
}

.contact-hero-visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	animation: fadeIn 1.4s ease-out;
}

.contact-hero-image-wrapper {
	position: relative;
	width: 100%;
	max-width: 600px;
	height: 400px;
	border-radius: 2rem;
	overflow: hidden;
	margin: 0 auto;
}

.contact-hero-image {
	width: 100%;
	height: 100%;
	transition: transform 0.5s ease;
}

.contact-hero-image svg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact-hero-image-glow {
	position: absolute;
	inset: -20px;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: -1;
	animation: pulse 3s ease-in-out infinite;
}

.contact-hero-image-wrapper:hover .contact-hero-image {
	transform: scale(1.05);
}

.contact-hero-image-wrapper:hover .contact-hero-image-glow {
	opacity: 1;
}

@media (min-width: 768px) {
	.contact-hero-container {
		grid-template-columns: 1fr 1fr;
	}
	
	.contact-hero-content {
		text-align: left;
	}
	
	.contact-hero-title {
		font-size: 3rem;
	}
}

@media (min-width: 1024px) {
	.contact-hero-title {
		font-size: 3.5rem;
	}
}

/* Contact Info Section */
.contact-info-section {
	position: relative;
	padding-top: 6rem;
	padding-bottom: 6rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	overflow: hidden;
	background: linear-gradient(135deg, #dcfce7 0%, #ffffff 50%, #f0fdf4 100%);
}

.contact-info-background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.contact-info-gradient-1 {
	position: absolute;
	top: -10%;
	right: -10%;
	width: 40%;
	height: 40%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 8s ease-in-out infinite;
}

.contact-info-gradient-2 {
	position: absolute;
	bottom: -10%;
	left: -10%;
	width: 40%;
	height: 40%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 10s ease-in-out infinite reverse;
}

.contact-info-container {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
}

.contact-info-grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
}

.contact-info-card {
	position: relative;
	background: linear-gradient(135deg, rgba(220, 252, 231, 0.9) 0%, rgba(240, 253, 244, 0.9) 100%);
	border: 2px solid rgba(16, 185, 129, 0.25);
	border-radius: 2rem;
	overflow: hidden;
	backdrop-filter: blur(20px);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	animation: fadeInUp 0.8s ease-out;
}

.contact-info-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #10b981, #059669, #34d399, #10b981);
	background-size: 200% 100%;
	transform: scaleX(0);
	transition: transform 0.5s ease;
	z-index: 2;
}

.contact-info-card:hover {
	border-color: rgba(16, 185, 129, 0.7);
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4);
}

.contact-info-card:hover::before {
	transform: scaleX(1);
	animation: shimmer 3s linear infinite;
}

.contact-info-card:nth-child(1) { animation-delay: 0.1s; }
.contact-info-card:nth-child(2) { animation-delay: 0.2s; }
.contact-info-card:nth-child(3) { animation-delay: 0.3s; }

.contact-info-card-image-wrapper {
	position: relative;
	width: 100%;
	height: 180px;
	overflow: hidden;
}

.contact-info-card-image {
	width: 100%;
	height: 100%;
	transition: transform 0.5s ease;
}

.contact-info-card-image svg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact-info-card:hover .contact-info-card-image {
	transform: scale(1.1);
}

.contact-info-card-image-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent 0%, rgba(220, 252, 231, 0.8) 100%);
	transition: opacity 0.3s ease;
}

.contact-info-card:hover .contact-info-card-image-overlay {
	opacity: 0.5;
}

.contact-info-card-content {
	padding: 2rem;
	position: relative;
}

.contact-info-card-icon-wrapper {
	position: absolute;
	top: -2.5rem;
	left: 2rem;
	width: 5rem;
	height: 5rem;
}

.contact-info-card-icon {
	width: 100%;
	height: 100%;
	border-radius: 1.25rem;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.15) 100%);
	border: 3px solid rgba(16, 185, 129, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #34d399;
	transition: all 0.4s ease;
	backdrop-filter: blur(10px);
}

.contact-info-card:hover .contact-info-card-icon {
	transform: scale(1.1) rotate(5deg);
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(5, 150, 105, 0.25) 100%);
	border-color: rgba(16, 185, 129, 0.6);
	box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.contact-info-card-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1f2937;
	margin: 1rem 0 0.75rem 0;
	transition: color 0.3s ease;
}

.contact-info-card:hover .contact-info-card-title {
	color: #34d399;
}

.contact-info-card-text {
	font-size: 1rem;
	line-height: 1.75;
	color: #4b5563;
	margin: 0;
	transition: color 0.3s ease;
}

.contact-info-card:hover .contact-info-card-text {
	color: #374151;
}

.contact-info-card-link {
	color: #34d399;
	text-decoration: none;
	transition: all 0.3s ease;
	font-weight: 600;
}

.contact-info-card-link:hover {
	color: #10b981;
	text-decoration: underline;
}

@media (min-width: 768px) {
	.contact-info-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.contact-info-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Contact Form Section */
.contact-form-section {
	position: relative;
	padding-top: 6rem;
	padding-bottom: 6rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	overflow: hidden;
	background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #ffffff 100%);
}

.contact-form-background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.contact-form-gradient-1 {
	position: absolute;
	top: 20%;
	left: -10%;
	width: 40%;
	height: 40%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 8s ease-in-out infinite;
}

.contact-form-gradient-2 {
	position: absolute;
	bottom: 20%;
	right: -10%;
	width: 40%;
	height: 40%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 10s ease-in-out infinite reverse;
}

.contact-form-container {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	position: relative;
	z-index: 1;
	align-items: start;
}

.contact-form-wrapper {
	animation: fadeInUp 0.8s ease-out;
}

.contact-form-header {
	text-align: center;
	margin-bottom: 3rem;
}

.contact-form-title {
	font-size: 2.5rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, #ffffff 0%, #374151 40%, #34d399 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.1;
	margin: 0 0 1rem 0;
}

.contact-form-subtitle {
	font-size: 1.125rem;
	line-height: 1.75;
	color: #4b5563;
	max-width: 42rem;
	margin: 0 auto;
}

.contact-form {
	background: linear-gradient(135deg, rgba(220, 252, 231, 0.9) 0%, rgba(240, 253, 244, 0.9) 100%);
	border: 2px solid rgba(16, 185, 129, 0.25);
	border-radius: 2rem;
	padding: 3rem;
	backdrop-filter: blur(20px);
	transition: all 0.4s ease;
}

.contact-form:hover {
	border-color: rgba(16, 185, 129, 0.4);
	box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.contact-form-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
}

.contact-form-field {
	display: flex;
	flex-direction: column;
}

.contact-form-field-full {
	grid-column: 1 / -1;
}

.contact-form-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: #374151;
	margin-bottom: 0.5rem;
}

.contact-form-input,
.contact-form-textarea {
	width: 100%;
	padding: 0.875rem 1.25rem;
	border-radius: 0.75rem;
	background: rgba(240, 253, 244, 0.6);
	border: 2px solid rgba(16, 185, 129, 0.2);
	color: #ffffff;
	font-size: 1rem;
	transition: all 0.3s ease;
	font-family: inherit;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
	color: #64748b;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
	outline: none;
	border-color: rgba(16, 185, 129, 0.6);
	background: rgba(240, 253, 244, 0.8);
	box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.contact-form-textarea {
	resize: vertical;
	min-height: 150px;
}

.contact-form-actions {
	margin-top: 2rem;
	text-align: center;
}

.contact-form-submit {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2.5rem;
	border-radius: 0.75rem;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: #ffffff;
	font-weight: 600;
	font-size: 1rem;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.contact-form-submit:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

.contact-form-submit:active {
	transform: translateY(-1px);
}

.contact-form-message {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 1.5rem;
	padding: 1rem 1.5rem;
	border-radius: 0.75rem;
	background: rgba(16, 185, 129, 0.1);
	border: 2px solid rgba(16, 185, 129, 0.3);
	color: #34d399;
	font-weight: 500;
	animation: fadeInUp 0.5s ease-out;
}

.contact-form-message.hidden {
	display: none;
}

.contact-form-message svg {
	flex-shrink: 0;
	color: #10b981;
}

.contact-map-wrapper {
	animation: fadeInUp 1s ease-out;
}

.contact-map {
	position: relative;
	width: 100%;
	height: 400px;
	border-radius: 2rem;
	overflow: hidden;
	border: 2px solid rgba(16, 185, 129, 0.25);
	background: linear-gradient(135deg, rgba(220, 252, 231, 0.9) 0%, rgba(240, 253, 244, 0.9) 100%);
	backdrop-filter: blur(20px);
	transition: all 0.4s ease;
}

.contact-map:hover {
	border-color: rgba(16, 185, 129, 0.5);
	box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.contact-map-iframe {
	width: 100%;
	height: 100%;
	border: none;
	filter: grayscale(0.3) brightness(0.9);
	transition: filter 0.3s ease;
}

.contact-map:hover .contact-map-iframe {
	filter: grayscale(0) brightness(1);
}

.contact-map-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.contact-map:hover .contact-map-overlay {
	opacity: 0;
}

@media (min-width: 768px) {
	.contact-form-container {
		grid-template-columns: 1.2fr 1fr;
	}
	
	.contact-form-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.contact-form-title {
		font-size: 3rem;
	}
}

@media (min-width: 1024px) {
	.contact-form-title {
		font-size: 3.5rem;
	}
	
	.contact-map {
		height: 500px;
	}
}

/* ============================================
   FAQ PAGE
   ============================================ */

/* FAQ Hero Section */
.faq-hero-section {
	position: relative;
	padding-top: 8rem;
	padding-bottom: 6rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	overflow: hidden;
	background: linear-gradient(135deg, #ffffff 0%, #dcfce7 50%, #f0fdf4 100%);
}

.faq-hero-background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.faq-hero-gradient-1 {
	position: absolute;
	top: -10%;
	left: -10%;
	width: 50%;
	height: 50%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 8s ease-in-out infinite;
}

.faq-hero-gradient-2 {
	position: absolute;
	bottom: -10%;
	right: -10%;
	width: 50%;
	height: 50%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 10s ease-in-out infinite reverse;
}

.faq-hero-container {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	position: relative;
	z-index: 1;
	align-items: center;
}

.faq-hero-content {
	text-align: center;
	animation: fadeInUp 0.8s ease-out;
}

.faq-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	border-radius: 9999px;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 100%);
	border: 2px solid rgba(16, 185, 129, 0.4);
	color: #34d399;
	font-size: 0.875rem;
	font-weight: 700;
	backdrop-filter: blur(10px);
	transition: all 0.4s ease;
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.faq-hero-badge:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.faq-hero-title {
	margin-top: 2rem;
	font-size: 2.5rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, #ffffff 0%, #374151 40%, #34d399 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.1;
	animation: fadeInUp 1s ease-out;
}

.faq-hero-description {
	margin-top: 1.5rem;
	font-size: 1.125rem;
	line-height: 1.75;
	color: #4b5563;
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	animation: fadeInUp 1.2s ease-out;
}

.faq-hero-visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	animation: fadeIn 1.4s ease-out;
}

.faq-hero-image-wrapper {
	position: relative;
	width: 100%;
	max-width: 600px;
	height: 400px;
	border-radius: 2rem;
	overflow: hidden;
	margin: 0 auto;
}

.faq-hero-image {
	width: 100%;
	height: 100%;
	transition: transform 0.5s ease;
}

.faq-hero-image svg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.faq-hero-image-glow {
	position: absolute;
	inset: -20px;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: -1;
	animation: pulse 3s ease-in-out infinite;
}

.faq-hero-image-wrapper:hover .faq-hero-image {
	transform: scale(1.05);
}

.faq-hero-image-wrapper:hover .faq-hero-image-glow {
	opacity: 1;
}

@media (min-width: 768px) {
	.faq-hero-container {
		grid-template-columns: 1fr 1fr;
	}
	
	.faq-hero-content {
		text-align: left;
	}
	
	.faq-hero-title {
		font-size: 3rem;
	}
}

@media (min-width: 1024px) {
	.faq-hero-title {
		font-size: 3.5rem;
	}
}

/* FAQ Section */
.faq-section {
	position: relative;
	padding-top: 6rem;
	padding-bottom: 6rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	overflow: hidden;
	background: linear-gradient(135deg, #dcfce7 0%, #ffffff 50%, #f0fdf4 100%);
}

.faq-background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.faq-gradient-1 {
	position: absolute;
	top: -10%;
	right: -10%;
	width: 40%;
	height: 40%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 8s ease-in-out infinite;
}

.faq-gradient-2 {
	position: absolute;
	bottom: -10%;
	left: -10%;
	width: 40%;
	height: 40%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 10s ease-in-out infinite reverse;
}

.faq-container {
	max-width: 60rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.faq-item {
	background: linear-gradient(135deg, rgba(220, 252, 231, 0.9) 0%, rgba(240, 253, 244, 0.9) 100%);
	border: 2px solid rgba(16, 185, 129, 0.25);
	border-radius: 1.5rem;
	overflow: hidden;
	backdrop-filter: blur(20px);
	transition: all 0.4s ease;
	animation: fadeInUp 0.6s ease-out;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }
.faq-item:nth-child(8) { animation-delay: 0.8s; }

.faq-item:hover {
	border-color: rgba(16, 185, 129, 0.5);
	box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.faq-item-active {
	border-color: rgba(16, 185, 129, 0.7);
	box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem 2rem;
	background: transparent;
	border: none;
	text-align: left;
	cursor: pointer;
	transition: all 0.3s ease;
}

.faq-question:hover {
	background: rgba(16, 185, 129, 0.05);
}

.faq-question-text {
	font-size: 1.125rem;
	font-weight: 600;
	color: #ffffff;
	flex: 1;
	margin-right: 1rem;
	transition: color 0.3s ease;
}

.faq-item-active .faq-question-text {
	color: #34d399;
}

.faq-icon {
	width: 1.5rem;
	height: 1.5rem;
	color: #34d399;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.faq-item-active .faq-icon {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item-active .faq-answer {
	max-height: 500px;
	padding: 0 2rem 1.5rem 2rem;
}

.faq-answer-text {
	font-size: 1rem;
	line-height: 1.75;
	color: #4b5563;
	margin: 0;
	padding-top: 0.5rem;
}

.faq-cta {
	margin-top: 4rem;
	text-align: center;
	animation: fadeInUp 1s ease-out;
}

.faq-cta-content {
	background: linear-gradient(135deg, rgba(220, 252, 231, 0.9) 0%, rgba(240, 253, 244, 0.9) 100%);
	border: 2px solid rgba(16, 185, 129, 0.25);
	border-radius: 2rem;
	padding: 3rem 2rem;
	backdrop-filter: blur(20px);
}

.faq-cta-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 0.75rem 0;
}

.faq-cta-text {
	font-size: 1rem;
	line-height: 1.75;
	color: #4b5563;
	margin: 0 0 2rem 0;
}

.faq-cta-button {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2.5rem;
	border-radius: 0.75rem;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: #ffffff;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.faq-cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

/* ============================================
   SERVICE PAGE
   ============================================ */

/* Service Hero Section */
.service-hero-section {
	position: relative;
	padding-top: 8rem;
	padding-bottom: 6rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	overflow: hidden;
	background: linear-gradient(135deg, #ffffff 0%, #dcfce7 50%, #f0fdf4 100%);
}

.service-hero-background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.service-hero-gradient-1 {
	position: absolute;
	top: -10%;
	left: -10%;
	width: 50%;
	height: 50%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 8s ease-in-out infinite;
}

.service-hero-gradient-2 {
	position: absolute;
	bottom: -10%;
	right: -10%;
	width: 50%;
	height: 50%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 10s ease-in-out infinite reverse;
}

.service-hero-container {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	position: relative;
	z-index: 1;
	align-items: center;
}

.service-hero-content {
	text-align: center;
	animation: fadeInUp 0.8s ease-out;
}

.service-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	border-radius: 9999px;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 100%);
	border: 2px solid rgba(16, 185, 129, 0.4);
	color: #34d399;
	font-size: 0.875rem;
	font-weight: 700;
	backdrop-filter: blur(10px);
	transition: all 0.4s ease;
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.service-hero-badge:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.service-hero-title {
	margin-top: 2rem;
	font-size: 2.5rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, #ffffff 0%, #374151 40%, #34d399 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.1;
	animation: fadeInUp 1s ease-out;
}

.service-hero-description {
	margin-top: 1.5rem;
	font-size: 1.125rem;
	line-height: 1.75;
	color: #4b5563;
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	animation: fadeInUp 1.2s ease-out;
}

.service-hero-visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	animation: fadeIn 1.4s ease-out;
}

.service-hero-image-wrapper {
	position: relative;
	width: 100%;
	max-width: 600px;
	height: 400px;
	border-radius: 2rem;
	overflow: hidden;
	margin: 0 auto;
}

.service-hero-image {
	width: 100%;
	height: 100%;
	transition: transform 0.5s ease;
}

.service-hero-image svg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-hero-image-glow {
	position: absolute;
	inset: -20px;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: -1;
	animation: pulse 3s ease-in-out infinite;
}

.service-hero-image-wrapper:hover .service-hero-image {
	transform: scale(1.05);
}

.service-hero-image-wrapper:hover .service-hero-image-glow {
	opacity: 1;
}

@media (min-width: 768px) {
	.service-hero-container {
		grid-template-columns: 1fr 1fr;
	}
	
	.service-hero-content {
		text-align: left;
	}
	
	.service-hero-title {
		font-size: 3rem;
	}
}

@media (min-width: 1024px) {
	.service-hero-title {
		font-size: 3.5rem;
	}
}

/* Services Page Section */
.services-page-section {
	position: relative;
	padding-top: 6rem;
	padding-bottom: 6rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	overflow: hidden;
	background: linear-gradient(135deg, #dcfce7 0%, #ffffff 50%, #f0fdf4 100%);
}

.services-page-background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.services-page-gradient-1 {
	position: absolute;
	top: -10%;
	right: -10%;
	width: 40%;
	height: 40%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 8s ease-in-out infinite;
}

.services-page-gradient-2 {
	position: absolute;
	bottom: -10%;
	left: -10%;
	width: 40%;
	height: 40%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 10s ease-in-out infinite reverse;
}

.services-page-container {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
}

.services-page-grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
}

.service-page-card {
	position: relative;
	background: linear-gradient(135deg, rgba(220, 252, 231, 0.9) 0%, rgba(240, 253, 244, 0.9) 100%);
	border: 2px solid rgba(16, 185, 129, 0.25);
	border-radius: 2rem;
	overflow: hidden;
	backdrop-filter: blur(20px);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	animation: fadeInUp 0.8s ease-out;
}

.service-page-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #10b981, #059669, #34d399, #10b981);
	background-size: 200% 100%;
	transform: scaleX(0);
	transition: transform 0.5s ease;
	z-index: 2;
}

.service-page-card:hover {
	border-color: rgba(16, 185, 129, 0.7);
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4);
}

.service-page-card:hover::before {
	transform: scaleX(1);
	animation: shimmer 3s linear infinite;
}

.service-page-card:nth-child(1) { animation-delay: 0.1s; }
.service-page-card:nth-child(2) { animation-delay: 0.2s; }
.service-page-card:nth-child(3) { animation-delay: 0.3s; }
.service-page-card:nth-child(4) { animation-delay: 0.4s; }
.service-page-card:nth-child(5) { animation-delay: 0.5s; }

.service-page-card-image-wrapper {
	position: relative;
	width: 100%;
	height: 220px;
	overflow: hidden;
}

.service-page-card-image {
	width: 100%;
	height: 100%;
	transition: transform 0.5s ease;
}

.service-page-card-image svg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-page-card:hover .service-page-card-image {
	transform: scale(1.1);
}

.service-page-card-image-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent 0%, rgba(220, 252, 231, 0.8) 100%);
	transition: opacity 0.3s ease;
}

.service-page-card:hover .service-page-card-image-overlay {
	opacity: 0.5;
}

.service-page-card-content {
	padding: 2rem;
	position: relative;
}

.service-page-card-icon-wrapper {
	position: absolute;
	top: -2.5rem;
	left: 2rem;
	width: 5rem;
	height: 5rem;
}

.service-page-card-icon {
	width: 100%;
	height: 100%;
	border-radius: 1.25rem;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.15) 100%);
	border: 3px solid rgba(16, 185, 129, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #34d399;
	transition: all 0.4s ease;
	backdrop-filter: blur(10px);
}

.service-page-card:hover .service-page-card-icon {
	transform: scale(1.1) rotate(5deg);
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(5, 150, 105, 0.25) 100%);
	border-color: rgba(16, 185, 129, 0.6);
	box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.service-page-card-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: #ffffff;
	margin: 1rem 0 1rem 0;
	transition: color 0.3s ease;
}

.service-page-card:hover .service-page-card-title {
	color: #34d399;
}

.service-page-card-description {
	font-size: 1rem;
	line-height: 1.75;
	color: #4b5563;
	margin: 0 0 1.5rem 0;
	transition: color 0.3s ease;
}

.service-page-card:hover .service-page-card-description {
	color: #374151;
}

.service-page-card-features {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.service-page-card-feature {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.9375rem;
	color: #374151;
}

.service-page-card-feature svg {
	flex-shrink: 0;
	color: #10b981;
	width: 1rem;
	height: 1rem;
}

.services-page-cta {
	margin-top: 4rem;
	text-align: center;
	animation: fadeInUp 1s ease-out;
}

.services-page-cta-content {
	background: linear-gradient(135deg, rgba(220, 252, 231, 0.9) 0%, rgba(240, 253, 244, 0.9) 100%);
	border: 2px solid rgba(16, 185, 129, 0.25);
	border-radius: 2rem;
	padding: 3rem 2rem;
	backdrop-filter: blur(20px);
}

.services-page-cta-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 0.75rem 0;
}

.services-page-cta-text {
	font-size: 1rem;
	line-height: 1.75;
	color: #4b5563;
	margin: 0 0 2rem 0;
}

.services-page-cta-button {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2.5rem;
	border-radius: 0.75rem;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: #ffffff;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.services-page-cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

@media (min-width: 768px) {
	.services-page-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.services-page-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ============================================
   LEGAL PAGES (Policy, Cookies, Terms)
   ============================================ */

/* Legal Hero Section */
.legal-hero-section {
	position: relative;
	padding-top: 8rem;
	padding-bottom: 6rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	overflow: hidden;
	background: linear-gradient(135deg, #ffffff 0%, #dcfce7 50%, #f0fdf4 100%);
}

.legal-hero-background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.legal-hero-gradient-1 {
	position: absolute;
	top: -10%;
	left: -10%;
	width: 50%;
	height: 50%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 8s ease-in-out infinite;
}

.legal-hero-gradient-2 {
	position: absolute;
	bottom: -10%;
	right: -10%;
	width: 50%;
	height: 50%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 10s ease-in-out infinite reverse;
}

.legal-hero-container {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
}

.legal-hero-content {
	text-align: center;
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	animation: fadeInUp 0.8s ease-out;
}

.legal-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	border-radius: 9999px;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 100%);
	border: 2px solid rgba(16, 185, 129, 0.4);
	color: #34d399;
	font-size: 0.875rem;
	font-weight: 700;
	backdrop-filter: blur(10px);
	transition: all 0.4s ease;
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.legal-hero-badge:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.legal-hero-title {
	margin-top: 2rem;
	font-size: 2.5rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, #ffffff 0%, #374151 40%, #34d399 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.1;
	animation: fadeInUp 1s ease-out;
}

.legal-hero-description {
	margin-top: 1.5rem;
	font-size: 1.125rem;
	line-height: 1.75;
	color: #4b5563;
	animation: fadeInUp 1.2s ease-out;
}

@media (min-width: 768px) {
	.legal-hero-title {
		font-size: 3rem;
	}
}

@media (min-width: 1024px) {
	.legal-hero-title {
		font-size: 3.5rem;
	}
}

/* Legal Content Section */
.legal-content-section {
	position: relative;
	padding-top: 6rem;
	padding-bottom: 6rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	overflow: hidden;
	background: linear-gradient(135deg, #dcfce7 0%, #ffffff 50%, #f0fdf4 100%);
}

.legal-content-background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.legal-content-gradient-1 {
	position: absolute;
	top: -10%;
	right: -10%;
	width: 40%;
	height: 40%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 8s ease-in-out infinite;
}

.legal-content-gradient-2 {
	position: absolute;
	bottom: -10%;
	left: -10%;
	width: 40%;
	height: 40%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 10s ease-in-out infinite reverse;
}

.legal-content-container {
	max-width: 60rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
}

.legal-content-wrapper {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.legal-content-item {
	background: linear-gradient(135deg, rgba(220, 252, 231, 0.9) 0%, rgba(240, 253, 244, 0.9) 100%);
	border: 2px solid rgba(16, 185, 129, 0.25);
	border-radius: 1.5rem;
	padding: 2.5rem;
	backdrop-filter: blur(20px);
	transition: all 0.4s ease;
	animation: fadeInUp 0.6s ease-out;
}

.legal-content-item:nth-child(1) { animation-delay: 0.1s; }
.legal-content-item:nth-child(2) { animation-delay: 0.2s; }
.legal-content-item:nth-child(3) { animation-delay: 0.3s; }
.legal-content-item:nth-child(4) { animation-delay: 0.4s; }
.legal-content-item:nth-child(5) { animation-delay: 0.5s; }
.legal-content-item:nth-child(6) { animation-delay: 0.6s; }
.legal-content-item:nth-child(7) { animation-delay: 0.7s; }
.legal-content-item:nth-child(8) { animation-delay: 0.8s; }
.legal-content-item:nth-child(9) { animation-delay: 0.9s; }
.legal-content-item:nth-child(10) { animation-delay: 1s; }

.legal-content-item:hover {
	border-color: rgba(16, 185, 129, 0.5);
	box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
	transform: translateY(-5px);
}

.legal-content-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 1rem 0;
	transition: color 0.3s ease;
}

.legal-content-item:hover .legal-content-title {
	color: #34d399;
}

.legal-content-text {
	font-size: 1rem;
	line-height: 1.75;
	color: #4b5563;
	margin: 0 0 1rem 0;
	transition: color 0.3s ease;
}

.legal-content-item:hover .legal-content-text {
	color: #374151;
}

.legal-content-list {
	list-style: none;
	padding: 0;
	margin: 1rem 0 0 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.legal-content-list li {
	font-size: 1rem;
	line-height: 1.75;
	color: #4b5563;
	padding-left: 1.5rem;
	position: relative;
	transition: color 0.3s ease;
}

.legal-content-list li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #10b981;
	font-weight: bold;
	font-size: 1.5rem;
	line-height: 1;
}

.legal-content-item:hover .legal-content-list li {
	color: #374151;
}

.legal-content-link {
	color: #34d399;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.legal-content-link:hover {
	color: #10b981;
	text-decoration: underline;
}

.legal-content-contact {
	margin-top: 1.5rem;
}

.legal-content-contact-link {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2rem;
	border-radius: 0.75rem;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 100%);
	border: 2px solid rgba(16, 185, 129, 0.3);
	color: #34d399;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.legal-content-contact-link:hover {
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.25) 0%, rgba(5, 150, 105, 0.2) 100%);
	border-color: rgba(16, 185, 129, 0.5);
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.legal-content-contact-link svg {
	flex-shrink: 0;
}

@media (min-width: 768px) {
	.legal-content-item {
		padding: 3rem;
	}
}

/* ============================================
   THANKS PAGE
   ============================================ */

.thanks-section {
	position: relative;
	padding-top: 8rem;
	padding-bottom: 8rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	overflow: hidden;
	background: linear-gradient(135deg, #ffffff 0%, #dcfce7 50%, #f0fdf4 100%);
	min-height: 80vh;
	display: flex;
	align-items: center;
}

.thanks-background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.thanks-gradient-1 {
	position: absolute;
	top: -10%;
	left: -10%;
	width: 50%;
	height: 50%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 8s ease-in-out infinite;
}

.thanks-gradient-2 {
	position: absolute;
	bottom: -10%;
	right: -10%;
	width: 50%;
	height: 50%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
	filter: blur(100px);
	animation: float 10s ease-in-out infinite reverse;
}

.thanks-container {
	max-width: 50rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
	width: 100%;
}

.thanks-content {
	text-align: center;
	animation: fadeInUp 0.8s ease-out;
}

.thanks-icon-wrapper {
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
}

.thanks-icon {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.15) 100%);
	border: 4px solid rgba(16, 185, 129, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #10b981;
	animation: pulse 2s ease-in-out infinite;
	box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
}

.thanks-title {
	font-size: 2.5rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, #ffffff 0%, #374151 40%, #34d399 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.1;
	margin: 0 0 1.5rem 0;
	animation: fadeInUp 1s ease-out;
}

.thanks-description {
	font-size: 1.125rem;
	line-height: 1.75;
	color: #4b5563;
	max-width: 42rem;
	margin: 0 auto 3rem auto;
	animation: fadeInUp 1.2s ease-out;
}

.thanks-actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
	animation: fadeInUp 1.4s ease-out;
}

.thanks-button {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2.5rem;
	border-radius: 0.75rem;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s ease;
	width: 100%;
	max-width: 300px;
	justify-content: center;
}

.thanks-button-primary {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.thanks-button-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

.thanks-button-secondary {
	background: transparent;
	color: #34d399;
	border: 2px solid rgba(16, 185, 129, 0.3);
}

.thanks-button-secondary:hover {
	background: rgba(16, 185, 129, 0.1);
	border-color: rgba(16, 185, 129, 0.5);
	transform: translateY(-3px);
}

@media (min-width: 768px) {
	.thanks-title {
		font-size: 3rem;
	}
	
	.thanks-actions {
		flex-direction: row;
		justify-content: center;
	}
	
	.thanks-button {
		width: auto;
	}
}

@media (min-width: 1024px) {
	.thanks-title {
		font-size: 3.5rem;
	}
}
