/* 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: #ffffff;
	color: #1e3a8a;
}

/* 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: #ffffff;
		color: #1e3a8a;
	}
	
	.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: #f8fafc;
	}
	
	.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%, #f8fafc 50%, #f1f5f9 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(107, 33, 168, 0.15) 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(30, 58, 138, 0.15) 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(107, 33, 168, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
	border: 2px solid rgba(107, 33, 168, 0.3);
	color: #6b21a8;
	font-size: 0.875rem;
	font-weight: 700;
	backdrop-filter: blur(10px);
	transition: all 0.4s ease;
	box-shadow: 0 4px 15px rgba(107, 33, 168, 0.2);
}

.legal-hero-badge:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(107, 33, 168, 0.4);
}

.legal-hero-title {
	margin-top: 2rem;
	font-size: 2.5rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 40%, #6b21a8 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: #475569;
	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, #f8fafc 0%, #ffffff 50%, #f1f5f9 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(107, 33, 168, 0.12) 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(30, 58, 138, 0.12) 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: rgba(255, 255, 255, 0.8);
	border: 2px solid rgba(107, 33, 168, 0.2);
	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(107, 33, 168, 0.4);
	box-shadow: 0 10px 30px rgba(107, 33, 168, 0.15);
	transform: translateY(-5px);
}

.legal-content-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1e3a8a;
	margin: 0 0 1rem 0;
	transition: color 0.3s ease;
}

.legal-content-item:hover .legal-content-title {
	color: #6b21a8;
}

.legal-content-text {
	font-size: 1rem;
	line-height: 1.75;
	color: #475569;
	margin: 0 0 1rem 0;
	transition: color 0.3s ease;
}

.legal-content-item:hover .legal-content-text {
	color: #1e3a8a;
}

.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: #475569;
	padding-left: 1.5rem;
	position: relative;
	transition: color 0.3s ease;
}

.legal-content-list li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #6b21a8;
	font-weight: bold;
	font-size: 1.5rem;
	line-height: 1;
}

.legal-content-item:hover .legal-content-list li {
	color: #1e3a8a;
}

.legal-content-link {
	color: #6b21a8;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.legal-content-link:hover {
	color: #1e3a8a;
	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(107, 33, 168, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
	border: 2px solid rgba(107, 33, 168, 0.3);
	color: #6b21a8;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.legal-content-contact-link:hover {
	background: linear-gradient(135deg, rgba(107, 33, 168, 0.2) 0%, rgba(30, 58, 138, 0.2) 100%);
	border-color: rgba(107, 33, 168, 0.5);
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(107, 33, 168, 0.3);
}

.legal-content-contact-link svg {
	flex-shrink: 0;
}

@media (min-width: 768px) {
	.legal-content-item {
		padding: 3rem;
	}
}

/* ============================================
   THANKS PAGE
   ============================================ */

/* ============================================
   THANKS MODERN SECTION
   ============================================ */

.thanks-modern {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 8rem 1.5rem;
	overflow: hidden;
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
}

.thanks-modern-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.thanks-modern-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(107, 33, 168, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(107, 33, 168, 0.08) 1px, transparent 1px);
	background-size: 50px 50px;
	opacity: 0.3;
	animation: rotate 20s linear infinite;
}

.thanks-modern-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	animation: float-orb 20s ease-in-out infinite;
}

.thanks-modern-orb-1 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(107, 33, 168, 0.15) 0%, transparent 70%);
	top: -10%;
	left: -5%;
	animation-delay: 0s;
}

.thanks-modern-orb-2 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(30, 58, 138, 0.15) 0%, transparent 70%);
	bottom: -10%;
	right: -5%;
	animation-delay: 5s;
}

.thanks-modern-container {
	max-width: 50rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	width: 100%;
}

.thanks-modern-content {
	text-align: center;
	color: #1e3a8a;
}

.thanks-modern-icon-wrapper {
	display: flex;
	justify-content: center;
	margin-bottom: 2.5rem;
	position: relative;
}

.thanks-modern-icon {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(107, 33, 168, 0.15) 0%, rgba(30, 58, 138, 0.15) 100%);
	border: 3px solid rgba(107, 33, 168, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #6b21a8;
	animation: pulse 2s ease-in-out infinite;
	box-shadow: 0 10px 40px rgba(107, 33, 168, 0.2);
	position: relative;
	z-index: 1;
}

.thanks-modern-icon-glow {
	position: absolute;
	inset: -20px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(107, 33, 168, 0.3) 0%, transparent 70%);
	filter: blur(20px);
	animation: pulse 2s ease-in-out infinite;
	z-index: 0;
}

.thanks-modern-title {
	font-size: 2.5rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, #1e3a8a 0%, #475569 50%, #6b21a8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.2;
	margin: 0 0 1.5rem 0;
}

.thanks-modern-description {
	font-size: 1.125rem;
	line-height: 1.8;
	color: #475569;
	max-width: 42rem;
	margin: 0 auto 3rem auto;
}

.thanks-modern-actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
}

.thanks-modern-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2.5rem;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s ease;
	width: 100%;
	max-width: 300px;
	justify-content: center;
	cursor: pointer;
}

.thanks-modern-btn-primary {
	background: linear-gradient(135deg, #6b21a8 0%, #5b21b6 100%);
	color: #ffffff;
	box-shadow: 0 4px 20px rgba(107, 33, 168, 0.4);
}

.thanks-modern-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(107, 33, 168, 0.6);
}

.thanks-modern-btn-secondary {
	background: transparent;
	color: #6b21a8;
	border: 2px solid rgba(107, 33, 168, 0.3);
}

.thanks-modern-btn-secondary:hover {
	background: rgba(107, 33, 168, 0.1);
	border-color: rgba(107, 33, 168, 0.5);
	transform: translateY(-3px);
}

@media (min-width: 768px) {
	.thanks-modern-title {
		font-size: 3.5rem;
	}
	
	.thanks-modern-actions {
		flex-direction: row;
		justify-content: center;
	}
	
	.thanks-modern-btn {
		width: auto;
	}
}

/* ============================================
   MODERN HERO SECTION - NEW DESIGN
   ============================================ */

@keyframes float-orb {
	0%, 100% {
		transform: translate(0, 0) scale(1);
	}
	33% {
		transform: translate(30px, -30px) scale(1.1);
	}
	66% {
		transform: translate(-20px, 20px) scale(0.9);
	}
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

@keyframes pulse-glow {
	0%, 100% {
		opacity: 0.4;
		transform: scale(1);
	}
	50% {
		opacity: 0.8;
		transform: scale(1.1);
	}
}

@keyframes slide-up {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slide-left {
	from {
		opacity: 0;
		transform: translateX(40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes particle-float {
	0%, 100% {
		transform: translateY(0) translateX(0);
		opacity: 0.3;
	}
	50% {
		transform: translateY(-30px) translateX(20px);
		opacity: 0.8;
	}
}

.hero-modern {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 8rem 1.5rem;
	overflow: hidden;
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
}

.hero-modern-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: url('./img/nes_1017-26062.avif');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-modern-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	animation: float-orb 20s ease-in-out infinite;
}

.hero-modern-orb-1 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(107, 33, 168, 0.15) 0%, transparent 70%);
	top: -10%;
	left: -5%;
	animation-delay: 0s;
}

.hero-modern-orb-2 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(30, 58, 138, 0.15) 0%, transparent 70%);
	bottom: -10%;
	right: -5%;
	animation-delay: 5s;
}

.hero-modern-orb-3 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(91, 33, 182, 0.12) 0%, transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: 10s;
}

.hero-modern-grid {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(107, 33, 168, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(107, 33, 168, 0.08) 1px, transparent 1px);
	background-size: 50px 50px;
	opacity: 0.3;
	animation: rotate 20s linear infinite;
}

.hero-modern-container {
	max-width: 80rem;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	position: relative;
	z-index: 1;
	align-items: center;
}

.hero-modern-content {
	color: #1e3a8a;
}

.hero-modern-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	background: rgba(107, 33, 168, 0.1);
	border: 1px solid rgba(107, 33, 168, 0.3);
	color: #6b21a8;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 2rem;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.hero-modern-badge:hover {
	background: rgba(107, 33, 168, 0.2);
	border-color: rgba(107, 33, 168, 0.5);
	transform: translateY(-2px);
}

.hero-modern-badge svg {
	color: #6b21a8;
}

.hero-modern-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.hero-modern-title-main {
	background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-modern-title-accent {
	background: linear-gradient(135deg, #6b21a8 0%, #5b21b6 50%, #4c1d95 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: pulse-glow 3s ease-in-out infinite;
}

.hero-modern-title-sub {
	color: #475569;
	font-size: 0.9em;
}

.hero-modern-description {
	font-size: 1.125rem;
	line-height: 1.8;
	color: #475569;
	margin-bottom: 2rem;
	max-width: 600px;
}

.hero-modern-features {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2.5rem;
}

.hero-modern-feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.25rem;
	background: rgba(107, 33, 168, 0.1);
	border: 1px solid rgba(107, 33, 168, 0.2);
	border-radius: 30px;
	color: #6b21a8;
	font-size: 0.875rem;
	font-weight: 500;
	transition: all 0.3s ease;
}

.hero-modern-feature:hover {
	background: rgba(107, 33, 168, 0.2);
	border-color: rgba(107, 33, 168, 0.4);
	transform: translateY(-2px);
}

.hero-modern-feature svg {
	color: #6b21a8;
}

.hero-modern-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 1.5rem;
}

.hero-modern-guarantee {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: #475569;
	font-size: 0.95rem;
	margin-top: 1rem;
}

.hero-modern-guarantee svg {
	color: #6b21a8;
	flex-shrink: 0;
}

.hero-modern-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2rem;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.hero-modern-btn-primary {
	background: linear-gradient(135deg, #6b21a8 0%, #5b21b6 100%);
	color: #ffffff;
	box-shadow: 0 4px 20px rgba(107, 33, 168, 0.4);
}

.hero-modern-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(107, 33, 168, 0.6);
}

.hero-modern-btn-secondary {
	background: transparent;
	color: #6b21a8;
	border-color: rgba(107, 33, 168, 0.3);
}

.hero-modern-btn-secondary:hover {
	background: rgba(107, 33, 168, 0.1);
	border-color: rgba(107, 33, 168, 0.5);
}

.hero-modern-visual {
	position: relative;
	height: 500px;
}

.hero-modern-visual-inner {
	position: relative;
	width: 100%;
	height: 100%;
}

.hero-modern-shape {
	position: absolute;
	border-radius: 20px;
	background: linear-gradient(135deg, rgba(107, 33, 168, 0.15) 0%, rgba(30, 58, 138, 0.15) 100%);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(107, 33, 168, 0.3);
	animation: float 6s ease-in-out infinite;
}

.hero-modern-shape-1 {
	width: 200px;
	height: 200px;
	top: 10%;
	left: 10%;
	animation-delay: 0s;
}

.hero-modern-shape-2 {
	width: 150px;
	height: 150px;
	top: 50%;
	right: 20%;
	animation-delay: 2s;
}

.hero-modern-shape-3 {
	width: 180px;
	height: 180px;
	bottom: 10%;
	left: 30%;
	animation-delay: 4s;
}

.hero-modern-particles {
	position: absolute;
	inset: 0;
}

.hero-modern-particle {
	position: absolute;
	width: 8px;
	height: 8px;
	background: #6b21a8;
	border-radius: 50%;
	animation: particle-float 8s ease-in-out infinite;
}

.hero-modern-particle:nth-child(1) {
	top: 20%;
	left: 20%;
	animation-delay: 0s;
}

.hero-modern-particle:nth-child(2) {
	top: 40%;
	right: 30%;
	animation-delay: 1.5s;
}

.hero-modern-particle:nth-child(3) {
	bottom: 30%;
	left: 40%;
	animation-delay: 3s;
}

.hero-modern-particle:nth-child(4) {
	top: 60%;
	right: 10%;
	animation-delay: 4.5s;
}

.hero-modern-particle:nth-child(5) {
	bottom: 20%;
	right: 50%;
	animation-delay: 6s;
}

/* Animation attributes */
[data-animate="fade-up"] {
	opacity: 0;
	animation: slide-up 0.8s ease-out forwards;
}

[data-animate="fade-left"] {
	opacity: 0;
	animation: slide-left 0.8s ease-out forwards;
}

[data-delay="100"] { animation-delay: 0.1s; }
[data-delay="200"] { animation-delay: 0.2s; }
[data-delay="300"] { animation-delay: 0.3s; }
[data-delay="400"] { animation-delay: 0.4s; }
[data-delay="500"] { animation-delay: 0.5s; }
[data-delay="600"] { animation-delay: 0.6s; }

/* ============================================
   MODERN TECHNOLOGIES SECTION - NEW DESIGN
   ============================================ */

.tech-modern {
	position: relative;
	padding: 8rem 1.5rem;
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
	overflow: hidden;
}

.tech-modern-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.tech-modern-wave {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 200px;
	background: linear-gradient(180deg, rgba(107, 33, 168, 0.1) 0%, transparent 100%);
}

.tech-modern-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		radial-gradient(circle at 2px 2px, rgba(107, 33, 168, 0.15) 1px, transparent 0);
	background-size: 40px 40px;
	opacity: 0.4;
}

.tech-modern-container {
	max-width: 80rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.tech-modern-header {
	text-align: center;
	margin-bottom: 4rem;
	color: #1e3a8a;
}

.tech-modern-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	background: rgba(30, 58, 138, 0.15);
	border: 1px solid rgba(30, 58, 138, 0.3);
	color: #1e3a8a;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	backdrop-filter: blur(10px);
}

.tech-modern-badge svg {
	color: #1e40af;
}

.tech-modern-title {
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #1e3a8a 0%, #475569 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.tech-modern-subtitle {
	font-size: 1.125rem;
	line-height: 1.8;
	color: #475569;
	max-width: 800px;
	margin: 0 auto;
}

.tech-modern-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.tech-modern-card {
	position: relative;
	padding: 2.5rem;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(107, 33, 168, 0.2);
	border-radius: 20px;
	backdrop-filter: blur(20px);
	transition: all 0.4s ease;
	overflow: hidden;
}

.tech-modern-card-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(107, 33, 168, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.tech-modern-card:hover {
	transform: translateY(-8px);
	border-color: rgba(107, 33, 168, 0.5);
	box-shadow: 0 20px 40px rgba(107, 33, 168, 0.3);
}

.tech-modern-card:hover .tech-modern-card-bg {
	opacity: 1;
}

.tech-modern-card-icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(107, 33, 168, 0.2) 0%, rgba(30, 58, 138, 0.2) 100%);
	border-radius: 16px;
	margin-bottom: 1.5rem;
	color: #6b21a8;
	transition: all 0.3s ease;
}

.tech-modern-card:hover .tech-modern-card-icon {
	transform: scale(1.1) rotate(5deg);
	background: linear-gradient(135deg, rgba(107, 33, 168, 0.3) 0%, rgba(30, 58, 138, 0.3) 100%);
}

.tech-modern-card-content {
	position: relative;
	z-index: 1;
}

.tech-modern-card-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1e3a8a;
	margin-bottom: 0.5rem;
}

.tech-modern-card-subtitle {
	font-size: 0.875rem;
	color: #1e3a8a;
	margin-bottom: 1rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.tech-modern-card-description {
	font-size: 1rem;
	line-height: 1.7;
	color: #475569;
	margin-bottom: 1.5rem;
}

.tech-modern-card-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.tech-modern-card-tag {
	padding: 0.5rem 1rem;
	background: rgba(107, 33, 168, 0.15);
	border: 1px solid rgba(107, 33, 168, 0.3);
	border-radius: 20px;
	color: #6b21a8;
	font-size: 0.875rem;
	font-weight: 500;
	transition: all 0.3s ease;
}

.tech-modern-card:hover .tech-modern-card-tag {
	background: rgba(107, 33, 168, 0.25);
	border-color: rgba(107, 33, 168, 0.5);
}

@media (max-width: 768px) {
	.hero-modern-container {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	
	.hero-modern-title {
		font-size: 2.5rem;
	}
	
	.hero-modern-visual {
		height: 300px;
	}
	
	.tech-modern-grid {
		grid-template-columns: 1fr;
	}
	
	.tech-modern-title {
		font-size: 2rem;
	}
}

/* ============================================
   MODERN SOLUTIONS SECTION - NEW DESIGN
   ============================================ */

.solutions-modern {
	position: relative;
	padding: 8rem 1.5rem;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	overflow: hidden;
}

.solutions-modern-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.solutions-modern-shapes {
	position: absolute;
	inset: 0;
}

.solutions-modern-shape {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	animation: float-orb 15s ease-in-out infinite;
}

.solutions-modern-shape:nth-child(1) {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(107, 33, 168, 0.2) 0%, transparent 70%);
	top: 10%;
	left: -10%;
	animation-delay: 0s;
}

.solutions-modern-shape:nth-child(2) {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(30, 58, 138, 0.15) 0%, transparent 70%);
	bottom: 10%;
	right: -10%;
	animation-delay: 5s;
}

.solutions-modern-shape:nth-child(3) {
	width: 350px;
	height: 350px;
	background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: 10s;
}

.solutions-modern-container {
	max-width: 80rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.solutions-modern-header {
	text-align: center;
	margin-bottom: 4rem;
	color: #1e3a8a;
}

.solutions-modern-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	background: rgba(107, 33, 168, 0.15);
	border: 1px solid rgba(107, 33, 168, 0.3);
	color: #6b21a8;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	backdrop-filter: blur(10px);
}

.solutions-modern-badge svg {
	color: #6b21a8;
}

.solutions-modern-title {
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #1e3a8a 0%, #475569 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.solutions-modern-subtitle {
	font-size: 1.125rem;
	line-height: 1.8;
	color: #475569;
	max-width: 800px;
	margin: 0 auto;
}

.solutions-modern-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.solution-modern-card {
	position: relative;
}

.solution-modern-card-inner {
	position: relative;
	padding: 2.5rem;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(107, 33, 168, 0.2);
	border-radius: 20px;
	backdrop-filter: blur(20px);
	transition: all 0.4s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.solution-modern-card-inner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #6b21a8 0%, #1e3a8a 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.solution-modern-card:hover .solution-modern-card-inner {
	transform: translateY(-8px);
	border-color: rgba(107, 33, 168, 0.5);
	box-shadow: 0 20px 40px rgba(107, 33, 168, 0.3);
}

.solution-modern-card:hover .solution-modern-card-inner::before {
	transform: scaleX(1);
}

.solution-modern-card-icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(107, 33, 168, 0.2) 0%, rgba(30, 58, 138, 0.2) 100%);
	border-radius: 16px;
	margin-bottom: 1.5rem;
	color: #6b21a8;
	transition: all 0.3s ease;
}

.solution-modern-card:hover .solution-modern-card-icon {
	transform: scale(1.1) rotate(5deg);
	background: linear-gradient(135deg, rgba(107, 33, 168, 0.3) 0%, rgba(30, 58, 138, 0.3) 100%);
}

.solution-modern-card-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1e3a8a;
	margin-bottom: 1rem;
}

.solution-modern-card-description {
	font-size: 1rem;
	line-height: 1.7;
	color: #475569;
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

.solution-modern-card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #6b21a8;
	font-weight: 600;
	font-size: 0.875rem;
	transition: all 0.3s ease;
	margin-top: auto;
}

.solution-modern-card-link svg {
	transition: transform 0.3s ease;
}

.solution-modern-card:hover .solution-modern-card-link {
	color: #6b21a8;
}

.solution-modern-card:hover .solution-modern-card-link svg {
	transform: translateX(4px);
}

.solutions-modern-cta {
	text-align: center;
}

.solutions-modern-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2rem;
	background: linear-gradient(135deg, #6b21a8 0%, #5b21b6 100%);
	color: #ffffff;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(107, 33, 168, 0.4);
}

.solutions-modern-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(107, 33, 168, 0.6);
}

/* ============================================
   MODERN PRICING SECTION - NEW DESIGN
   ============================================ */

.pricing-modern {
	position: relative;
	padding: 8rem 1.5rem;
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
	overflow: hidden;
}

.pricing-modern-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.pricing-modern-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		radial-gradient(circle at 1px 1px, rgba(107, 33, 168, 0.1) 1px, transparent 0);
	background-size: 30px 30px;
	opacity: 0.3;
}

.pricing-modern-container {
	max-width: 80rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.pricing-modern-header {
	text-align: center;
	margin-bottom: 4rem;
	color: #1e3a8a;
}

.pricing-modern-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	background: rgba(30, 58, 138, 0.15);
	border: 1px solid rgba(30, 58, 138, 0.3);
	color: #1e3a8a;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	backdrop-filter: blur(10px);
}

.pricing-modern-badge svg {
	color: #1e40af;
}

.pricing-modern-title {
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #1e3a8a 0%, #475569 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.pricing-modern-subtitle {
	font-size: 1.125rem;
	line-height: 1.8;
	color: #475569;
	max-width: 600px;
	margin: 0 auto;
}

.pricing-modern-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.pricing-modern-card {
	position: relative;
	padding: 2.5rem;
	background: rgba(255, 255, 255, 0.8);
	border: 2px solid rgba(107, 33, 168, 0.2);
	border-radius: 20px;
	backdrop-filter: blur(20px);
	transition: all 0.4s ease;
	overflow: hidden;
}

.pricing-modern-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(107, 33, 168, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.pricing-modern-card:hover {
	transform: translateY(-8px);
	border-color: rgba(107, 33, 168, 0.5);
	box-shadow: 0 20px 40px rgba(107, 33, 168, 0.3);
}

.pricing-modern-card:hover::before {
	opacity: 1;
}

.pricing-modern-card-featured {
	border-color: rgba(107, 33, 168, 0.4);
	transform: scale(1.05);
}

.pricing-modern-card-featured::after {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	height: 4px;
	background: linear-gradient(90deg, #6b21a8 0%, #1e3a8a 100%);
	border-radius: 20px 20px 0 0;
}

.pricing-modern-card-badge {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	padding: 0.5rem 1rem;
	background: linear-gradient(135deg, #6b21a8 0%, #5b21b6 100%);
	color: #ffffff;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.pricing-modern-card-header {
	margin-bottom: 2rem;
	position: relative;
	z-index: 1;
}

.pricing-modern-card-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: #1e3a8a;
	margin-bottom: 0.5rem;
}

.pricing-modern-card-subtitle {
	font-size: 0.875rem;
	color: #1e3a8a;
}

.pricing-modern-card-content {
	margin-bottom: 2rem;
	position: relative;
	z-index: 1;
}

.pricing-modern-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pricing-modern-list li {
	padding: 0.75rem 0;
	color: #475569;
	font-size: 1rem;
	position: relative;
	padding-left: 1.5rem;
}

.pricing-modern-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #6b21a8;
	font-weight: 700;
}

.pricing-modern-card-footer {
	position: relative;
	z-index: 1;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(107, 33, 168, 0.2);
}

.pricing-modern-note {
	font-size: 1.125rem;
	font-weight: 600;
	color: #6b21a8;
	text-align: center;
}

.pricing-modern-note-text {
	font-size: 0.875rem;
	color: #475569;
	line-height: 1.6;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.pricing-modern-comparison {
	margin-top: 4rem;
	margin-bottom: 2rem;
}

.pricing-modern-comparison-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1e3a8a;
	margin-bottom: 1.5rem;
	text-align: center;
}

.pricing-modern-comparison-table-wrapper {
	overflow-x: auto;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 4px 20px rgba(107, 33, 168, 0.1);
}

.pricing-modern-comparison-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 600px;
}

.pricing-modern-comparison-table thead {
	background: linear-gradient(135deg, #6b21a8 0%, #5b21b6 100%);
	color: #ffffff;
}

.pricing-modern-comparison-table th {
	padding: 1rem;
	text-align: left;
	font-weight: 600;
	font-size: 0.95rem;
}

.pricing-modern-comparison-table th:first-child {
	border-top-left-radius: 12px;
}

.pricing-modern-comparison-table th:last-child {
	border-top-right-radius: 12px;
}

.pricing-modern-comparison-table tbody tr {
	border-bottom: 1px solid rgba(107, 33, 168, 0.1);
	transition: background 0.2s ease;
}

.pricing-modern-comparison-table tbody tr:hover {
	background: rgba(107, 33, 168, 0.05);
}

.pricing-modern-comparison-table tbody tr:last-child {
	border-bottom: none;
}

.pricing-modern-comparison-table td {
	padding: 1rem;
	color: #475569;
	font-size: 0.95rem;
}

.pricing-modern-comparison-table td:first-child {
	font-weight: 600;
	color: #1e3a8a;
}

.pricing-modern-example {
	margin-top: 3rem;
	padding: 2rem;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(107, 33, 168, 0.1);
	border: 2px solid rgba(107, 33, 168, 0.1);
}

.pricing-modern-example-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1e3a8a;
	margin-bottom: 1.5rem;
}

.pricing-modern-example-text {
	color: #475569;
	margin-bottom: 1rem;
	line-height: 1.7;
}

.pricing-modern-example-list {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0;
}

.pricing-modern-example-list li {
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(107, 33, 168, 0.1);
	color: #475569;
	line-height: 1.7;
}

.pricing-modern-example-list li:last-child {
	border-bottom: none;
}

.pricing-modern-example-list li strong {
	color: #6b21a8;
	font-weight: 600;
}

.pricing-modern-example-total {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 2px solid rgba(107, 33, 168, 0.2);
	color: #1e3a8a;
	font-size: 1.1rem;
	line-height: 1.8;
}

.pricing-modern-example-total strong {
	color: #6b21a8;
	font-size: 1.2rem;
}

.pricing-modern-example-total em {
	color: #64748b;
	font-size: 0.95rem;
	font-style: italic;
}

.pricing-modern-cta {
	text-align: center;
	margin-top: 3rem;
}

.pricing-modern-cta-note {
	margin-top: 1rem;
	color: #64748b;
	font-size: 0.9rem;
}

.pricing-modern-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2rem;
	background: linear-gradient(135deg, #6b21a8 0%, #5b21b6 100%);
	color: #ffffff;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(107, 33, 168, 0.4);
}

.pricing-modern-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(107, 33, 168, 0.6);
}

/* ============================================
   MODERN TESTIMONIALS SECTION - NEW DESIGN
   ============================================ */

.testimonials-modern {
	position: relative;
	padding: 8rem 1.5rem;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	overflow: hidden;
}

.testimonials-modern-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.testimonials-modern-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(107, 33, 168, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
}

.testimonials-modern-container {
	max-width: 80rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.testimonials-modern-header {
	text-align: center;
	margin-bottom: 4rem;
	color: #1e3a8a;
}

.testimonials-modern-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	background: rgba(107, 33, 168, 0.15);
	border: 1px solid rgba(107, 33, 168, 0.3);
	color: #6b21a8;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	backdrop-filter: blur(10px);
}

.testimonials-modern-badge svg {
	color: #6b21a8;
}

.testimonials-modern-title {
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #1e3a8a 0%, #475569 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.testimonials-modern-subtitle {
	font-size: 1.125rem;
	line-height: 1.8;
	color: #475569;
	max-width: 800px;
	margin: 0 auto;
}

.testimonials-modern-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

/* ============================================
   REFERENCE CARD - NEW DESIGN
   ============================================ */

.reference-card {
	position: relative;
	height: 100%;
}

.reference-card-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
	border-radius: 24px;
	border: 1px solid rgba(30, 58, 138, 0.15);
	backdrop-filter: blur(20px);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 0;
}

.reference-card-glow {
	position: absolute;
	inset: -2px;
	background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(107, 33, 168, 0.1) 50%, rgba(30, 64, 175, 0.1) 100%);
	border-radius: 24px;
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: -1;
	filter: blur(20px);
}

.reference-card:hover .reference-card-glow {
	opacity: 1;
}

.reference-card:hover .reference-card-bg {
	border-color: rgba(30, 58, 138, 0.4);
	box-shadow: 0 20px 60px rgba(30, 58, 138, 0.2), 0 0 0 1px rgba(30, 58, 138, 0.1);
	transform: translateY(-8px);
}

.reference-card-inner {
	position: relative;
	padding: 2.5rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	z-index: 1;
}

.reference-card-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 2rem;
	gap: 1rem;
}

.reference-card-icon-wrapper {
	position: relative;
	width: 56px;
	height: 56px;
	flex-shrink: 0;
}

.reference-card-icon {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(30, 58, 138, 0.15) 0%, rgba(107, 33, 168, 0.15) 100%);
	border-radius: 16px;
	border: 1px solid rgba(30, 58, 138, 0.2);
	color: #1e3a8a;
	z-index: 2;
	transition: all 0.4s ease;
}

.reference-card:hover .reference-card-icon {
	background: linear-gradient(135deg, rgba(30, 58, 138, 0.25) 0%, rgba(107, 33, 168, 0.25) 100%);
	border-color: rgba(30, 58, 138, 0.4);
	transform: scale(1.05) rotate(5deg);
}

.reference-card-icon-pulse {
	position: absolute;
	inset: -4px;
	background: radial-gradient(circle, rgba(30, 58, 138, 0.3) 0%, transparent 70%);
	border-radius: 20px;
	opacity: 0;
	animation: pulse-icon 2s ease-in-out infinite;
	z-index: 1;
}

@keyframes pulse-icon {
	0%, 100% {
		opacity: 0;
		transform: scale(1);
	}
	50% {
		opacity: 0.6;
		transform: scale(1.1);
	}
}

.reference-card-rating {
	display: flex;
	gap: 0.35rem;
	align-items: center;
}

.reference-card-star {
	width: 20px;
	height: 20px;
	color: #fbbf24;
	transition: all 0.3s ease;
	animation: star-twinkle 2s ease-in-out infinite;
}

.reference-card-star:nth-child(1) { animation-delay: 0s; }
.reference-card-star:nth-child(2) { animation-delay: 0.2s; }
.reference-card-star:nth-child(3) { animation-delay: 0.4s; }
.reference-card-star:nth-child(4) { animation-delay: 0.6s; }
.reference-card-star:nth-child(5) { animation-delay: 0.8s; }

@keyframes star-twinkle {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.7;
		transform: scale(0.95);
	}
}

.reference-card:hover .reference-card-star {
	color: #f59e0b;
	transform: scale(1.1);
}

.reference-card-content {
	position: relative;
	flex-grow: 1;
	margin-bottom: 2rem;
}

.reference-card-quote-mark {
	position: absolute;
	top: -10px;
	left: -10px;
	width: 64px;
	height: 64px;
	color: rgba(30, 58, 138, 0.1);
	z-index: 0;
}

.reference-card-text {
	position: relative;
	font-size: 1.0625rem;
	line-height: 1.75;
	color: #475569;
	margin: 0;
	padding-left: 1.5rem;
	z-index: 1;
	font-style: italic;
}

.reference-card:hover .reference-card-text {
	color: #334155;
}

.reference-card-footer {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding-top: 1.75rem;
	border-top: 1px solid rgba(30, 58, 138, 0.15);
}

.reference-card-avatar-wrapper {
	position: relative;
	width: 64px;
	height: 64px;
	flex-shrink: 0;
}

.reference-card-avatar {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid rgba(30, 58, 138, 0.2);
	z-index: 2;
	transition: all 0.4s ease;
}

.reference-card-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.reference-card:hover .reference-card-avatar {
	border-color: rgba(30, 58, 138, 0.4);
	transform: scale(1.05);
}

.reference-card:hover .reference-card-avatar img {
	transform: scale(1.1);
}

.reference-card-avatar-ring {
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	border: 2px solid rgba(30, 58, 138, 0.2);
	opacity: 0;
	transition: all 0.4s ease;
	z-index: 1;
	animation: avatar-ring-pulse 2s ease-in-out infinite;
}

@keyframes avatar-ring-pulse {
	0%, 100% {
		opacity: 0;
		transform: scale(1);
	}
	50% {
		opacity: 0.6;
		transform: scale(1.1);
	}
}

.reference-card:hover .reference-card-avatar-ring {
	opacity: 1;
	border-color: rgba(30, 58, 138, 0.4);
}

.reference-card-author {
	flex-grow: 1;
	min-width: 0;
}

.reference-card-author-name {
	font-size: 1.125rem;
	font-weight: 700;
	color: #1e3a8a;
	margin: 0 0 0.375rem 0;
	line-height: 1.4;
	transition: color 0.3s ease;
}

.reference-card:hover .reference-card-author-name {
	color: #1e40af;
}

.reference-card-author-role {
	font-size: 0.9375rem;
	color: #64748b;
	margin: 0 0 0.25rem 0;
	line-height: 1.4;
	font-weight: 500;
}

.reference-card-author-company {
	font-size: 0.8125rem;
	color: #94a3b8;
	margin: 0;
	line-height: 1.4;
	display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.reference-card-inner {
		padding: 2rem 1.5rem;
	}

	.reference-card-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.25rem;
	}

	.reference-card-text {
		padding-left: 1rem;
		font-size: 1rem;
	}

	.reference-card-footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.reference-card-author {
		text-align: left;
	}
}

/* ============================================
   MODERN BENEFITS SECTION - NEW DESIGN
   ============================================ */

.benefits-modern {
	position: relative;
	padding: 8rem 1.5rem;
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
	overflow: hidden;
}

.benefits-modern-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.benefits-modern-gradient-1 {
	position: absolute;
	top: -20%;
	left: -10%;
	width: 60%;
	height: 60%;
	background: radial-gradient(circle, rgba(30, 58, 138, 0.2) 0%, transparent 70%);
	filter: blur(100px);
	animation: float-orb 15s ease-in-out infinite;
}

.benefits-modern-gradient-2 {
	position: absolute;
	bottom: -20%;
	right: -10%;
	width: 60%;
	height: 60%;
	background: radial-gradient(circle, rgba(30, 64, 175, 0.15) 0%, transparent 70%);
	filter: blur(100px);
	animation: float-orb 18s ease-in-out infinite reverse;
}

.benefits-modern-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		radial-gradient(circle at 2px 2px, rgba(30, 58, 138, 0.1) 1px, transparent 0);
	background-size: 40px 40px;
	opacity: 0.4;
}

.benefits-modern-container {
	max-width: 80rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.benefits-modern-header {
	text-align: center;
	margin-bottom: 4rem;
	color: #1e3a8a;
}

.benefits-modern-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	background: rgba(107, 33, 168, 0.15);
	border: 1px solid rgba(107, 33, 168, 0.3);
	color: #6b21a8;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	backdrop-filter: blur(10px);
}

.benefits-modern-badge svg {
	color: #6b21a8;
}

.benefits-modern-title {
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #1e3a8a 0%, #475569 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.benefits-modern-subtitle {
	font-size: 1.125rem;
	line-height: 1.8;
	color: #475569;
	max-width: 800px;
	margin: 0 auto;
}

.benefits-modern-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
	max-width: 1000px;
	margin: 0 auto;
}

.benefit-modern-item {
	position: relative;
	display: flex;
	gap: 2rem;
	align-items: flex-start;
	padding: 2.5rem;
	background: rgba(255, 255, 255, 0.9);
	border: 2px solid rgba(30, 58, 138, 0.1);
	border-radius: 24px;
	backdrop-filter: blur(20px);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
}

.benefit-modern-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, #1e3a8a 0%, #1e40af 100%);
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-modern-item:hover {
	transform: translateY(-8px) translateX(8px);
	border-color: rgba(30, 58, 138, 0.4);
	box-shadow: 0 20px 50px rgba(30, 58, 138, 0.25), 0 0 0 1px rgba(30, 58, 138, 0.1);
}

.benefit-modern-item:hover::before {
	transform: scaleY(1);
}

.benefit-modern-item-number {
	font-size: 4rem;
	font-weight: 900;
	line-height: 1;
	background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	opacity: 0.2;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	flex-shrink: 0;
	min-width: 80px;
}

.benefit-modern-item:hover .benefit-modern-item-number {
	opacity: 0.4;
	transform: scale(1.1);
}

.benefit-modern-item-content {
	flex: 1;
	position: relative;
	z-index: 1;
}

.benefit-modern-item-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
	border: 2px solid rgba(30, 58, 138, 0.2);
	border-radius: 16px;
	margin-bottom: 1.5rem;
	color: #1e3a8a;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-modern-item:hover .benefit-modern-item-icon {
	transform: scale(1.15) rotate(5deg);
	background: linear-gradient(135deg, rgba(30, 58, 138, 0.2) 0%, rgba(30, 64, 175, 0.2) 100%);
	border-color: rgba(30, 58, 138, 0.4);
	box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

.benefit-modern-item-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1e3a8a;
	margin-bottom: 1rem;
	transition: color 0.3s ease;
}

.benefit-modern-item:hover .benefit-modern-item-title {
	color: #1e40af;
}

.benefit-modern-item-description {
	font-size: 1rem;
	line-height: 1.8;
	color: #475569;
	transition: color 0.3s ease;
}

.benefit-modern-item:hover .benefit-modern-item-description {
	color: #334155;
}

@media (max-width: 768px) {
	.solutions-modern-grid,
	.pricing-modern-cards,
	.testimonials-modern-grid,
	.benefits-modern-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.benefit-modern-item {
		flex-direction: column;
		gap: 1.5rem;
		padding: 2rem;
	}
	
	.benefit-modern-item-number {
		font-size: 3rem;
		min-width: 60px;
	}
	
	.solutions-modern-title,
	.pricing-modern-title,
	.testimonials-modern-title,
	.benefits-modern-title {
		font-size: 2rem;
	}
	
	.pricing-modern-card-featured {
		transform: scale(1);
	}
}

/* ============================================
   ABOUT PAGE - MODERN DESIGN
   ============================================ */

.about-modern-hero {
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
	padding: 8rem 1.5rem;
	overflow: hidden;
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
}

.about-modern-hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.about-modern-hero-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	animation: float-orb 20s ease-in-out infinite;
}

.about-modern-hero-orb:nth-child(1) {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(107, 33, 168, 0.15) 0%, transparent 70%);
	top: -10%;
	left: -5%;
	animation-delay: 0s;
}

.about-modern-hero-orb:nth-child(2) {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(30, 58, 138, 0.12) 0%, transparent 70%);
	bottom: -10%;
	right: -5%;
	animation-delay: 5s;
}

.about-modern-hero-orb:nth-child(3) {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(91, 33, 182, 0.15) 0%, transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: 10s;
}

.about-modern-hero-container {
	max-width: 80rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.about-modern-hero-content {
	color: #1e3a8a;
	max-width: 900px;
}

.about-modern-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	background: rgba(107, 33, 168, 0.15);
	border: 1px solid rgba(107, 33, 168, 0.3);
	color: #6b21a8;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 2rem;
	backdrop-filter: blur(10px);
}

.about-modern-hero-badge svg {
	color: #6b21a8;
}

.about-modern-hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #1e3a8a 0%, #475569 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.about-modern-hero-description {
	font-size: 1.125rem;
	line-height: 1.8;
	color: #475569;
}

.about-modern-features {
	position: relative;
	padding: 8rem 1.5rem;
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
	overflow: hidden;
}

.about-modern-features-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.about-modern-features-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		radial-gradient(circle at 2px 2px, rgba(107, 33, 168, 0.15) 1px, transparent 0);
	background-size: 40px 40px;
	opacity: 0.4;
}

.about-modern-features-container {
	max-width: 80rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.about-modern-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.about-modern-feature-card {
	position: relative;
}

.about-modern-feature-card-inner {
	position: relative;
	padding: 2.5rem;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(107, 33, 168, 0.2);
	border-radius: 20px;
	backdrop-filter: blur(20px);
	transition: all 0.4s ease;
	height: 100%;
	overflow: hidden;
}

.about-modern-feature-card-inner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #6b21a8 0%, #1e3a8a 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.about-modern-feature-card:hover .about-modern-feature-card-inner {
	transform: translateY(-8px);
	border-color: rgba(107, 33, 168, 0.5);
	box-shadow: 0 20px 40px rgba(107, 33, 168, 0.3);
}

.about-modern-feature-card:hover .about-modern-feature-card-inner::before {
	transform: scaleX(1);
}

.about-modern-feature-icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(107, 33, 168, 0.2) 0%, rgba(30, 58, 138, 0.2) 100%);
	border-radius: 16px;
	margin-bottom: 1.5rem;
	color: #6b21a8;
	transition: all 0.3s ease;
}

.about-modern-feature-card:hover .about-modern-feature-icon {
	transform: scale(1.1) rotate(5deg);
	background: linear-gradient(135deg, rgba(107, 33, 168, 0.3) 0%, rgba(30, 58, 138, 0.3) 100%);
}

.about-modern-feature-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1e3a8a;
	margin-bottom: 1rem;
}

.about-modern-feature-description {
	font-size: 1rem;
	line-height: 1.7;
	color: #475569;
}

.about-modern-info {
	position: relative;
	padding: 8rem 1.5rem;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	overflow: hidden;
}

.about-modern-info-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.about-modern-info-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(107, 33, 168, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
}

.about-modern-info-container {
	max-width: 80rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.about-modern-info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-modern-info-visual {
	position: relative;
	height: 400px;
}

.about-modern-info-shapes {
	position: relative;
	width: 100%;
	height: 100%;
}

.about-modern-info-shape {
	position: absolute;
	border-radius: 20px;
	background: linear-gradient(135deg, rgba(107, 33, 168, 0.2) 0%, rgba(30, 58, 138, 0.2) 100%);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(107, 33, 168, 0.3);
	animation: float 6s ease-in-out infinite;
}

.about-modern-info-shape:nth-child(1) {
	width: 200px;
	height: 200px;
	top: 10%;
	left: 10%;
	animation-delay: 0s;
}

.about-modern-info-shape:nth-child(2) {
	width: 150px;
	height: 150px;
	top: 50%;
	right: 20%;
	animation-delay: 2s;
}

.about-modern-info-shape:nth-child(3) {
	width: 180px;
	height: 180px;
	bottom: 10%;
	left: 30%;
	animation-delay: 4s;
}

.about-modern-info-content {
	color: #1e3a8a;
}

.about-modern-info-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.about-modern-info-card {
	padding: 2rem;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(107, 33, 168, 0.2);
	border-radius: 16px;
	backdrop-filter: blur(20px);
	text-align: center;
	transition: all 0.3s ease;
}

.about-modern-info-card:hover {
	transform: translateY(-4px);
	border-color: rgba(107, 33, 168, 0.5);
	box-shadow: 0 10px 30px rgba(107, 33, 168, 0.3);
}

.about-modern-info-card-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(107, 33, 168, 0.2) 0%, rgba(30, 58, 138, 0.2) 100%);
	border-radius: 12px;
	margin: 0 auto 1rem;
	color: #6b21a8;
}

.about-modern-info-card-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: #1e3a8a;
	margin-bottom: 0.5rem;
}

.about-modern-info-card-text {
	font-size: 0.875rem;
	color: #475569;
}

.about-modern-info-cta {
	text-align: center;
}

.about-modern-info-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2rem;
	background: linear-gradient(135deg, #6b21a8 0%, #5b21b6 100%);
	color: #ffffff;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(107, 33, 168, 0.4);
}

.about-modern-info-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(107, 33, 168, 0.6);
}

/* ============================================
   CONTACT PAGE - MODERN DESIGN
   ============================================ */

.contact-modern-hero {
	position: relative;
	min-height: 60vh;
	display: flex;
	align-items: center;
	padding: 8rem 1.5rem;
	overflow: hidden;
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
}

.contact-modern-hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.contact-modern-hero-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	animation: float-orb 20s ease-in-out infinite;
}

.contact-modern-hero-orb:nth-child(1) {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(107, 33, 168, 0.15) 0%, transparent 70%);
	top: -10%;
	left: -5%;
	animation-delay: 0s;
}

.contact-modern-hero-orb:nth-child(2) {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(30, 58, 138, 0.12) 0%, transparent 70%);
	bottom: -10%;
	right: -5%;
	animation-delay: 5s;
}

.contact-modern-hero-container {
	max-width: 80rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.contact-modern-hero-content {
	color: #1e3a8a;
	max-width: 800px;
	text-align: center;
	margin: 0 auto;
}

.contact-modern-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	background: rgba(107, 33, 168, 0.15);
	border: 1px solid rgba(107, 33, 168, 0.3);
	color: #6b21a8;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 2rem;
	backdrop-filter: blur(10px);
}

.contact-modern-hero-badge svg {
	color: #6b21a8;
}

.contact-modern-hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #1e3a8a 0%, #475569 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.contact-modern-hero-description {
	font-size: 1.125rem;
	line-height: 1.8;
	color: #475569;
}

.contact-modern-info {
	position: relative;
	padding: 6rem 1.5rem;
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
	overflow: hidden;
}

.contact-modern-info-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.contact-modern-info-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		radial-gradient(circle at 2px 2px, rgba(107, 33, 168, 0.15) 1px, transparent 0);
	background-size: 40px 40px;
	opacity: 0.4;
}

.contact-modern-info-container {
	max-width: 80rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.contact-modern-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.contact-modern-info-card {
	position: relative;
}

.contact-modern-info-card-inner {
	position: relative;
	padding: 2.5rem;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(107, 33, 168, 0.2);
	border-radius: 20px;
	backdrop-filter: blur(20px);
	transition: all 0.4s ease;
	text-align: center;
	height: 100%;
}

.contact-modern-info-card-inner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #6b21a8 0%, #1e3a8a 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.contact-modern-info-card:hover .contact-modern-info-card-inner {
	transform: translateY(-8px);
	border-color: rgba(107, 33, 168, 0.5);
	box-shadow: 0 20px 40px rgba(107, 33, 168, 0.3);
}

.contact-modern-info-card:hover .contact-modern-info-card-inner::before {
	transform: scaleX(1);
}

.contact-modern-info-icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(107, 33, 168, 0.2) 0%, rgba(30, 58, 138, 0.2) 100%);
	border-radius: 16px;
	margin: 0 auto 1.5rem;
	color: #6b21a8;
	transition: all 0.3s ease;
}

.contact-modern-info-card:hover .contact-modern-info-icon {
	transform: scale(1.1) rotate(5deg);
	background: linear-gradient(135deg, rgba(107, 33, 168, 0.3) 0%, rgba(30, 58, 138, 0.3) 100%);
}

.contact-modern-info-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1e3a8a;
	margin-bottom: 1rem;
}

.contact-modern-info-text {
	font-size: 1rem;
	line-height: 1.7;
	color: #475569;
}

.contact-modern-info-link {
	color: #6b21a8;
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-modern-info-link:hover {
	color: #6b21a8;
}

.contact-modern-form {
	position: relative;
	padding: 8rem 1.5rem;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	overflow: hidden;
}

.contact-modern-form-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.contact-modern-form-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(107, 33, 168, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
}

.contact-modern-form-container {
	max-width: 60rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.contact-modern-form-wrapper {
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(107, 33, 168, 0.2);
	border-radius: 24px;
	backdrop-filter: blur(20px);
	padding: 3rem;
}

.contact-modern-form-header {
	text-align: center;
	margin-bottom: 3rem;
	color: #1e3a8a;
}

.contact-modern-form-title {
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #1e3a8a 0%, #475569 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.contact-modern-form-subtitle {
	font-size: 1.125rem;
	line-height: 1.8;
	color: #475569;
}

.contact-modern-form-form {
	color: #1e3a8a;
}

.contact-modern-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.contact-modern-form-field {
	position: relative;
}

.contact-modern-form-field-full {
	grid-column: 1 / -1;
}

.contact-modern-form-label {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	color: #6b21a8;
	margin-bottom: 0.5rem;
}

.contact-modern-form-input,
.contact-modern-form-textarea {
	width: 100%;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(107, 33, 168, 0.3);
	border-radius: 12px;
	color: #1e3a8a;
	font-size: 1rem;
	transition: all 0.3s ease;
	font-family: inherit;
}

.contact-modern-form-input:focus,
.contact-modern-form-textarea:focus {
	outline: none;
	border-color: rgba(107, 33, 168, 0.6);
	box-shadow: 0 0 0 3px rgba(107, 33, 168, 0.1);
}

.contact-modern-form-textarea {
	resize: vertical;
	min-height: 150px;
}

.contact-modern-form-actions {
	text-align: center;
}

.contact-modern-form-submit {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2rem;
	background: linear-gradient(135deg, #6b21a8 0%, #5b21b6 100%);
	color: #ffffff;
	border: none;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(107, 33, 168, 0.4);
}

.contact-modern-form-submit:hover:not(:disabled) {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(107, 33, 168, 0.6);
}

.contact-modern-form-submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	transform: none;
}

.contact-modern-form-message {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 1.5rem;
	background: rgba(16, 185, 129, 0.1);
	border: 1px solid rgba(16, 185, 129, 0.3);
	border-radius: 12px;
	color: #6ee7b7;
	margin-top: 1.5rem;
}

.contact-modern-form-message.hidden {
	display: none;
}

@media (max-width: 768px) {
	.about-modern-hero-title,
	.contact-modern-hero-title {
		font-size: 2.5rem;
	}
	
	.about-modern-info-grid {
		grid-template-columns: 1fr;
	}
	
	.about-modern-info-cards {
		grid-template-columns: 1fr;
	}
	
	.contact-modern-form-grid {
		grid-template-columns: 1fr;
	}
	
	.contact-modern-form-wrapper {
		padding: 2rem;
	}
}

/* ============================================
   PROCESS SECTION - MODERN DESIGN
   ============================================ */

.process-modern {
	position: relative;
	padding: 8rem 1.5rem;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	overflow: hidden;
}

.process-modern-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: url('./img/mix_53876-114096.avif');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.process-modern-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	animation: float-orb 20s ease-in-out infinite;
}

.process-modern-orb:nth-child(1) {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(107, 33, 168, 0.3) 0%, transparent 70%);
	top: -10%;
	left: -5%;
	animation-delay: 0s;
}

.process-modern-orb:nth-child(2) {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(30, 58, 138, 0.25) 0%, transparent 70%);
	bottom: -10%;
	right: -5%;
	animation-delay: 5s;
}

.process-modern-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		radial-gradient(circle at 2px 2px, rgba(107, 33, 168, 0.1) 1px, transparent 0);
	background-size: 50px 50px;
	opacity: 0.3;
}

.process-modern-container {
	max-width: 80rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.process-modern-header {
	text-align: center;
	margin-bottom: 5rem;
	color: #1e3a8a;
}

.process-modern-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	background: rgba(107, 33, 168, 0.15);
	border: 1px solid rgba(107, 33, 168, 0.3);
	color: #6b21a8;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 2rem;
	backdrop-filter: blur(10px);
}

.process-modern-title {
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #1e3a8a 0%, #475569 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.process-modern-subtitle {
	font-size: 1.125rem;
	line-height: 1.8;
	color: #475569;
	max-width: 700px;
	margin: 0 auto;
}

.process-modern-timeline {
	position: relative;
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.process-modern-timeline-line {
	display: none;
}

.process-modern-item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1.5rem;
	margin-bottom: 0;
}

.process-modern-item-visual {
	position: relative;
	flex-shrink: 0;
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.process-modern-item-icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.9);
	border: 2px solid rgba(107, 33, 168, 0.3);
	border-radius: 20px;
	backdrop-filter: blur(20px);
	color: #6b21a8;
	transition: all 0.3s ease;
	position: relative;
	z-index: 2;
}

.process-modern-item:hover .process-modern-item-icon {
	transform: scale(1.1) rotate(5deg);
	border-color: rgba(107, 33, 168, 0.6);
	box-shadow: 0 10px 30px rgba(107, 33, 168, 0.4);
}

.process-modern-item-number {
	position: absolute;
	top: -10px;
	right: -10px;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #6b21a8 0%, #5b21b6 100%);
	border-radius: 50%;
	color: #ffffff;
	font-weight: 700;
	font-size: 0.875rem;
	box-shadow: 0 4px 15px rgba(107, 33, 168, 0.5);
	z-index: 3;
}

.process-modern-item-content {
	flex: 1;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(107, 33, 168, 0.2);
	border-radius: 20px;
	padding: 1.75rem;
	backdrop-filter: blur(20px);
	transition: all 0.3s ease;
	width: 100%;
}

.process-modern-item:hover .process-modern-item-content {
	transform: translateY(-4px);
	border-color: rgba(107, 33, 168, 0.5);
	box-shadow: 0 10px 30px rgba(107, 33, 168, 0.3);
}

.process-modern-item-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1e3a8a;
	margin-bottom: 1rem;
}

.process-modern-item-description {
	font-size: 1rem;
	line-height: 1.7;
	color: #475569;
	margin-bottom: 1rem;
}

.process-modern-item-duration {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: rgba(107, 33, 168, 0.1);
	border-radius: 8px;
	color: #6b21a8;
	font-size: 0.875rem;
	font-weight: 600;
}

.process-modern-cta {
	text-align: center;
	margin-top: 4rem;
}

.process-modern-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2rem;
	background: linear-gradient(135deg, #6b21a8 0%, #5b21b6 100%);
	color: #ffffff;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(107, 33, 168, 0.4);
}

.process-modern-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(107, 33, 168, 0.6);
}

/* ============================================
   FOOTER - MODERN DESIGN
   ============================================ */

.footer-modern {
	position: relative;
	padding: 5rem 1.5rem 2rem;
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
	overflow: hidden;
	border-top: 1px solid rgba(107, 33, 168, 0.1);
}

.footer-modern-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.footer-modern-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		radial-gradient(circle at 2px 2px, rgba(107, 33, 168, 0.08) 1px, transparent 0);
	background-size: 40px 40px;
	opacity: 0.4;
}

.footer-modern-shapes {
	position: absolute;
	inset: 0;
}

.footer-modern-shape {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	animation: float-orb 25s ease-in-out infinite;
}

.footer-modern-shape:nth-child(1) {
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(107, 33, 168, 0.15) 0%, transparent 70%);
	top: 10%;
	right: 10%;
	animation-delay: 0s;
}

.footer-modern-shape:nth-child(2) {
	width: 250px;
	height: 250px;
	background: radial-gradient(circle, rgba(30, 58, 138, 0.12) 0%, transparent 70%);
	bottom: 20%;
	left: 15%;
	animation-delay: 10s;
}

.footer-modern-container {
	max-width: 80rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.footer-modern-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-modern-brand {
	color: #1e3a8a;
}

.footer-modern-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
	text-decoration: none;
	color: #1e3a8a;
}

.footer-modern-logo-image {
	width: 40px;
	height: 40px;
}

.footer-modern-logo-text {
	font-size: 1.25rem;
	font-weight: 700;
}

.footer-modern-description {
	font-size: 0.875rem;
	line-height: 1.7;
	color: #475569;
	margin-bottom: 1.5rem;
}

.footer-modern-social {
	display: flex;
	gap: 1rem;
}

.footer-modern-social-link {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(107, 33, 168, 0.2);
	border-radius: 10px;
	color: #6b21a8;
	transition: all 0.3s ease;
	text-decoration: none;
}

.footer-modern-social-link:hover {
	background: rgba(107, 33, 168, 0.2);
	border-color: rgba(107, 33, 168, 0.4);
	transform: translateY(-2px);
}

.footer-modern-column {
	color: #1e3a8a;
}

.footer-modern-title {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: #1e3a8a;
}

.footer-modern-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-modern-links li {
	margin-bottom: 0.75rem;
}

.footer-modern-link {
	color: #475569;
	text-decoration: none;
	font-size: 0.875rem;
	transition: color 0.3s ease;
}

.footer-modern-link:hover {
	color: #6b21a8;
}

.footer-modern-legal {
	font-size: 0.75rem;
	line-height: 1.6;
	color: #475569;
	margin-bottom: 1rem;
}

.footer-modern-legal strong {
	color: #475569;
}

.footer-modern-legal-info {
	font-size: 0.75rem;
	line-height: 1.6;
	color: #64748b;
}

.footer-modern-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(107, 33, 168, 0.1);
	flex-wrap: wrap;
	gap: 1rem;
}

.footer-modern-copyright {
	font-size: 0.875rem;
	color: #475569;
}

.footer-modern-legal-links {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
}

.footer-modern-legal-link {
	color: #475569;
	text-decoration: none;
	font-size: 0.875rem;
	transition: color 0.3s ease;
}

.footer-modern-legal-link:hover {
	color: #6b21a8;
}

/* ============================================
   ADDITIONAL SHAPES FOR ABOUT & CONTACT
   ============================================ */

.about-modern-hero-shapes,
.contact-modern-hero-shapes,
.about-modern-features-shapes,
.contact-modern-info-shapes,
.contact-modern-form-shapes {
	position: absolute;
	inset: 0;
}

.about-modern-hero-shape,
.contact-modern-hero-shape,
.about-modern-features-shape,
.contact-modern-info-shape,
.contact-modern-form-shape {
	position: absolute;
	border-radius: 20px;
	background: linear-gradient(135deg, rgba(107, 33, 168, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(107, 33, 168, 0.2);
	animation: float 8s ease-in-out infinite;
}

.about-modern-hero-shape:nth-child(1),
.contact-modern-hero-shape:nth-child(1) {
	width: 150px;
	height: 150px;
	top: 20%;
	right: 10%;
	animation-delay: 0s;
}

.about-modern-hero-shape:nth-child(2),
.contact-modern-hero-shape:nth-child(2) {
	width: 120px;
	height: 120px;
	bottom: 30%;
	left: 15%;
	animation-delay: 2s;
}

.about-modern-hero-shape:nth-child(3),
.contact-modern-hero-shape:nth-child(3) {
	width: 100px;
	height: 100px;
	top: 60%;
	right: 30%;
	animation-delay: 4s;
}

.about-modern-features-shape:nth-child(1),
.contact-modern-info-shape:nth-child(1),
.contact-modern-form-shape:nth-child(1) {
	width: 200px;
	height: 200px;
	top: 10%;
	left: -5%;
	animation-delay: 0s;
}

.about-modern-features-shape:nth-child(2),
.contact-modern-info-shape:nth-child(2),
.contact-modern-form-shape:nth-child(2) {
	width: 180px;
	height: 180px;
	bottom: 10%;
	right: -5%;
	animation-delay: 3s;
}

/* ============================================
   FAQ PAGE - MODERN DESIGN
   ============================================ */

.faq-modern-hero {
	position: relative;
	min-height: 60vh;
	display: flex;
	align-items: center;
	padding: 8rem 1.5rem;
	overflow: hidden;
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
}

.faq-modern-hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.faq-modern-hero-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	animation: float-orb 20s ease-in-out infinite;
}

.faq-modern-hero-orb:nth-child(1) {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(107, 33, 168, 0.15) 0%, transparent 70%);
	top: -10%;
	left: -5%;
	animation-delay: 0s;
}

.faq-modern-hero-orb:nth-child(2) {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(30, 58, 138, 0.12) 0%, transparent 70%);
	bottom: -10%;
	right: -5%;
	animation-delay: 5s;
}

.faq-modern-hero-shapes {
	position: absolute;
	inset: 0;
}

.faq-modern-hero-shape {
	position: absolute;
	border-radius: 20px;
	background: linear-gradient(135deg, rgba(107, 33, 168, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(107, 33, 168, 0.2);
	animation: float 8s ease-in-out infinite;
}

.faq-modern-hero-shape:nth-child(1) {
	width: 150px;
	height: 150px;
	top: 20%;
	right: 10%;
	animation-delay: 0s;
}

.faq-modern-hero-shape:nth-child(2) {
	width: 120px;
	height: 120px;
	bottom: 30%;
	left: 15%;
	animation-delay: 2s;
}

.faq-modern-hero-container {
	max-width: 80rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.faq-modern-hero-content {
	color: #1e3a8a;
	max-width: 800px;
	text-align: center;
	margin: 0 auto;
}

.faq-modern-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	background: rgba(107, 33, 168, 0.15);
	border: 1px solid rgba(107, 33, 168, 0.3);
	color: #6b21a8;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 2rem;
	backdrop-filter: blur(10px);
}

.faq-modern-hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #1e3a8a 0%, #475569 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.faq-modern-hero-description {
	font-size: 1.125rem;
	line-height: 1.8;
	color: #475569;
}

.faq-modern-section {
	position: relative;
	padding: 8rem 1.5rem;
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
	overflow: hidden;
}

.faq-modern-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.faq-modern-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		radial-gradient(circle at 2px 2px, rgba(107, 33, 168, 0.15) 1px, transparent 0);
	background-size: 40px 40px;
	opacity: 0.4;
}

.faq-modern-shapes {
	position: absolute;
	inset: 0;
}

.faq-modern-shape {
	position: absolute;
	border-radius: 20px;
	background: linear-gradient(135deg, rgba(107, 33, 168, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(107, 33, 168, 0.2);
	animation: float 8s ease-in-out infinite;
}

.faq-modern-shape:nth-child(1) {
	width: 200px;
	height: 200px;
	top: 10%;
	left: -5%;
	animation-delay: 0s;
}

.faq-modern-shape:nth-child(2) {
	width: 180px;
	height: 180px;
	bottom: 10%;
	right: -5%;
	animation-delay: 3s;
}

.faq-modern-container {
	max-width: 60rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.faq-modern-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 4rem;
}

.faq-modern-item {
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(107, 33, 168, 0.2);
	border-radius: 16px;
	backdrop-filter: blur(20px);
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-modern-item:hover {
	border-color: rgba(107, 33, 168, 0.4);
}

.faq-modern-question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem;
	background: transparent;
	border: none;
	color: #1e3a8a;
	font-size: 1.125rem;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	transition: all 0.3s ease;
}

.faq-modern-question:hover {
	color: #6b21a8;
}

.faq-modern-icon {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	color: #6b21a8;
	transition: transform 0.3s ease;
}

.faq-modern-item-active .faq-modern-icon {
	transform: rotate(180deg);
}

.faq-modern-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-modern-item-active .faq-modern-answer {
	max-height: 500px;
}

.faq-modern-answer-text {
	padding: 0 1.5rem 1.5rem;
	color: #475569;
	line-height: 1.7;
	font-size: 1rem;
}

.faq-modern-cta {
	text-align: center;
	padding: 3rem;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(107, 33, 168, 0.2);
	border-radius: 20px;
	backdrop-filter: blur(20px);
}

.faq-modern-cta-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: #1e3a8a;
	margin-bottom: 1rem;
}

.faq-modern-cta-text {
	font-size: 1rem;
	color: #475569;
	margin-bottom: 2rem;
}

.faq-modern-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2rem;
	background: linear-gradient(135deg, #6b21a8 0%, #5b21b6 100%);
	color: #ffffff;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(107, 33, 168, 0.4);
}

.faq-modern-cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(107, 33, 168, 0.6);
}

/* ============================================
   SERVICE PAGE - MODERN DESIGN
   ============================================ */

.service-modern-hero {
	position: relative;
	min-height: 60vh;
	display: flex;
	align-items: center;
	padding: 8rem 1.5rem;
	overflow: hidden;
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
}

.service-modern-hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.service-modern-hero-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	animation: float-orb 20s ease-in-out infinite;
}

.service-modern-hero-orb:nth-child(1) {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(107, 33, 168, 0.15) 0%, transparent 70%);
	top: -10%;
	left: -5%;
	animation-delay: 0s;
}

.service-modern-hero-orb:nth-child(2) {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(30, 58, 138, 0.12) 0%, transparent 70%);
	bottom: -10%;
	right: -5%;
	animation-delay: 5s;
}

.service-modern-hero-shapes {
	position: absolute;
	inset: 0;
}

.service-modern-hero-shape {
	position: absolute;
	border-radius: 20px;
	background: linear-gradient(135deg, rgba(107, 33, 168, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(107, 33, 168, 0.2);
	animation: float 8s ease-in-out infinite;
}

.service-modern-hero-shape:nth-child(1) {
	width: 150px;
	height: 150px;
	top: 20%;
	right: 10%;
	animation-delay: 0s;
}

.service-modern-hero-shape:nth-child(2) {
	width: 120px;
	height: 120px;
	bottom: 30%;
	left: 15%;
	animation-delay: 2s;
}

.service-modern-hero-container {
	max-width: 80rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.service-modern-hero-content {
	color: #1e3a8a;
	max-width: 900px;
	text-align: center;
	margin: 0 auto;
}

.service-modern-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	background: rgba(107, 33, 168, 0.15);
	border: 1px solid rgba(107, 33, 168, 0.3);
	color: #6b21a8;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 2rem;
	backdrop-filter: blur(10px);
}

.service-modern-hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #1e3a8a 0%, #475569 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.service-modern-hero-description {
	font-size: 1.125rem;
	line-height: 1.8;
	color: #475569;
}

.service-modern-section {
	position: relative;
	padding: 8rem 1.5rem;
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
	overflow: hidden;
}

.service-modern-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.service-modern-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		radial-gradient(circle at 2px 2px, rgba(107, 33, 168, 0.15) 1px, transparent 0);
	background-size: 40px 40px;
	opacity: 0.4;
}

.service-modern-shapes {
	position: absolute;
	inset: 0;
}

.service-modern-shape {
	position: absolute;
	border-radius: 20px;
	background: linear-gradient(135deg, rgba(107, 33, 168, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(107, 33, 168, 0.2);
	animation: float 8s ease-in-out infinite;
}

.service-modern-shape:nth-child(1) {
	width: 200px;
	height: 200px;
	top: 10%;
	left: -5%;
	animation-delay: 0s;
}

.service-modern-shape:nth-child(2) {
	width: 180px;
	height: 180px;
	bottom: 10%;
	right: -5%;
	animation-delay: 3s;
}

.service-modern-container {
	max-width: 80rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.service-modern-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-bottom: 4rem;
}

.service-modern-card {
	position: relative;
}

.service-modern-card-inner {
	position: relative;
	padding: 2.5rem;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(107, 33, 168, 0.2);
	border-radius: 20px;
	backdrop-filter: blur(20px);
	transition: all 0.4s ease;
	height: 100%;
	overflow: hidden;
}

.service-modern-card-inner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #6b21a8 0%, #1e3a8a 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.service-modern-card:hover .service-modern-card-inner {
	transform: translateY(-8px);
	border-color: rgba(107, 33, 168, 0.5);
	box-shadow: 0 20px 40px rgba(107, 33, 168, 0.3);
}

.service-modern-card:hover .service-modern-card-inner::before {
	transform: scaleX(1);
}

.service-modern-card-icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(107, 33, 168, 0.2) 0%, rgba(30, 58, 138, 0.2) 100%);
	border-radius: 16px;
	margin-bottom: 1.5rem;
	color: #6b21a8;
	transition: all 0.3s ease;
}

.service-modern-card:hover .service-modern-card-icon {
	transform: scale(1.1) rotate(5deg);
	background: linear-gradient(135deg, rgba(107, 33, 168, 0.3) 0%, rgba(30, 58, 138, 0.3) 100%);
}

.service-modern-card-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1e3a8a;
	margin-bottom: 1rem;
}

.service-modern-card-description {
	font-size: 1rem;
	line-height: 1.7;
	color: #475569;
	margin-bottom: 1.5rem;
}

.service-modern-card-features {
	list-style: none;
	padding: 0;
	margin: 0;
}

.service-modern-card-feature {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	color: #475569;
	font-size: 0.9375rem;
	line-height: 1.6;
}

.service-modern-card-feature svg {
	flex-shrink: 0;
	color: #6b21a8;
	margin-top: 0.25rem;
}

.service-modern-cta {
	text-align: center;
	padding: 3rem;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(107, 33, 168, 0.2);
	border-radius: 20px;
	backdrop-filter: blur(20px);
}

.service-modern-cta-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: #1e3a8a;
	margin-bottom: 1rem;
}

.service-modern-cta-text {
	font-size: 1rem;
	color: #475569;
	margin-bottom: 2rem;
}

.service-modern-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2rem;
	background: linear-gradient(135deg, #6b21a8 0%, #5b21b6 100%);
	color: #ffffff;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(107, 33, 168, 0.4);
}

.service-modern-cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(107, 33, 168, 0.6);
}

@media (max-width: 768px) {
	.process-modern-timeline {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	
	.process-modern-item {
		flex-direction: column;
		text-align: center;
	}
	
	.process-modern-item-content {
		padding: 1.5rem;
	}
	
	.process-modern-title,
	.faq-modern-hero-title,
	.service-modern-hero-title {
		font-size: 2.5rem;
	}
	
	.footer-modern-grid {
		grid-template-columns: 1fr;
	}
	
	.footer-modern-bottom {
		flex-direction: column;
		text-align: center;
	}
	
	.service-modern-grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================
   HEADER - MODERN DESIGN
   ============================================ */

.header-modern {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(30, 58, 138, 0.95);
	backdrop-filter: blur(20px) saturate(180%);
	border-bottom: 1px solid rgba(59, 130, 246, 0.2);
	padding: 1rem 1.5rem;
	transition: all 0.3s ease;
}

.header-modern.scrolled {
	background: rgba(30, 58, 138, 0.98);
	backdrop-filter: blur(30px) saturate(180%);
	border-bottom-color: rgba(59, 130, 246, 0.3);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-modern-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.header-modern-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(107, 33, 168, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(107, 33, 168, 0.05) 1px, transparent 1px);
	background-size: 20px 20px;
	opacity: 0.3;
}

.header-modern-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.4;
	animation: float-orb 15s ease-in-out infinite;
}

.header-modern-orb-1 {
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(107, 33, 168, 0.15) 0%, transparent 70%);
	top: -50%;
	left: -5%;
	animation-delay: 0s;
}

.header-modern-orb-2 {
	width: 150px;
	height: 150px;
	background: radial-gradient(circle, rgba(30, 58, 138, 0.12) 0%, transparent 70%);
	top: -30%;
	right: -5%;
	animation-delay: 5s;
}

.header-modern-container {
	max-width: 80rem;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	position: relative;
	z-index: 1;
}

.header-modern-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	transition: transform 0.3s ease;
	position: relative;
	z-index: 2;
}

.header-modern-logo:hover {
	transform: scale(1.05);
}

.header-modern-logo-wrapper {
	position: relative;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-modern-logo-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 12px;
	position: relative;
	z-index: 2;
	transition: transform 0.3s ease;
}

.header-modern-logo:hover .header-modern-logo-image {
	transform: rotate(5deg) scale(1.1);
}

.header-modern-logo-glow {
	position: absolute;
	inset: -4px;
	background: linear-gradient(135deg, rgba(107, 33, 168, 0.4), rgba(30, 58, 138, 0.4));
	border-radius: 16px;
	filter: blur(12px);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}

.header-modern-logo:hover .header-modern-logo-glow {
	opacity: 1;
}

.header-modern-logo-text {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: -0.025em;
	transition: all 0.3s ease;
}

.header-modern-logo:hover .header-modern-logo-text {
	color: #93c5fd;
	text-shadow: 0 0 20px rgba(147, 197, 253, 0.5);
}

.header-modern-nav {
	display: none;
	align-items: center;
	gap: 0.5rem;
}

@media (min-width: 1024px) {
	.header-modern-nav {
		display: flex;
	}
}

.header-modern-nav-link {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1rem;
	color: #cbd5e1;
	text-decoration: none;
	font-weight: 500;
	font-size: 0.9375rem;
	border-radius: 10px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
}

.header-modern-nav-link::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(30, 64, 175, 0.2) 100%);
	border-radius: 10px;
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-modern-nav-link:hover::before {
	opacity: 1;
	transform: scale(1);
}

.header-modern-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%) scaleX(0);
	width: 80%;
	height: 2px;
	background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
	border-radius: 2px;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 0 10px rgba(96, 165, 250, 0.6);
}

.header-modern-nav-link:hover::after {
	transform: translateX(-50%) scaleX(1);
}

.header-modern-nav-link-text {
	position: relative;
	z-index: 1;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-modern-nav-link:hover .header-modern-nav-link-text {
	color: #ffffff;
	transform: translateY(-2px);
	text-shadow: 0 2px 10px rgba(96, 165, 250, 0.5);
}

.header-modern-nav-link-underline {
	display: none;
}

.header-modern-nav-link-cta {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(37, 99, 235, 0.3) 100%);
	border: 1px solid rgba(96, 165, 250, 0.4);
	padding: 0.625rem 1.25rem;
	margin-left: 0.5rem;
	box-shadow: 0 2px 10px rgba(59, 130, 246, 0.2);
}

.header-modern-nav-link-cta::before {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.5) 0%, rgba(37, 99, 235, 0.5) 100%);
}

.header-modern-nav-link-cta:hover {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.6) 0%, rgba(37, 99, 235, 0.6) 100%);
	border-color: rgba(96, 165, 250, 0.6);
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 6px 25px rgba(59, 130, 246, 0.5), 0 0 20px rgba(96, 165, 250, 0.3);
}

.header-modern-nav-link-cta svg {
	position: relative;
	z-index: 1;
	transition: transform 0.3s ease;
}

.header-modern-nav-link-cta:hover svg {
	transform: translateX(4px);
}

.header-modern-toggle {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 28px;
	height: 22px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	position: relative;
	z-index: 2;
	transition: transform 0.3s ease;
}

@media (min-width: 1024px) {
	.header-modern-toggle {
		display: none;
	}
}

.header-modern-toggle:hover {
	transform: scale(1.1);
}

.header-modern-toggle-line {
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 100%);
	border-radius: 3px;
	transition: all 0.3s ease;
	transform-origin: center;
	box-shadow: 0 0 5px rgba(96, 165, 250, 0.5);
}

.header-modern-toggle.active .header-modern-toggle-line:nth-child(1) {
	transform: translateY(9.5px) rotate(45deg);
}

.header-modern-toggle.active .header-modern-toggle-line:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.header-modern-toggle.active .header-modern-toggle-line:nth-child(3) {
	transform: translateY(-9.5px) rotate(-45deg);
}

.header-modern-mobile {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100vw;
	height: 100vh;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.header-modern-mobile.hidden {
	display: none;
}

.header-modern-mobile-bg {
	position: fixed;
	inset: 0;
	background: rgba(30, 58, 138, 0.98);
	backdrop-filter: blur(30px);
	z-index: -1;
}

.header-modern-mobile-container {
	position: relative;
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	z-index: 1;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
}

.header-modern-mobile-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 1.5rem;
	background: rgba(30, 64, 175, 0.3);
	border-bottom: 1px solid rgba(59, 130, 246, 0.2);
	flex-shrink: 0;
}

.header-modern-mobile-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	color: #ffffff;
}

.header-modern-mobile-logo-wrapper {
	width: 40px;
	height: 40px;
	position: relative;
}

.header-modern-mobile-logo-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.header-modern-mobile-logo-text {
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
	text-shadow: 0 2px 10px rgba(96, 165, 250, 0.3);
}

.header-modern-mobile-close {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(59, 130, 246, 0.2);
	border: 1px solid rgba(96, 165, 250, 0.3);
	border-radius: 12px;
	color: #ffffff;
	cursor: pointer;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.header-modern-mobile-close:hover {
	background: rgba(59, 130, 246, 0.4);
	border-color: rgba(96, 165, 250, 0.5);
	transform: rotate(90deg);
}

.header-modern-mobile-close svg {
	width: 24px;
	height: 24px;
}

.header-modern-mobile-nav {
	position: relative;
	width: 100%;
	padding: 2rem 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	flex: 1;
	padding-bottom: 3rem;
}

.header-modern-mobile-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.125rem 1.5rem;
	color: #cbd5e1;
	text-decoration: none;
	font-weight: 500;
	font-size: 1.0625rem;
	border-radius: 14px;
	background: rgba(30, 64, 175, 0.3);
	border: 1px solid rgba(59, 130, 246, 0.2);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(10px);
	width: 100%;
	flex-shrink: 0;
}

.header-modern-mobile-item:hover {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.4) 0%, rgba(37, 99, 235, 0.4) 100%);
	border-color: rgba(96, 165, 250, 0.5);
	color: #ffffff;
	transform: translateX(8px) scale(1.02);
	box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.header-modern-mobile-item svg {
	flex-shrink: 0;
	color: #93c5fd;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-modern-mobile-item:hover svg {
	transform: scale(1.15) rotate(5deg);
	color: #ffffff;
	filter: drop-shadow(0 0 5px rgba(96, 165, 250, 0.8));
}

.header-modern-mobile-item-cta {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(37, 99, 235, 0.3) 100%);
	border-color: rgba(96, 165, 250, 0.4);
	margin-top: 0.5rem;
	box-shadow: 0 2px 10px rgba(59, 130, 246, 0.2);
}

.header-modern-mobile-item-cta:hover {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.5) 0%, rgba(37, 99, 235, 0.5) 100%);
	border-color: rgba(96, 165, 250, 0.6);
	box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4), 0 0 20px rgba(96, 165, 250, 0.3);
}

@media (max-width: 1023px) {
	.header-modern {
		padding: 0.875rem 1.25rem;
	}

	.header-modern-logo-text {
		font-size: 1.25rem;
	}

	.header-modern-logo-wrapper {
		width: 40px;
		height: 40px;
	}
}

@media (max-width: 640px) {
	.header-modern {
		padding: 0.75rem 1rem;
	}

	.header-modern-logo-text {
		font-size: 1.125rem;
	}

	.header-modern-mobile-header {
		padding: 1rem 1.25rem;
	}

	.header-modern-mobile-logo-text {
		font-size: 1.125rem;
	}

	.header-modern-mobile-nav {
		padding: 1.5rem 1.25rem;
		padding-bottom: 2.5rem;
	}

	.header-modern-mobile-item {
		padding: 1rem 1.25rem;
		font-size: 1rem;
	}

	.pricing-modern-comparison-table {
		font-size: 0.85rem;
	}

	.pricing-modern-comparison-table th,
	.pricing-modern-comparison-table td {
		padding: 0.75rem 0.5rem;
	}

	.pricing-modern-example {
		padding: 1.5rem;
	}

	.pricing-modern-example-title {
		font-size: 1.25rem;
	}

	.hero-modern-guarantee {
		font-size: 0.85rem;
		flex-wrap: wrap;
	}
}