/* 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: #000000;
	color: #ffffff;
	overflow-x: hidden;
}

/* Main Content Wrapper */
.main-content-wrapper {
	margin-left: 280px;
	transition: margin-left 0.3s ease;
	min-height: 100vh;
}

body.sidebar-collapsed .main-content-wrapper {
	margin-left: 80px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
	display: none;
	position: fixed;
	top: 1rem;
	left: 1rem;
	z-index: 1001;
	width: 48px;
	height: 48px;
	background: rgba(26, 26, 26, 0.9);
	border: 2px solid rgba(115, 115, 115, 0.3);
	border-radius: 12px;
	color: #ffffff;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(20px);
	transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
	background: rgba(115, 115, 115, 0.2);
	border-color: rgba(115, 115, 115, 0.5);
}

@media (max-width: 1024px) {
	.mobile-menu-btn {
		display: flex;
	}
	
	.main-content-wrapper {
		margin-left: 0;
	}
}

/* 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;
	}
}

/* Новые анимации */
@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes rotate3d {
	0% {
		transform: rotateY(0deg) rotateX(0deg);
	}
	50% {
		transform: rotateY(5deg) rotateX(2deg);
	}
	100% {
		transform: rotateY(0deg) rotateX(0deg);
	}
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

@keyframes glow {
	0%, 100% {
		box-shadow: 0 0 20px rgba(115, 115, 115, 0.3);
	}
	50% {
		box-shadow: 0 0 40px rgba(115, 115, 115, 0.6);
	}
}

@keyframes tilt {
	0%, 100% {
		transform: rotate(0deg);
	}
	25% {
		transform: rotate(2deg);
	}
	75% {
		transform: rotate(-2deg);
	}
}

/* ============================================
   HEADER
   ============================================ */

.header {
	background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
	color: #ffffff;
	padding-top: 1rem;
	padding-bottom: 1rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	border-bottom: 2px solid rgba(115, 115, 115, 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(115, 115, 115, 0.4);
	box-shadow: 0 6px 30px rgba(115, 115, 115, 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, #a3a3a3 0%, #737373 50%, #525252 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, #d4d4d4 0%, #a3a3a3 50%, #737373 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: #e5e5e5;
	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, #a3a3a3, #737373);
	transition: width 0.3s ease;
}

.nav-link:hover {
	color: #a3a3a3;
	transform: translateY(-2px);
}

.nav-link:hover::after {
	width: 100%;
}

.menu-toggle {
	display: block;
	color: #e5e5e5;
	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: #a3a3a3;
	background-color: rgba(115, 115, 115, 0.1);
	transform: scale(1.1);
}

.menu-toggle:focus {
	outline: 2px solid rgba(115, 115, 115, 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: #e5e5e5;
	text-decoration: none;
	transition: all 0.3s ease;
	margin-bottom: 0.5rem;
}

.mobile-menu-item:hover {
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.2), rgba(82, 82, 82, 0.1));
	color: #a3a3a3;
	transform: translateX(10px);
	padding-left: 1.5rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
	position: relative;
	background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0d0d0d 100%);
	color: #ffffff;
	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(115, 115, 115, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(115, 115, 115, 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, #000000 0%, #e5e5e5 50%, #a3a3a3 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: fadeInUp 1s ease-out;
}

.hero-description {
	color: #d4d4d4;
	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, #737373 0%, #525252 100%);
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(115, 115, 115, 0.4);
}

.button-primary:hover {
	background: linear-gradient(135deg, #a3a3a3 0%, #737373 100%);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(115, 115, 115, 0.6);
}

.button-primary:active {
	transform: translateY(-1px);
}

.button-secondary {
	border: 2px solid #737373;
	color: #737373;
	background: transparent;
	position: relative;
}

.button-secondary::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: linear-gradient(135deg, #737373, #525252);
	transition: width 0.3s ease;
	z-index: -1;
}

.button-secondary:hover {
	color: #ffffff;
	border-color: #a3a3a3;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(115, 115, 115, 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(115, 115, 115, 0.3);
	transition: all 0.5s ease;
}

.hero-image:hover {
	transform: scale(1.02);
	border-color: rgba(115, 115, 115, 0.6);
	box-shadow: 0 35px 60px -12px rgba(115, 115, 115, 0.4);
}

.hero-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(13, 13, 13, 0.8), rgba(13, 13, 13, 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(115, 115, 115, 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(115, 115, 115, 0.5), transparent);
}

.section-light {
	background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
}

.section-white {
	background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
}

.section-dark {
	background: linear-gradient(135deg, #0d0d0d 0%, #000000 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(115, 115, 115, 0.3);
	padding: 0.5rem 1rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: #a3a3a3;
	background: rgba(115, 115, 115, 0.1);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	animation: fadeInUp 0.8s ease-out;
}

.section-badge:hover {
	border-color: rgba(115, 115, 115, 0.6);
	background: rgba(115, 115, 115, 0.2);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(115, 115, 115, 0.3);
}

.section-title {
	margin-top: 1.5rem;
	font-size: 2.5rem;
	font-weight: 800;
	letter-spacing: -0.025em;
	background: linear-gradient(135deg, #000000 0%, #e5e5e5 50%, #a3a3a3 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: #d4d4d4;
	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(115, 115, 115, 0.2);
	background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(13, 13, 13, 0.9) 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, #737373, #525252, #a3a3a3);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.card:hover {
	border-color: rgba(115, 115, 115, 0.6);
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 40px rgba(115, 115, 115, 0.3);
	background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 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(115, 115, 115, 0.2) 0%, rgba(82, 82, 82, 0.1) 100%);
	color: #a3a3a3;
	padding: 1rem;
	display: inline-flex;
	width: 4rem;
	height: 4rem;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease;
	border: 2px solid rgba(115, 115, 115, 0.3);
}

.card:hover .card-icon {
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.4) 0%, rgba(82, 82, 82, 0.3) 100%);
	transform: rotate(5deg) scale(1.1);
	border-color: rgba(115, 115, 115, 0.6);
	box-shadow: 0 8px 20px rgba(115, 115, 115, 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: #ffffff;
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
	transition: color 0.3s ease;
}

.card:hover .card-title {
	color: #a3a3a3;
}

.card-description {
	font-size: 0.9375rem;
	color: #d4d4d4;
	line-height: 1.6;
	transition: color 0.3s ease;
}

.card:hover .card-description {
	color: #e5e5e5;
}

/* ============================================
   FEATURE CARD
   ============================================ */

.feature-card {
	display: flex;
	flex-direction: column;
	border-radius: 1.5rem;
	border: 2px solid rgba(115, 115, 115, 0.2);
	background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(13, 13, 13, 0.9) 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(115, 115, 115, 0.1) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.feature-card:hover {
	border-color: rgba(115, 115, 115, 0.6);
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 40px rgba(115, 115, 115, 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(115, 115, 115, 0.3) 0%, rgba(82, 82, 82, 0.2) 100%);
	color: #a3a3a3;
	border: 3px solid rgba(115, 115, 115, 0.4);
	transition: all 0.4s ease;
	position: relative;
}

.feature-icon::before {
	content: '';
	position: absolute;
	inset: -3px;
	border-radius: 50%;
	background: linear-gradient(135deg, #737373, #525252, #a3a3a3);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
}

.feature-card:hover .feature-icon {
	transform: rotate(360deg) scale(1.1);
	border-color: rgba(115, 115, 115, 0.8);
	box-shadow: 0 10px 30px rgba(115, 115, 115, 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: #ffffff;
	margin-bottom: 0.75rem;
	text-align: center;
	transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
	color: #a3a3a3;
}

.feature-description {
	font-size: 0.9375rem;
	color: #d4d4d4;
	text-align: center;
	line-height: 1.6;
	transition: color 0.3s ease;
}

.feature-card:hover .feature-description {
	color: #e5e5e5;
}

/* ============================================
   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(115, 115, 115, 0.05);
	transform: translateY(-5px);
}

.process-number {
	margin: 0 auto;
	border-radius: 50%;
	background: linear-gradient(135deg, #737373 0%, #525252 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(115, 115, 115, 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, #737373, #525252, #a3a3a3);
	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(115, 115, 115, 0.6);
}

.process-step:hover .process-number::before {
	opacity: 0.5;
}

.process-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.75rem;
	transition: color 0.3s ease;
}

.process-step:hover .process-title {
	color: #a3a3a3;
}

.process-description {
	font-size: 0.9375rem;
	color: #d4d4d4;
	line-height: 1.6;
	transition: color 0.3s ease;
}

.process-step:hover .process-description {
	color: #e5e5e5;
}

/* ============================================
   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, #0d0d0d 0%, #1a1a1a 50%, #000000 100%);
}

.testimonials-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 30% 20%, rgba(115, 115, 115, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 70% 80%, rgba(115, 115, 115, 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(115, 115, 115, 0.4);
	padding: 0.625rem 1.25rem;
	font-size: 0.875rem;
	font-weight: 700;
	color: #a3a3a3;
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.15) 0%, rgba(82, 82, 82, 0.1) 100%);
	backdrop-filter: blur(10px);
	transition: all 0.4s ease;
	box-shadow: 0 4px 15px rgba(115, 115, 115, 0.2);
}

.testimonials-badge:hover {
	border-color: rgba(115, 115, 115, 0.7);
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.25) 0%, rgba(82, 82, 82, 0.2) 100%);
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(115, 115, 115, 0.4);
}

.testimonials-title {
	margin-top: 2rem;
	font-size: 3rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, #000000 0%, #e5e5e5 40%, #a3a3a3 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: #d4d4d4;
	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(115, 115, 115, 0.25);
	background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(13, 13, 13, 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, #737373, #525252, #a3a3a3, #737373);
	background-size: 200% 100%;
	transform: scaleX(0);
	transition: transform 0.5s ease;
	animation: shimmer 3s linear infinite;
}

.testimonial-item:hover {
	border-color: rgba(115, 115, 115, 0.7);
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 25px 50px rgba(115, 115, 115, 0.4);
	background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 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(115, 115, 115, 0.2);
	transition: all 0.4s ease;
	z-index: 0;
}

.testimonial-item:hover .testimonial-quote-icon {
	color: rgba(115, 115, 115, 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: #ffffff;
	line-height: 1.8;
	margin: 0;
	font-style: italic;
	transition: color 0.3s ease;
}

.testimonial-item:hover .testimonial-quote {
	color: #ffffff;
}

.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(115, 115, 115, 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(115, 115, 115, 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(115, 115, 115, 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(115, 115, 115, 0.9);
	transform: scale(1.1);
	box-shadow: 0 10px 30px rgba(115, 115, 115, 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: #ffffff;
	margin: 0 0 0.5rem 0;
	transition: color 0.3s ease;
}

.testimonial-item:hover .testimonial-author-name {
	color: #a3a3a3;
}

.testimonial-author-position {
	font-size: 0.9375rem;
	color: #d4d4d4;
	margin: 0 0 0.75rem 0;
	transition: color 0.3s ease;
}

.testimonial-item:hover .testimonial-author-position {
	color: #e5e5e5;
}

.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(115, 115, 115, 0.2) 0%, rgba(82, 82, 82, 0.15) 100%);
	color: #a3a3a3;
	border: 1px solid rgba(115, 115, 115, 0.3);
	transition: all 0.3s ease;
}

.testimonial-item:hover .testimonial-company-badge {
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.3) 0%, rgba(82, 82, 82, 0.25) 100%);
	border-color: rgba(115, 115, 115, 0.5);
	transform: scale(1.05);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
	background: linear-gradient(135deg, #0d0d0d 0%, #000000 100%);
	color: #e5e5e5;
	padding-top: 4rem;
	padding-bottom: 3rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	border-top: 2px solid rgba(115, 115, 115, 0.2);
	position: relative;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(115, 115, 115, 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: #ffffff;
	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, #737373, #525252);
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-link {
	color: #d4d4d4;
	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: #a3a3a3;
}

.footer-link:hover {
	color: #a3a3a3;
	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(115, 115, 115, 0.2);
	text-align: center;
	font-size: 0.875rem;
	color: #d4d4d4;
}

/* ============================================
   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, #737373 0%, #525252 100%);
	color: #ffffff;
	padding: 1rem;
	box-shadow: 0 8px 25px rgba(115, 115, 115, 0.5);
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	width: 3.5rem;
	height: 3.5rem;
}

.scroll-top:hover {
	background: linear-gradient(135deg, #a3a3a3 0%, #737373 100%);
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 12px 35px rgba(115, 115, 115, 0.7);
}

.scroll-top:active {
	transform: translateY(-3px) scale(1.05);
}

.scroll-top:focus {
	outline: 2px solid rgba(115, 115, 115, 0.5);
	outline-offset: 2px;
}

/* ============================================
   BADGE
   ============================================ */

.badge {
	border-radius: 9999px;
	background: linear-gradient(135deg, #737373 0%, #525252 100%);
	padding: 0.375rem 0.875rem;
	font-size: 0.75rem;
	font-weight: 700;
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(115, 115, 115, 0.4);
	transition: all 0.3s ease;
}

.badge:hover {
	transform: scale(1.05);
	box-shadow: 0 6px 20px rgba(115, 115, 115, 0.6);
}

/* ============================================
   TEXT UTILITIES
   ============================================ */

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-white {
	color: #ffffff;
}

.text-gray-light {
	color: #e5e5e5;
}

.text-gray-medium {
	color: #d4d4d4;
}

.text-gray-dark {
	color: #d4d4d4;
}

.text-primary {
	color: #a3a3a3;
}

.text-purple {
	color: #737373;
}

.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: #000000;
		color: #ffffff;
	}
	
	.section-light {
		background: linear-gradient(180deg, #000000 0%, #0d0d0d 100%);
	}
	
	.section-white {
		background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
	}
	
	.card-title,
	.feature-title,
	.process-title,
	.testimonial-name {
		color: #1a1a1a;
	}
	
	.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(115, 115, 115, 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(115, 115, 115, 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(115, 115, 115, 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(115, 115, 115, 0.2) 0%, rgba(82, 82, 82, 0.15) 100%);
	border: 2px solid rgba(115, 115, 115, 0.3);
	color: #a3a3a3;
	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(115, 115, 115, 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, #000000 0%, #e5e5e5 50%, #a3a3a3 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, #a3a3a3 0%, #737373 50%, #525252 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: #d4d4d4;
	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, #a3a3a3 0%, #737373 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: #d4d4d4;
	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, #737373 0%, #525252 100%);
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(115, 115, 115, 0.4);
}

.hero-new-button-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(115, 115, 115, 0.5);
}

.hero-new-button-secondary {
	background: rgba(115, 115, 115, 0.1);
	color: #a3a3a3;
	border: 2px solid rgba(115, 115, 115, 0.3);
}

.hero-new-button-secondary:hover {
	background: rgba(115, 115, 115, 0.2);
	border-color: rgba(115, 115, 115, 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(26, 26, 26, 0.9) 0%, rgba(13, 13, 13, 0.9) 100%);
	border: 2px solid rgba(115, 115, 115, 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, #737373, #525252, #a3a3a3);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.hero-new-card:hover {
	transform: translateY(-10px) scale(1.05);
	border-color: rgba(115, 115, 115, 0.6);
	box-shadow: 0 20px 40px rgba(115, 115, 115, 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(115, 115, 115, 0.2) 0%, rgba(82, 82, 82, 0.15) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #a3a3a3;
	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(115, 115, 115, 0.3) 0%, rgba(82, 82, 82, 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: #d4d4d4;
	font-weight: 500;
	margin: 0;
}

.hero-new-card-value {
	font-size: 1.75rem;
	font-weight: 800;
	background: linear-gradient(135deg, #a3a3a3 0%, #737373 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(115, 115, 115, 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, #0d0d0d 0%, #1a1a1a 50%, #000000 100%);
}

.solutions-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 30%, rgba(115, 115, 115, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(115, 115, 115, 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(115, 115, 115, 0.15) 0%, rgba(82, 82, 82, 0.1) 100%);
	border: 2px solid rgba(115, 115, 115, 0.4);
	color: #a3a3a3;
	font-size: 0.875rem;
	font-weight: 700;
	backdrop-filter: blur(10px);
	transition: all 0.4s ease;
	box-shadow: 0 4px 15px rgba(115, 115, 115, 0.2);
}

.solutions-badge:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(115, 115, 115, 0.4);
}

.solutions-title {
	margin-top: 2rem;
	font-size: 3rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, #000000 0%, #e5e5e5 40%, #a3a3a3 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: #d4d4d4;
	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(26, 26, 26, 0.9) 0%, rgba(13, 13, 13, 0.9) 100%);
	border: 2px solid rgba(115, 115, 115, 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, #737373, #525252, #a3a3a3, #737373);
	background-size: 200% 100%;
	transform: scaleX(0);
	transition: transform 0.5s ease;
}

.solution-card:hover {
	border-color: rgba(115, 115, 115, 0.7);
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 25px 50px rgba(115, 115, 115, 0.4);
	background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 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(115, 115, 115, 0.2) 0%, rgba(82, 82, 82, 0.15) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #a3a3a3;
	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(115, 115, 115, 0.3) 0%, rgba(82, 82, 82, 0.25) 100%);
	box-shadow: 0 10px 30px rgba(115, 115, 115, 0.3);
}

.solution-card-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 1rem 0;
	transition: color 0.3s ease;
}

.solution-card:hover .solution-card-title {
	color: #a3a3a3;
}

.solution-card-description {
	font-size: 1rem;
	line-height: 1.75;
	color: #d4d4d4;
	margin: 0 0 1.5rem 0;
	transition: color 0.3s ease;
}

.solution-card:hover .solution-card-description {
	color: #e5e5e5;
}

.solution-card-footer {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(115, 115, 115, 0.2);
	transition: all 0.3s ease;
}

.solution-card:hover .solution-card-footer {
	border-color: rgba(115, 115, 115, 0.4);
}

.solution-card-link {
	color: #a3a3a3;
	font-weight: 600;
	font-size: 0.9375rem;
	transition: all 0.3s ease;
}

.solution-card:hover .solution-card-link {
	color: #d4d4d4;
	transform: translateX(5px);
}

.solution-card-footer svg {
	color: #a3a3a3;
	transition: all 0.3s ease;
}

.solution-card:hover .solution-card-footer svg {
	color: #d4d4d4;
	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, #737373 0%, #525252 100%);
	color: #ffffff;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(115, 115, 115, 0.4);
}

.solutions-cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(115, 115, 115, 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, #000000 0%, #1a1a1a 50%, #0d0d0d 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(115, 115, 115, 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(115, 115, 115, 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(115, 115, 115, 0.15) 0%, rgba(82, 82, 82, 0.1) 100%);
	border: 2px solid rgba(115, 115, 115, 0.4);
	color: #a3a3a3;
	font-size: 0.875rem;
	font-weight: 700;
	backdrop-filter: blur(10px);
	transition: all 0.4s ease;
	box-shadow: 0 4px 15px rgba(115, 115, 115, 0.2);
}

.pricing-badge:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(115, 115, 115, 0.4);
}

.pricing-title {
	margin-top: 2rem;
	font-size: 3rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, #000000 0%, #e5e5e5 40%, #a3a3a3 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: #d4d4d4;
	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(26, 26, 26, 0.9) 0%, rgba(13, 13, 13, 0.9) 100%);
	border: 2px solid rgba(115, 115, 115, 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: #ffffff;
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.2) 0%, rgba(82, 82, 82, 0.15) 100%);
	border-bottom: 2px solid rgba(115, 115, 115, 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: #e5e5e5;
	border-bottom: 1px solid rgba(115, 115, 115, 0.15);
	background: rgba(13, 13, 13, 0.5);
}

.pricing-table-cell {
	padding: 1.25rem 1.5rem;
	font-size: 1rem;
	color: #d4d4d4;
	border-bottom: 1px solid rgba(115, 115, 115, 0.15);
	text-align: center;
	transition: all 0.3s ease;
}

.pricing-table tbody tr:hover .pricing-table-cell {
	background: rgba(115, 115, 115, 0.1);
	color: #e5e5e5;
}

.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: #d4d4d4;
	text-align: center;
	max-width: 60rem;
	margin: 0 auto;
	padding: 1.5rem;
	background: rgba(115, 115, 115, 0.05);
	border: 1px solid rgba(115, 115, 115, 0.2);
	border-radius: 0.75rem;
}

.pricing-note-text strong {
	color: #a3a3a3;
}

.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, #737373 0%, #525252 100%);
	color: #ffffff;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(115, 115, 115, 0.4);
}

.pricing-cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(115, 115, 115, 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, #0d0d0d 0%, #000000 100%);
	border-top: 2px solid rgba(115, 115, 115, 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(115, 115, 115, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(115, 115, 115, 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, #a3a3a3 0%, #737373 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: #d4d4d4;
	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(115, 115, 115, 0.1);
	border: 2px solid rgba(115, 115, 115, 0.2);
	color: #a3a3a3;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	text-decoration: none;
}

.footer-new-social-link:hover {
	background: rgba(115, 115, 115, 0.2);
	border-color: rgba(115, 115, 115, 0.4);
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(115, 115, 115, 0.3);
}

.footer-new-column {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.footer-new-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
}

.footer-new-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-new-link {
	color: #d4d4d4;
	text-decoration: none;
	font-size: 0.9375rem;
	transition: all 0.3s ease;
	display: inline-block;
}

.footer-new-link:hover {
	color: #a3a3a3;
	transform: translateX(5px);
}

.footer-new-legal {
	font-size: 0.875rem;
	line-height: 1.75;
	color: #d4d4d4;
	margin: 0 0 1rem 0;
}

.footer-new-legal-info {
	font-size: 0.875rem;
	color: #d4d4d4;
	margin: 0;
}

.footer-new-bottom {
	padding-top: 3rem;
	border-top: 1px solid rgba(115, 115, 115, 0.2);
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	align-items: center;
	text-align: center;
}

.footer-new-copyright {
	font-size: 0.875rem;
	color: #d4d4d4;
	margin: 0;
}

.footer-new-legal-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	justify-content: center;
}

.footer-new-legal-link {
	color: #d4d4d4;
	text-decoration: none;
	font-size: 0.875rem;
	transition: all 0.3s ease;
}

.footer-new-legal-link:hover {
	color: #a3a3a3;
}

@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(26, 26, 26, 0.98) 0%, rgba(13, 13, 13, 0.98) 100%);
	border: 2px solid rgba(115, 115, 115, 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(115, 115, 115, 0.2) 0%, rgba(82, 82, 82, 0.15) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #a3a3a3;
	flex-shrink: 0;
}

.cookie-banner-text {
	flex: 1;
}

.cookie-banner-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 0.75rem 0;
}

.cookie-banner-description {
	font-size: 0.9375rem;
	line-height: 1.75;
	color: #d4d4d4;
	margin: 0;
}

.cookie-banner-prefs {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 1.5rem;
	border-radius: 1rem;
	border: 1px solid rgba(115, 115, 115, 0.2);
	background: rgba(115, 115, 115, 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: #ffffff;
	margin: 0 0 0.25rem 0;
}

.cookie-banner-pref-desc {
	font-size: 0.875rem;
	color: #d4d4d4;
	margin: 0;
	line-height: 1.5;
}

.cookie-banner-pref-badge {
	padding: 0.375rem 0.875rem;
	border-radius: 9999px;
	background: linear-gradient(135deg, #737373 0%, #525252 100%);
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 600;
}

.cookie-banner-pref-divider {
	height: 1px;
	background: rgba(115, 115, 115, 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(115, 115, 115, 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: #000000;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.cookie-banner-toggle-input:checked + .cookie-banner-toggle-slider {
	background: linear-gradient(135deg, #737373 0%, #525252 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, #737373 0%, #525252 100%);
	color: #ffffff;
}

.cookie-banner-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(115, 115, 115, 0.4);
}

.cookie-banner-btn-secondary {
	background: rgba(115, 115, 115, 0.1);
	color: #a3a3a3;
	border: 2px solid rgba(115, 115, 115, 0.3);
}

.cookie-banner-btn-secondary:hover {
	background: rgba(115, 115, 115, 0.2);
	border-color: rgba(115, 115, 115, 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, #737373 0%, #525252 100%);
	color: #ffffff;
}

.cookie-banner-action-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(115, 115, 115, 0.4);
}

.cookie-banner-action-btn-secondary {
	background: rgba(115, 115, 115, 0.1);
	color: #a3a3a3;
	border: 2px solid rgba(115, 115, 115, 0.3);
}

.cookie-banner-action-btn-secondary:hover {
	background: rgba(115, 115, 115, 0.2);
	border-color: rgba(115, 115, 115, 0.5);
}

.cookie-banner-action-btn-tertiary {
	background: transparent;
	color: #d4d4d4;
}

.cookie-banner-action-btn-tertiary:hover {
	color: #a3a3a3;
	background: rgba(115, 115, 115, 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, #000000 0%, #1a1a1a 50%, #0d0d0d 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(115, 115, 115, 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(115, 115, 115, 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(115, 115, 115, 0.15) 0%, rgba(82, 82, 82, 0.1) 100%);
	border: 2px solid rgba(115, 115, 115, 0.4);
	color: #a3a3a3;
	font-size: 0.875rem;
	font-weight: 700;
	backdrop-filter: blur(10px);
	transition: all 0.4s ease;
	box-shadow: 0 4px 15px rgba(115, 115, 115, 0.2);
}

.technologies-badge:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(115, 115, 115, 0.4);
}

.technologies-title {
	margin-top: 2rem;
	font-size: 3rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, #000000 0%, #e5e5e5 40%, #a3a3a3 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: #d4d4d4;
	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(26, 26, 26, 0.9) 0%, rgba(13, 13, 13, 0.9) 100%);
	border: 2px solid rgba(115, 115, 115, 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, #737373, #525252, #a3a3a3, #737373);
	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(115, 115, 115, 0.3), rgba(115, 115, 115, 0.3));
	border-radius: 2rem;
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: -1;
	filter: blur(20px);
}

.technology-card:hover {
	border-color: rgba(115, 115, 115, 0.7);
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 25px 50px rgba(115, 115, 115, 0.4);
	background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 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(26, 26, 26, 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(115, 115, 115, 0.2) 0%, rgba(82, 82, 82, 0.15) 100%);
	border: 3px solid rgba(115, 115, 115, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #a3a3a3;
	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(115, 115, 115, 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(115, 115, 115, 0.3) 0%, rgba(82, 82, 82, 0.25) 100%);
	border-color: rgba(115, 115, 115, 0.6);
	box-shadow: 0 10px 30px rgba(115, 115, 115, 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: #a3a3a3;
}

.technology-card-subtitle {
	font-size: 0.875rem;
	font-weight: 500;
	color: #d4d4d4;
	margin: 0 0 1rem 0;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: color 0.3s ease;
}

.technology-card:hover .technology-card-subtitle {
	color: #d4d4d4;
}

.technology-card-description {
	font-size: 1rem;
	line-height: 1.75;
	color: #d4d4d4;
	margin: 0 0 1.5rem 0;
	transition: color 0.3s ease;
}

.technology-card:hover .technology-card-description {
	color: #e5e5e5;
}

.technology-card-features {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(115, 115, 115, 0.2);
}

.technology-card:hover .technology-card-features {
	border-color: rgba(115, 115, 115, 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(115, 115, 115, 0.1);
	color: #a3a3a3;
	border: 1px solid rgba(115, 115, 115, 0.2);
	transition: all 0.3s ease;
}

.technology-card:hover .technology-card-feature {
	background: rgba(115, 115, 115, 0.2);
	border-color: rgba(115, 115, 115, 0.4);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(115, 115, 115, 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, #1a1a1a 0%, #000000 50%, #0d0d0d 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(115, 115, 115, 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(115, 115, 115, 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(115, 115, 115, 0.15) 0%, rgba(82, 82, 82, 0.1) 100%);
	border: 2px solid rgba(115, 115, 115, 0.4);
	color: #a3a3a3;
	font-size: 0.875rem;
	font-weight: 700;
	backdrop-filter: blur(10px);
	transition: all 0.4s ease;
	box-shadow: 0 4px 15px rgba(115, 115, 115, 0.2);
}

.benefits-badge:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(115, 115, 115, 0.4);
}

.benefits-title {
	margin-top: 2rem;
	font-size: 3rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, #000000 0%, #e5e5e5 40%, #a3a3a3 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: #d4d4d4;
	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(26, 26, 26, 0.9) 0%, rgba(13, 13, 13, 0.9) 100%);
	border: 2px solid rgba(115, 115, 115, 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, #737373, #525252, #a3a3a3, #737373);
	background-size: 200% 100%;
	transform: scaleX(0);
	transition: transform 0.5s ease;
	z-index: 2;
}

.benefit-card:hover {
	border-color: rgba(115, 115, 115, 0.7);
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 25px 50px rgba(115, 115, 115, 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(26, 26, 26, 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(115, 115, 115, 0.2) 0%, rgba(82, 82, 82, 0.15) 100%);
	border: 3px solid rgba(115, 115, 115, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #a3a3a3;
	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(115, 115, 115, 0.3) 0%, rgba(82, 82, 82, 0.25) 100%);
	border-color: rgba(115, 115, 115, 0.6);
	box-shadow: 0 10px 30px rgba(115, 115, 115, 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: #a3a3a3;
}

.benefit-card-description {
	font-size: 1rem;
	line-height: 1.75;
	color: #d4d4d4;
	margin: 0 0 1.5rem 0;
	transition: color 0.3s ease;
}

.benefit-card:hover .benefit-card-description {
	color: #e5e5e5;
}

.benefit-card-metric {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(115, 115, 115, 0.2);
}

.benefit-card:hover .benefit-card-metric {
	border-color: rgba(115, 115, 115, 0.4);
}

.benefit-card-metric-value {
	font-size: 1.75rem;
	font-weight: 800;
	background: linear-gradient(135deg, #a3a3a3 0%, #737373 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: #d4d4d4;
	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, #0d0d0d 0%, #1a1a1a 50%, #000000 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(115, 115, 115, 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(115, 115, 115, 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(115, 115, 115, 0.15) 0%, rgba(82, 82, 82, 0.1) 100%);
	border: 2px solid rgba(115, 115, 115, 0.4);
	color: #a3a3a3;
	font-size: 0.875rem;
	font-weight: 700;
	backdrop-filter: blur(10px);
	transition: all 0.4s ease;
	box-shadow: 0 4px 15px rgba(115, 115, 115, 0.2);
}

.process-badge:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(115, 115, 115, 0.4);
}

.process-title {
	margin-top: 2rem;
	font-size: 3rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, #000000 0%, #e5e5e5 40%, #a3a3a3 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: #d4d4d4;
	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(115, 115, 115, 0.3) 0%, rgba(115, 115, 115, 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(26, 26, 26, 0.9) 0%, rgba(13, 13, 13, 0.9) 100%);
	border: 3px solid rgba(115, 115, 115, 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(115, 115, 115, 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(115, 115, 115, 0.7);
	box-shadow: 0 15px 40px rgba(115, 115, 115, 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, #737373 0%, #525252 100%);
	color: #ffffff;
	font-size: 1.5rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px rgba(115, 115, 115, 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(115, 115, 115, 0.6);
}

.process-item-content {
	flex: 1;
	padding-top: 0.5rem;
}

.process-item-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 1rem 0;
	transition: color 0.3s ease;
}

.process-item:hover .process-item-title {
	color: #a3a3a3;
}

.process-item-description {
	font-size: 1.0625rem;
	line-height: 1.75;
	color: #d4d4d4;
	margin: 0 0 1.5rem 0;
	transition: color 0.3s ease;
}

.process-item:hover .process-item-description {
	color: #e5e5e5;
}

.process-item-duration {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	background: rgba(115, 115, 115, 0.1);
	border: 1px solid rgba(115, 115, 115, 0.2);
	color: #a3a3a3;
	font-size: 0.875rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.process-item:hover .process-item-duration {
	background: rgba(115, 115, 115, 0.2);
	border-color: rgba(115, 115, 115, 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, #737373 0%, #525252 100%);
	color: #ffffff;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(115, 115, 115, 0.4);
}

.process-cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(115, 115, 115, 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, #000000 0%, #1a1a1a 50%, #0d0d0d 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(115, 115, 115, 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(115, 115, 115, 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(115, 115, 115, 0.15) 0%, rgba(82, 82, 82, 0.1) 100%);
	border: 2px solid rgba(115, 115, 115, 0.4);
	color: #a3a3a3;
	font-size: 0.875rem;
	font-weight: 700;
	backdrop-filter: blur(10px);
	transition: all 0.4s ease;
	box-shadow: 0 4px 15px rgba(115, 115, 115, 0.2);
}

.about-hero-badge:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(115, 115, 115, 0.4);
}

.about-hero-title {
	margin-top: 2rem;
	font-size: 2.5rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, #000000 0%, #e5e5e5 40%, #a3a3a3 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: #d4d4d4;
	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(115, 115, 115, 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, #1a1a1a 0%, #000000 50%, #0d0d0d 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(115, 115, 115, 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(115, 115, 115, 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(26, 26, 26, 0.9) 0%, rgba(13, 13, 13, 0.9) 100%);
	border: 2px solid rgba(115, 115, 115, 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, #737373, #525252, #a3a3a3, #737373);
	background-size: 200% 100%;
	transform: scaleX(0);
	transition: transform 0.5s ease;
	z-index: 2;
}

.about-feature-card:hover {
	border-color: rgba(115, 115, 115, 0.7);
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 40px rgba(115, 115, 115, 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(26, 26, 26, 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(115, 115, 115, 0.2) 0%, rgba(82, 82, 82, 0.15) 100%);
	border: 3px solid rgba(115, 115, 115, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #a3a3a3;
	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(115, 115, 115, 0.3) 0%, rgba(82, 82, 82, 0.25) 100%);
	border-color: rgba(115, 115, 115, 0.6);
	box-shadow: 0 10px 30px rgba(115, 115, 115, 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: #a3a3a3;
}

.about-feature-description {
	font-size: 1rem;
	line-height: 1.75;
	color: #d4d4d4;
	margin: 0;
	transition: color 0.3s ease;
}

.about-feature-card:hover .about-feature-description {
	color: #e5e5e5;
}

@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, #0d0d0d 0%, #1a1a1a 50%, #000000 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(115, 115, 115, 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(115, 115, 115, 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(115, 115, 115, 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(26, 26, 26, 0.9) 0%, rgba(13, 13, 13, 0.9) 100%);
	border: 2px solid rgba(115, 115, 115, 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(115, 115, 115, 0.7);
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(115, 115, 115, 0.3);
}

.about-stat-value {
	font-size: 2rem;
	font-weight: 800;
	background: linear-gradient(135deg, #a3a3a3 0%, #737373 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: #d4d4d4;
	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(26, 26, 26, 0.9) 0%, rgba(13, 13, 13, 0.9) 100%);
	border: 2px solid rgba(115, 115, 115, 0.25);
	border-radius: 1.5rem;
	padding: 2rem;
	backdrop-filter: blur(20px);
	transition: all 0.4s ease;
}

.about-info-card:hover {
	border-color: rgba(115, 115, 115, 0.7);
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(115, 115, 115, 0.3);
}

.about-info-icon {
	width: 3rem;
	height: 3rem;
	border-radius: 1rem;
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.2) 0%, rgba(82, 82, 82, 0.15) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #a3a3a3;
	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(115, 115, 115, 0.3) 0%, rgba(82, 82, 82, 0.25) 100%);
	box-shadow: 0 8px 20px rgba(115, 115, 115, 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: #d4d4d4;
	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, #737373 0%, #525252 100%);
	color: #ffffff;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(115, 115, 115, 0.4);
}

.about-stats-cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(115, 115, 115, 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, #000000 0%, #1a1a1a 50%, #0d0d0d 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(115, 115, 115, 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(115, 115, 115, 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(115, 115, 115, 0.15) 0%, rgba(82, 82, 82, 0.1) 100%);
	border: 2px solid rgba(115, 115, 115, 0.4);
	color: #a3a3a3;
	font-size: 0.875rem;
	font-weight: 700;
	backdrop-filter: blur(10px);
	transition: all 0.4s ease;
	box-shadow: 0 4px 15px rgba(115, 115, 115, 0.2);
}

.contact-hero-badge:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(115, 115, 115, 0.4);
}

.contact-hero-title {
	margin-top: 2rem;
	font-size: 2.5rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, #000000 0%, #e5e5e5 40%, #a3a3a3 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: #d4d4d4;
	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(115, 115, 115, 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, #1a1a1a 0%, #000000 50%, #0d0d0d 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(115, 115, 115, 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(115, 115, 115, 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(26, 26, 26, 0.9) 0%, rgba(13, 13, 13, 0.9) 100%);
	border: 2px solid rgba(115, 115, 115, 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, #737373, #525252, #a3a3a3, #737373);
	background-size: 200% 100%;
	transform: scaleX(0);
	transition: transform 0.5s ease;
	z-index: 2;
}

.contact-info-card:hover {
	border-color: rgba(115, 115, 115, 0.7);
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 40px rgba(115, 115, 115, 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(26, 26, 26, 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(115, 115, 115, 0.2) 0%, rgba(82, 82, 82, 0.15) 100%);
	border: 3px solid rgba(115, 115, 115, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #a3a3a3;
	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(115, 115, 115, 0.3) 0%, rgba(82, 82, 82, 0.25) 100%);
	border-color: rgba(115, 115, 115, 0.6);
	box-shadow: 0 10px 30px rgba(115, 115, 115, 0.4);
}

.contact-info-card-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	margin: 1rem 0 0.75rem 0;
	transition: color 0.3s ease;
}

.contact-info-card:hover .contact-info-card-title {
	color: #a3a3a3;
}

.contact-info-card-text {
	font-size: 1rem;
	line-height: 1.75;
	color: #d4d4d4;
	margin: 0;
	transition: color 0.3s ease;
}

.contact-info-card:hover .contact-info-card-text {
	color: #e5e5e5;
}

.contact-info-card-link {
	color: #a3a3a3;
	text-decoration: none;
	transition: all 0.3s ease;
	font-weight: 600;
}

.contact-info-card-link:hover {
	color: #737373;
	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, #0d0d0d 0%, #1a1a1a 50%, #000000 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(115, 115, 115, 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(115, 115, 115, 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, #000000 0%, #e5e5e5 40%, #a3a3a3 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: #d4d4d4;
	max-width: 42rem;
	margin: 0 auto;
}

.contact-form {
	background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(13, 13, 13, 0.9) 100%);
	border: 2px solid rgba(115, 115, 115, 0.25);
	border-radius: 2rem;
	padding: 3rem;
	backdrop-filter: blur(20px);
	transition: all 0.4s ease;
}

.contact-form:hover {
	border-color: rgba(115, 115, 115, 0.4);
	box-shadow: 0 20px 40px rgba(115, 115, 115, 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: #e5e5e5;
	margin-bottom: 0.5rem;
}

.contact-form-input,
.contact-form-textarea {
	width: 100%;
	padding: 0.875rem 1.25rem;
	border-radius: 0.75rem;
	background: rgba(13, 13, 13, 0.6);
	border: 2px solid rgba(115, 115, 115, 0.2);
	color: #ffffff;
	font-size: 1rem;
	transition: all 0.3s ease;
	font-family: inherit;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
	color: #d4d4d4;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
	outline: none;
	border-color: rgba(115, 115, 115, 0.6);
	background: rgba(13, 13, 13, 0.8);
	box-shadow: 0 0 0 3px rgba(115, 115, 115, 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, #737373 0%, #525252 100%);
	color: #ffffff;
	font-weight: 600;
	font-size: 1rem;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(115, 115, 115, 0.4);
}

.contact-form-submit:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(115, 115, 115, 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(115, 115, 115, 0.1);
	border: 2px solid rgba(115, 115, 115, 0.3);
	color: #a3a3a3;
	font-weight: 500;
	animation: fadeInUp 0.5s ease-out;
}

.contact-form-message.hidden {
	display: none;
}

.contact-form-message svg {
	flex-shrink: 0;
	color: #737373;
}

@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;
	}
}

/* ============================================
   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, #000000 0%, #1a1a1a 50%, #0d0d0d 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(115, 115, 115, 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(115, 115, 115, 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(115, 115, 115, 0.15) 0%, rgba(82, 82, 82, 0.1) 100%);
	border: 2px solid rgba(115, 115, 115, 0.4);
	color: #a3a3a3;
	font-size: 0.875rem;
	font-weight: 700;
	backdrop-filter: blur(10px);
	transition: all 0.4s ease;
	box-shadow: 0 4px 15px rgba(115, 115, 115, 0.2);
}

.faq-hero-badge:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(115, 115, 115, 0.4);
}

.faq-hero-title {
	margin-top: 2rem;
	font-size: 2.5rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, #000000 0%, #e5e5e5 40%, #a3a3a3 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: #d4d4d4;
	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(115, 115, 115, 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, #1a1a1a 0%, #000000 50%, #0d0d0d 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(115, 115, 115, 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(115, 115, 115, 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(26, 26, 26, 0.9) 0%, rgba(13, 13, 13, 0.9) 100%);
	border: 2px solid rgba(115, 115, 115, 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(115, 115, 115, 0.5);
	box-shadow: 0 10px 30px rgba(115, 115, 115, 0.2);
}

.faq-item-active {
	border-color: rgba(115, 115, 115, 0.7);
	box-shadow: 0 15px 40px rgba(115, 115, 115, 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(115, 115, 115, 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: #a3a3a3;
}

.faq-icon {
	width: 1.5rem;
	height: 1.5rem;
	color: #a3a3a3;
	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: #d4d4d4;
	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(26, 26, 26, 0.9) 0%, rgba(13, 13, 13, 0.9) 100%);
	border: 2px solid rgba(115, 115, 115, 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: #d4d4d4;
	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, #737373 0%, #525252 100%);
	color: #ffffff;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(115, 115, 115, 0.4);
}

.faq-cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(115, 115, 115, 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, #000000 0%, #1a1a1a 50%, #0d0d0d 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(115, 115, 115, 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(115, 115, 115, 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(115, 115, 115, 0.15) 0%, rgba(82, 82, 82, 0.1) 100%);
	border: 2px solid rgba(115, 115, 115, 0.4);
	color: #a3a3a3;
	font-size: 0.875rem;
	font-weight: 700;
	backdrop-filter: blur(10px);
	transition: all 0.4s ease;
	box-shadow: 0 4px 15px rgba(115, 115, 115, 0.2);
}

.service-hero-badge:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(115, 115, 115, 0.4);
}

.service-hero-title {
	margin-top: 2rem;
	font-size: 2.5rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, #000000 0%, #e5e5e5 40%, #a3a3a3 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: #d4d4d4;
	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(115, 115, 115, 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, #1a1a1a 0%, #000000 50%, #0d0d0d 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(115, 115, 115, 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(115, 115, 115, 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(26, 26, 26, 0.9) 0%, rgba(13, 13, 13, 0.9) 100%);
	border: 2px solid rgba(115, 115, 115, 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, #737373, #525252, #a3a3a3, #737373);
	background-size: 200% 100%;
	transform: scaleX(0);
	transition: transform 0.5s ease;
	z-index: 2;
}

.service-page-card:hover {
	border-color: rgba(115, 115, 115, 0.7);
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 40px rgba(115, 115, 115, 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(26, 26, 26, 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(115, 115, 115, 0.2) 0%, rgba(82, 82, 82, 0.15) 100%);
	border: 3px solid rgba(115, 115, 115, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #a3a3a3;
	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(115, 115, 115, 0.3) 0%, rgba(82, 82, 82, 0.25) 100%);
	border-color: rgba(115, 115, 115, 0.6);
	box-shadow: 0 10px 30px rgba(115, 115, 115, 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: #a3a3a3;
}

.service-page-card-description {
	font-size: 1rem;
	line-height: 1.75;
	color: #d4d4d4;
	margin: 0 0 1.5rem 0;
	transition: color 0.3s ease;
}

.service-page-card:hover .service-page-card-description {
	color: #e5e5e5;
}

.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: #e5e5e5;
}

.service-page-card-feature svg {
	flex-shrink: 0;
	color: #737373;
	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(26, 26, 26, 0.9) 0%, rgba(13, 13, 13, 0.9) 100%);
	border: 2px solid rgba(115, 115, 115, 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: #d4d4d4;
	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, #737373 0%, #525252 100%);
	color: #ffffff;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(115, 115, 115, 0.4);
}

.services-page-cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(115, 115, 115, 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, #000000 0%, #1a1a1a 50%, #0d0d0d 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(115, 115, 115, 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(82, 82, 82, 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(115, 115, 115, 0.1) 0%, rgba(82, 82, 82, 0.1) 100%);
	border: 2px solid rgba(115, 115, 115, 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(115, 115, 115, 0.2);
}

.legal-hero-badge:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(115, 115, 115, 0.4);
}

.legal-hero-title {
	margin-top: 2rem;
	font-size: 2.5rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, #ffffff 0%, #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, #1a1a1a 0%, #000000 50%, #0d0d0d 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(115, 115, 115, 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(82, 82, 82, 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(115, 115, 115, 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(115, 115, 115, 0.4);
	box-shadow: 0 10px 30px rgba(115, 115, 115, 0.15);
	transform: translateY(-5px);
}

.legal-content-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 1rem 0;
	transition: color 0.3s ease;
}

.legal-content-item:hover .legal-content-title {
	color: #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: #ffffff;
}

.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: #ffffff;
}

.legal-content-link {
	color: #6b21a8;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.legal-content-link:hover {
	color: #ffffff;
	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(115, 115, 115, 0.1) 0%, rgba(82, 82, 82, 0.1) 100%);
	border: 2px solid rgba(115, 115, 115, 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(115, 115, 115, 0.2) 0%, rgba(82, 82, 82, 0.2) 100%);
	border-color: rgba(115, 115, 115, 0.5);
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(115, 115, 115, 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, #000000 0%, #1a1a1a 50%, #0d0d0d 100%);
}

.thanks-modern-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.thanks-modern-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(115, 115, 115, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(115, 115, 115, 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(115, 115, 115, 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(82, 82, 82, 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: #ffffff;
}

.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(115, 115, 115, 0.15) 0%, rgba(82, 82, 82, 0.15) 100%);
	border: 3px solid rgba(115, 115, 115, 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(115, 115, 115, 0.2);
	position: relative;
	z-index: 1;
}

.thanks-modern-icon-glow {
	position: absolute;
	inset: -20px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(115, 115, 115, 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, #ffffff 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(115, 115, 115, 0.4);
}

.thanks-modern-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(115, 115, 115, 0.6);
}

.thanks-modern-btn-secondary {
	background: transparent;
	color: #6b21a8;
	border: 2px solid rgba(115, 115, 115, 0.3);
}

.thanks-modern-btn-secondary:hover {
	background: rgba(115, 115, 115, 0.1);
	border-color: rgba(115, 115, 115, 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 секция */
.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 8rem 1.5rem;
	overflow: hidden;
	background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0d0d0d 100%);
}

.hero-background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	animation: rotate3d 25s ease-in-out infinite;
}

.hero-orb-1 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(115, 115, 115, 0.2) 0%, transparent 70%);
	top: -15%;
	left: -10%;
	animation-delay: 0s;
}

.hero-orb-2 {
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, rgba(82, 82, 82, 0.18) 0%, transparent 70%);
	bottom: -15%;
	right: -10%;
	animation-delay: 8s;
}

.hero-orb-3 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(115, 115, 115, 0.15) 0%, transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: 15s;
}

.hero-grid-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(115, 115, 115, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(115, 115, 115, 0.05) 1px, transparent 1px);
	background-size: 60px 60px;
	opacity: 0.4;
	animation: rotate 30s linear infinite;
}

.hero-wrapper {
	max-width: 85rem;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 5rem;
	position: relative;
	z-index: 1;
	align-items: center;
}

.hero-content-block {
	color: #ffffff;
}

.hero-label {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.875rem 1.75rem;
	border-radius: 60px;
	background: rgba(115, 115, 115, 0.12);
	border: 2px solid rgba(115, 115, 115, 0.25);
	color: #ffffff;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 2.5rem;
	backdrop-filter: blur(15px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
}

.hero-label:hover {
	background: rgba(115, 115, 115, 0.25);
	border-color: rgba(115, 115, 115, 0.5);
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 10px 30px rgba(115, 115, 115, 0.2);
}

.hero-label svg {
	color: #d4d4d4;
	transition: transform 0.4s ease;
}

.hero-label:hover svg {
	transform: rotate(15deg) scale(1.1);
}

.hero-heading {
	font-size: 4rem;
	font-weight: 900;
	line-height: 1.05;
	margin-bottom: 2rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.hero-heading-primary {
	background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: glow 4s ease-in-out infinite;
}

.hero-heading-highlight {
	background: linear-gradient(135deg, #d4d4d4 0%, #a3a3a3 50%, #737373 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: bounce 3s ease-in-out infinite;
}

.hero-heading-secondary {
	color: #d4d4d4;
	font-size: 0.85em;
	font-weight: 500;
}

.hero-text {
	font-size: 1.2rem;
	line-height: 1.9;
	color: #d4d4d4;
	margin-bottom: 2.5rem;
	max-width: 650px;
}

.hero-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	margin-bottom: 3rem;
}

.hero-tag {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 1.5rem;
	background: rgba(115, 115, 115, 0.12);
	border: 2px solid rgba(115, 115, 115, 0.2);
	border-radius: 40px;
	color: #ffffff;
	font-size: 0.9rem;
	font-weight: 600;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
}

.hero-tag:hover {
	background: rgba(115, 115, 115, 0.25);
	border-color: rgba(115, 115, 115, 0.5);
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 8px 25px rgba(115, 115, 115, 0.3);
}

.hero-tag svg {
	color: #d4d4d4;
	transition: transform 0.4s ease;
}

.hero-tag:hover svg {
	transform: rotate(360deg) scale(1.2);
}

.hero-buttons {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}

.hero-button {
	display: inline-flex;
	align-items: center;
	gap: 0.875rem;
	padding: 1.25rem 2.5rem;
	border-radius: 16px;
	font-weight: 700;
	font-size: 1.05rem;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
}

.hero-button::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.hero-button:hover::before {
	width: 300px;
	height: 300px;
}

.hero-button-main {
	background: linear-gradient(135deg, #737373 0%, #525252 100%);
	color: #ffffff;
	box-shadow: 0 6px 25px rgba(115, 115, 115, 0.4);
}

.hero-button-main:hover {
	transform: translateY(-4px) scale(1.03);
	box-shadow: 0 12px 40px rgba(115, 115, 115, 0.6);
}

.hero-button-main svg {
	transition: transform 0.4s ease;
}

.hero-button-main:hover svg {
	transform: translateX(5px);
}

.hero-button-alt {
	background: transparent;
	color: #ffffff;
	border-color: rgba(115, 115, 115, 0.4);
}

.hero-button-alt:hover {
	background: rgba(115, 115, 115, 0.15);
	border-color: rgba(115, 115, 115, 0.6);
	transform: translateY(-4px) scale(1.03);
	box-shadow: 0 8px 30px rgba(115, 115, 115, 0.3);
}

.hero-note {
	display: flex;
	align-items: center;
	gap: 1rem;
	color: #d4d4d4;
	font-size: 1rem;
	margin-top: 1.5rem;
}

.hero-note svg {
	color: #a3a3a3;
	flex-shrink: 0;
	animation: pulse 3s ease-in-out infinite;
}

.hero-image-block {
	position: relative;
	height: 550px;
}

.hero-image-container {
	position: relative;
	width: 100%;
	height: 100%;
	perspective: 1000px;
}

.hero-image {
	width: 100%;
	max-width: 650px;
	height: auto;
	border-radius: 24px;
	opacity: 0.85;
	filter: grayscale(15%);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	animation: tilt 8s ease-in-out infinite;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-image:hover {
	opacity: 1;
	filter: grayscale(0%);
	transform: scale(1.05) rotateY(5deg);
	box-shadow: 0 30px 80px rgba(115, 115, 115, 0.3);
}

.hero-decor {
	position: absolute;
	border-radius: 24px;
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.2) 0%, rgba(82, 82, 82, 0.2) 100%);
	backdrop-filter: blur(25px);
	border: 2px solid rgba(115, 115, 115, 0.3);
	animation: float 8s ease-in-out infinite;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-decor-1 {
	width: 220px;
	height: 220px;
	top: 8%;
	left: 8%;
	animation-delay: 0s;
	z-index: -1;
}

.hero-decor-2 {
	width: 180px;
	height: 180px;
	top: 45%;
	right: 15%;
	animation-delay: 2.5s;
	z-index: -1;
}

.hero-decor-3 {
	width: 200px;
	height: 200px;
	bottom: 8%;
	left: 25%;
	animation-delay: 5s;
	z-index: -1;
}

.hero-dots {
	position: absolute;
	inset: 0;
}

.hero-dot {
	position: absolute;
	width: 10px;
	height: 10px;
	background: #a3a3a3;
	border-radius: 50%;
	animation: bounce 6s ease-in-out infinite;
	box-shadow: 0 0 15px rgba(163, 163, 163, 0.5);
}

.hero-dot:nth-child(1) {
	top: 15%;
	left: 15%;
	animation-delay: 0s;
}

.hero-dot:nth-child(2) {
	top: 35%;
	right: 25%;
	animation-delay: 1.2s;
}

.hero-dot:nth-child(3) {
	bottom: 25%;
	left: 35%;
	animation-delay: 2.4s;
}

.hero-dot:nth-child(4) {
	top: 55%;
	right: 8%;
	animation-delay: 3.6s;
}

.hero-dot:nth-child(5) {
	bottom: 15%;
	right: 45%;
	animation-delay: 4.8s;
}

/* Animation attributes */
[data-animate="scaleIn"] {
	opacity: 0;
	animation: scaleIn 0.8s ease-out forwards;
}

[data-animate="slideDown"] {
	opacity: 0;
	animation: slideDown 0.9s ease-out forwards;
}

[data-animate="slideInRight"] {
	opacity: 0;
	animation: slideInRight 0.9s ease-out forwards;
}

[data-animate="fade-up"] {
	opacity: 0;
	animation: fadeInUp 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; }

@media (max-width: 968px) {
	.hero-wrapper {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	
	.hero-heading {
		font-size: 2.5rem;
	}
	
	.hero-image-block {
		height: 400px;
	}
}

/* ============================================
   НОВАЯ TECH СЕКЦИЯ
   ============================================ */

.tech-section {
	position: relative;
	padding: 10rem 1.5rem;
	background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 50%, #000000 100%);
	overflow: hidden;
}

.tech-background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.tech-wave {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 250px;
	background: linear-gradient(180deg, rgba(115, 115, 115, 0.08) 0%, transparent 100%);
	animation: float 15s ease-in-out infinite;
}

.tech-dots {
	position: absolute;
	inset: 0;
	background-image: 
		radial-gradient(circle at 3px 3px, rgba(115, 115, 115, 0.12) 1.5px, transparent 0);
	background-size: 50px 50px;
	opacity: 0.5;
	animation: rotate 40s linear infinite;
}

.tech-wrapper {
	max-width: 85rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.tech-header {
	text-align: center;
	margin-bottom: 5rem;
	color: #ffffff;
}

.tech-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.875rem 1.75rem;
	border-radius: 60px;
	background: rgba(115, 115, 115, 0.12);
	border: 2px solid rgba(115, 115, 115, 0.25);
	color: #ffffff;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 2rem;
	backdrop-filter: blur(15px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-badge:hover {
	background: rgba(115, 115, 115, 0.25);
	border-color: rgba(115, 115, 115, 0.5);
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 10px 30px rgba(115, 115, 115, 0.2);
}

.tech-badge svg {
	color: #d4d4d4;
	transition: transform 0.4s ease;
}

.tech-badge:hover svg {
	transform: rotate(15deg) scale(1.1);
}

.tech-title {
	font-size: 3.5rem;
	font-weight: 900;
	line-height: 1.15;
	margin-bottom: 1.75rem;
	background: linear-gradient(135deg, #ffffff 0%, #d4d4d4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: glow 5s ease-in-out infinite;
}

.tech-subtitle {
	font-size: 1.2rem;
	line-height: 1.9;
	color: #d4d4d4;
	max-width: 850px;
	margin: 0 auto;
}

.tech-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 2.5rem;
}

.tech-card {
	position: relative;
	padding: 3rem;
	background: rgba(26, 26, 26, 0.6);
	border: 2px solid rgba(115, 115, 115, 0.2);
	border-radius: 24px;
	backdrop-filter: blur(25px);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	cursor: pointer;
}

.tech-card-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.15) 0%, rgba(82, 82, 82, 0.15) 100%);
	opacity: 0;
	transition: opacity 0.5s ease;
}

.tech-card:hover {
	transform: translateY(-12px) scale(1.02);
	border-color: rgba(115, 115, 115, 0.5);
	box-shadow: 0 25px 60px rgba(115, 115, 115, 0.3);
}

.tech-card:hover .tech-card-bg {
	opacity: 1;
}

.tech-card-icon {
	width: 72px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.2) 0%, rgba(82, 82, 82, 0.2) 100%);
	border-radius: 20px;
	margin-bottom: 2rem;
	color: #ffffff;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid rgba(115, 115, 115, 0.3);
}

.tech-card:hover .tech-card-icon {
	transform: scale(1.15) rotate(10deg);
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.35) 0%, rgba(82, 82, 82, 0.35) 100%);
	border-color: rgba(115, 115, 115, 0.6);
	box-shadow: 0 10px 30px rgba(115, 115, 115, 0.3);
}

.tech-card-content {
	position: relative;
	z-index: 1;
}

.tech-card-title {
	font-size: 1.75rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 0.75rem;
	transition: color 0.3s ease;
}

.tech-card:hover .tech-card-title {
	color: #e5e5e5;
}

.tech-card-subtitle {
	font-size: 0.95rem;
	color: #a3a3a3;
	margin-bottom: 1.25rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.tech-card-description {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #d4d4d4;
	margin-bottom: 2rem;
	transition: color 0.3s ease;
}

.tech-card:hover .tech-card-description {
	color: #e5e5e5;
}

.tech-card-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.875rem;
}

.tech-card-tag {
	padding: 0.625rem 1.25rem;
	background: rgba(115, 115, 115, 0.15);
	border: 2px solid rgba(115, 115, 115, 0.3);
	border-radius: 25px;
	color: #ffffff;
	font-size: 0.9rem;
	font-weight: 600;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-card:hover .tech-card-tag {
	background: rgba(115, 115, 115, 0.3);
	border-color: rgba(115, 115, 115, 0.6);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(115, 115, 115, 0.2);
}

@media (max-width: 768px) {
	.tech-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.tech-title {
		font-size: 2.5rem;
	}
	
	.tech-card {
		padding: 2rem;
	}
}

/* ============================================
   НОВАЯ PRICING СЕКЦИЯ
   ============================================ */

.pricing-section {
	position: relative;
	padding: 10rem 1.5rem;
	background: linear-gradient(180deg, #000000 0%, #0d0d0d 50%, #1a1a1a 100%);
	overflow: hidden;
}

.pricing-background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.pricing-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(120px);
	animation: rotate3d 30s ease-in-out infinite;
}

.pricing-orb-1 {
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, rgba(115, 115, 115, 0.18) 0%, transparent 70%);
	top: -20%;
	left: -15%;
	animation-delay: 0s;
}

.pricing-orb-2 {
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, rgba(82, 82, 82, 0.15) 0%, transparent 70%);
	bottom: -20%;
	right: -15%;
	animation-delay: 10s;
}

.pricing-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		radial-gradient(circle at 4px 4px, rgba(115, 115, 115, 0.1) 2px, transparent 0);
	background-size: 60px 60px;
	opacity: 0.4;
	animation: rotate 50s linear infinite;
}

.pricing-wrapper {
	max-width: 85rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.pricing-header {
	text-align: center;
	margin-bottom: 5rem;
	color: #ffffff;
}

.pricing-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.875rem 1.75rem;
	border-radius: 60px;
	background: rgba(115, 115, 115, 0.12);
	border: 2px solid rgba(115, 115, 115, 0.25);
	color: #ffffff;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 2rem;
	backdrop-filter: blur(15px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-badge:hover {
	background: rgba(115, 115, 115, 0.25);
	border-color: rgba(115, 115, 115, 0.5);
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 10px 30px rgba(115, 115, 115, 0.2);
}

.pricing-badge svg {
	color: #d4d4d4;
	transition: transform 0.4s ease;
}

.pricing-badge:hover svg {
	transform: rotate(15deg) scale(1.1);
}

.pricing-title {
	font-size: 3.5rem;
	font-weight: 900;
	line-height: 1.15;
	margin-bottom: 1.75rem;
	background: linear-gradient(135deg, #ffffff 0%, #d4d4d4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: glow 5s ease-in-out infinite;
}

.pricing-subtitle {
	font-size: 1.2rem;
	line-height: 1.9;
	color: #d4d4d4;
	max-width: 850px;
	margin: 0 auto;
}

.pricing-image-wrapper {
	text-align: center;
	margin: 4rem 0;
	padding: 0 1.5rem;
}

.pricing-image {
	max-width: 100%;
	height: auto;
	border-radius: 24px;
	opacity: 0.85;
	filter: grayscale(15%);
	max-height: 450px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-image:hover {
	opacity: 1;
	filter: grayscale(0%);
	transform: scale(1.03);
	box-shadow: 0 30px 80px rgba(115, 115, 115, 0.3);
}

.pricing-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
	margin-bottom: 5rem;
}

.pricing-card {
	position: relative;
	padding: 3rem;
	background: rgba(26, 26, 26, 0.7);
	border: 2px solid rgba(115, 115, 115, 0.2);
	border-radius: 28px;
	backdrop-filter: blur(25px);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	cursor: pointer;
}

.pricing-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.1) 0%, rgba(82, 82, 82, 0.1) 100%);
	opacity: 0;
	transition: opacity 0.5s ease;
}

.pricing-card:hover {
	transform: translateY(-15px) scale(1.03);
	border-color: rgba(115, 115, 115, 0.6);
	box-shadow: 0 30px 70px rgba(115, 115, 115, 0.35);
}

.pricing-card:hover::before {
	opacity: 1;
}

.pricing-card-featured {
	border-color: rgba(115, 115, 115, 0.4);
	background: rgba(26, 26, 26, 0.85);
}

.pricing-card-featured::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #737373, #a3a3a3, #737373);
	background-size: 200% 100%;
	animation: gradient 3s ease infinite;
}

.pricing-card-badge {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	padding: 0.5rem 1rem;
	background: linear-gradient(135deg, #737373 0%, #525252 100%);
	color: #ffffff;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	z-index: 2;
	box-shadow: 0 4px 15px rgba(115, 115, 115, 0.4);
}

.pricing-card-header {
	margin-bottom: 2rem;
	position: relative;
	z-index: 1;
}

.pricing-card-title {
	font-size: 2rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 0.5rem;
	transition: color 0.3s ease;
}

.pricing-card:hover .pricing-card-title {
	color: #e5e5e5;
}

.pricing-card-subtitle {
	font-size: 1rem;
	color: #a3a3a3;
	font-weight: 600;
}

.pricing-card-content {
	position: relative;
	z-index: 1;
	margin-bottom: 2rem;
}

.pricing-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pricing-list li {
	padding: 0.875rem 0;
	color: #d4d4d4;
	font-size: 1rem;
	line-height: 1.6;
	border-bottom: 1px solid rgba(115, 115, 115, 0.1);
	transition: all 0.3s ease;
	position: relative;
	padding-left: 1.75rem;
}

.pricing-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #a3a3a3;
	font-weight: 700;
	transition: all 0.3s ease;
}

.pricing-card:hover .pricing-list li {
	color: #e5e5e5;
	padding-left: 2rem;
}

.pricing-card:hover .pricing-list li::before {
	color: #d4d4d4;
	transform: scale(1.2);
}

.pricing-card-footer {
	position: relative;
	z-index: 1;
	padding-top: 2rem;
	border-top: 2px solid rgba(115, 115, 115, 0.2);
}

.pricing-price {
	font-size: 1.5rem;
	font-weight: 800;
	color: #ffffff;
	display: block;
	text-align: center;
	transition: color 0.3s ease;
}

.pricing-card:hover .pricing-price {
	color: #e5e5e5;
}

.pricing-comparison {
	margin: 5rem 0;
	position: relative;
	z-index: 1;
}

.pricing-comparison-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: #ffffff;
	text-align: center;
	margin-bottom: 3rem;
	background: linear-gradient(135deg, #ffffff 0%, #d4d4d4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.pricing-comparison-table-wrapper {
	overflow-x: auto;
	border-radius: 20px;
	background: rgba(26, 26, 26, 0.6);
	border: 2px solid rgba(115, 115, 115, 0.2);
	backdrop-filter: blur(20px);
}

.pricing-comparison-table {
	width: 100%;
	border-collapse: collapse;
}

.pricing-comparison-table thead {
	background: rgba(115, 115, 115, 0.1);
}

.pricing-comparison-table th {
	padding: 1.5rem;
	text-align: left;
	color: #ffffff;
	font-weight: 700;
	font-size: 1.1rem;
	border-bottom: 2px solid rgba(115, 115, 115, 0.3);
}

.pricing-comparison-table td {
	padding: 1.25rem 1.5rem;
	color: #d4d4d4;
	border-bottom: 1px solid rgba(115, 115, 115, 0.1);
	transition: all 0.3s ease;
}

.pricing-comparison-table tbody tr:hover td {
	background: rgba(115, 115, 115, 0.1);
	color: #ffffff;
}

.pricing-note {
	margin: 4rem 0;
	position: relative;
	z-index: 1;
	text-align: center;
}

.pricing-note-text {
	color: #d4d4d4;
	font-size: 1rem;
	line-height: 1.8;
	max-width: 900px;
	margin: 0 auto;
	padding: 2rem;
	background: rgba(26, 26, 26, 0.5);
	border-radius: 16px;
	border: 1px solid rgba(115, 115, 115, 0.2);
}

.pricing-example {
	margin: 4rem 0;
	position: relative;
	z-index: 1;
	padding: 3rem;
	background: rgba(26, 26, 26, 0.6);
	border-radius: 24px;
	border: 2px solid rgba(115, 115, 115, 0.2);
	backdrop-filter: blur(20px);
}

.pricing-example-title {
	font-size: 2rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 2rem;
	text-align: center;
}

.pricing-example-content {
	color: #d4d4d4;
}

.pricing-example-text {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.pricing-example-list {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0;
}

.pricing-example-list li {
	padding: 1rem;
	margin-bottom: 0.75rem;
	background: rgba(115, 115, 115, 0.1);
	border-radius: 12px;
	border-left: 4px solid rgba(115, 115, 115, 0.5);
	transition: all 0.3s ease;
}

.pricing-example-list li:hover {
	background: rgba(115, 115, 115, 0.2);
	transform: translateX(5px);
}

.pricing-example-total {
	font-size: 1.2rem;
	line-height: 1.8;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 2px solid rgba(115, 115, 115, 0.2);
}

.pricing-cta {
	text-align: center;
	margin: 5rem 0 3rem;
	position: relative;
	z-index: 1;
}

.pricing-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.875rem;
	padding: 1.5rem 3rem;
	background: linear-gradient(135deg, #737373 0%, #525252 100%);
	color: #ffffff;
	border-radius: 16px;
	font-weight: 700;
	font-size: 1.1rem;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 8px 30px rgba(115, 115, 115, 0.4);
	position: relative;
	overflow: hidden;
}

.pricing-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.pricing-btn:hover::before {
	width: 400px;
	height: 400px;
}

.pricing-btn:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 15px 50px rgba(115, 115, 115, 0.6);
}

.pricing-btn svg {
	transition: transform 0.4s ease;
}

.pricing-btn:hover svg {
	transform: translateX(5px);
}

.pricing-cta-note {
	color: #d4d4d4;
	font-size: 0.95rem;
	margin-top: 1.5rem;
}

@media (max-width: 768px) {
	.pricing-cards {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.pricing-title {
		font-size: 2.5rem;
	}
	
	.pricing-card {
		padding: 2rem;
	}
}

/* ============================================
   НОВАЯ TESTIMONIALS СЕКЦИЯ
   ============================================ */

.testimonials-section {
	position: relative;
	padding: 10rem 1.5rem;
	background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 50%, #000000 100%);
	overflow: hidden;
}

.testimonials-background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.testimonials-gradient {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center, rgba(115, 115, 115, 0.1) 0%, transparent 70%);
	animation: float 20s ease-in-out infinite;
}

.testimonials-wrapper {
	max-width: 85rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.testimonials-header {
	text-align: center;
	margin-bottom: 5rem;
	color: #ffffff;
}

.testimonials-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.875rem 1.75rem;
	border-radius: 60px;
	background: rgba(115, 115, 115, 0.12);
	border: 2px solid rgba(115, 115, 115, 0.25);
	color: #ffffff;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 2rem;
	backdrop-filter: blur(15px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-badge:hover {
	background: rgba(115, 115, 115, 0.25);
	border-color: rgba(115, 115, 115, 0.5);
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 10px 30px rgba(115, 115, 115, 0.2);
}

.testimonials-badge svg {
	color: #d4d4d4;
	transition: transform 0.4s ease;
}

.testimonials-badge:hover svg {
	transform: rotate(15deg) scale(1.1);
}

.testimonials-title {
	font-size: 3.5rem;
	font-weight: 900;
	line-height: 1.15;
	margin-bottom: 1.75rem;
	background: linear-gradient(135deg, #ffffff 0%, #d4d4d4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: glow 5s ease-in-out infinite;
}

.testimonials-subtitle {
	font-size: 1.2rem;
	line-height: 1.9;
	color: #d4d4d4;
	max-width: 850px;
	margin: 0 auto;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2.5rem;
}

.testimonial-card {
	position: relative;
	padding: 3rem;
	background: rgba(26, 26, 26, 0.7);
	border: 2px solid rgba(115, 115, 115, 0.2);
	border-radius: 28px;
	backdrop-filter: blur(25px);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	cursor: pointer;
}

.testimonial-card-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.1) 0%, rgba(82, 82, 82, 0.1) 100%);
	opacity: 0;
	transition: opacity 0.5s ease;
}

.testimonial-card-glow {
	position: absolute;
	inset: -2px;
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.3), rgba(82, 82, 82, 0.3));
	border-radius: 28px;
	filter: blur(15px);
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: -1;
}

.testimonial-card:hover {
	transform: translateY(-12px) scale(1.02);
	border-color: rgba(115, 115, 115, 0.5);
	box-shadow: 0 25px 60px rgba(115, 115, 115, 0.3);
}

.testimonial-card:hover .testimonial-card-bg {
	opacity: 1;
}

.testimonial-card:hover .testimonial-card-glow {
	opacity: 1;
}

.testimonial-card-inner {
	position: relative;
	z-index: 1;
}

.testimonial-card-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 2rem;
}

.testimonial-card-icon-wrapper {
	position: relative;
}

.testimonial-card-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.2) 0%, rgba(82, 82, 82, 0.2) 100%);
	border-radius: 16px;
	color: #ffffff;
	border: 2px solid rgba(115, 115, 115, 0.3);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover .testimonial-card-icon {
	transform: scale(1.15) rotate(10deg);
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.35) 0%, rgba(82, 82, 82, 0.35) 100%);
	border-color: rgba(115, 115, 115, 0.6);
	box-shadow: 0 10px 30px rgba(115, 115, 115, 0.3);
}

.testimonial-card-icon-pulse {
	position: absolute;
	inset: -8px;
	border-radius: 20px;
	background: rgba(115, 115, 115, 0.2);
	animation: pulse 2s ease-in-out infinite;
	z-index: -1;
}

.testimonial-card-rating {
	display: flex;
	gap: 0.25rem;
}

.testimonial-card-star {
	color: #a3a3a3;
	transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-card-star {
	color: #d4d4d4;
	transform: scale(1.1);
}

.testimonial-card-content {
	margin-bottom: 2.5rem;
	position: relative;
}

.testimonial-card-quote-mark {
	position: absolute;
	top: -1rem;
	left: -0.5rem;
	opacity: 0.15;
	z-index: 0;
}

.testimonial-card-text {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #d4d4d4;
	position: relative;
	z-index: 1;
	transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-card-text {
	color: #e5e5e5;
}

.testimonial-card-footer {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding-top: 2rem;
	border-top: 2px solid rgba(115, 115, 115, 0.2);
}

.testimonial-card-avatar-wrapper {
	position: relative;
	flex-shrink: 0;
}

.testimonial-card-avatar {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid rgba(115, 115, 115, 0.3);
	transition: all 0.4s ease;
}

.testimonial-card-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-card:hover .testimonial-card-avatar {
	border-color: rgba(115, 115, 115, 0.6);
	transform: scale(1.1);
	box-shadow: 0 8px 25px rgba(115, 115, 115, 0.3);
}

.testimonial-card-avatar-ring {
	position: absolute;
	inset: -6px;
	border-radius: 50%;
	border: 2px solid rgba(115, 115, 115, 0.2);
	animation: pulse 3s ease-in-out infinite;
}

.testimonial-card-author {
	flex: 1;
}

.testimonial-card-author-name {
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.25rem;
	transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-card-author-name {
	color: #e5e5e5;
}

.testimonial-card-author-role {
	font-size: 0.95rem;
	color: #a3a3a3;
	margin-bottom: 0.25rem;
}

.testimonial-card-author-company {
	font-size: 0.875rem;
	color: #737373;
}

@media (max-width: 768px) {
	.testimonials-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.testimonials-title {
		font-size: 2.5rem;
	}
	
	.testimonial-card {
		padding: 2rem;
	}
}

/* ============================================
   НОВАЯ SOLUTIONS СЕКЦИЯ
   ============================================ */

.solutions-section {
	position: relative;
	padding: 10rem 1.5rem;
	background: linear-gradient(180deg, #000000 0%, #1a1a1a 50%, #0d0d0d 100%);
	overflow: hidden;
}

.solutions-background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.solutions-shapes {
	position: absolute;
	inset: 0;
}

.solutions-shape {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	animation: float 25s ease-in-out infinite;
}

.solutions-shape:nth-child(1) {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(115, 115, 115, 0.15) 0%, transparent 70%);
	top: 10%;
	left: 5%;
	animation-delay: 0s;
}

.solutions-shape:nth-child(2) {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(82, 82, 82, 0.12) 0%, transparent 70%);
	bottom: 15%;
	right: 10%;
	animation-delay: 8s;
}

.solutions-shape:nth-child(3) {
	width: 550px;
	height: 550px;
	background: radial-gradient(circle, rgba(115, 115, 115, 0.1) 0%, transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: 15s;
}

.solutions-wrapper {
	max-width: 85rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.solutions-header {
	text-align: center;
	margin-bottom: 5rem;
	color: #ffffff;
}

.solutions-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.875rem 1.75rem;
	border-radius: 60px;
	background: rgba(115, 115, 115, 0.12);
	border: 2px solid rgba(115, 115, 115, 0.25);
	color: #ffffff;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 2rem;
	backdrop-filter: blur(15px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solutions-badge:hover {
	background: rgba(115, 115, 115, 0.25);
	border-color: rgba(115, 115, 115, 0.5);
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 10px 30px rgba(115, 115, 115, 0.2);
}

.solutions-badge svg {
	color: #d4d4d4;
	transition: transform 0.4s ease;
}

.solutions-badge:hover svg {
	transform: rotate(15deg) scale(1.1);
}

.solutions-title {
	font-size: 3.5rem;
	font-weight: 900;
	line-height: 1.15;
	margin-bottom: 1.75rem;
	background: linear-gradient(135deg, #ffffff 0%, #d4d4d4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: glow 5s ease-in-out infinite;
}

.solutions-subtitle {
	font-size: 1.2rem;
	line-height: 1.9;
	color: #d4d4d4;
	max-width: 850px;
	margin: 0 auto;
}

.solutions-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
	gap: 2.5rem;
	margin-bottom: 4rem;
}

.solution-card {
	position: relative;
	padding: 3rem;
	background: rgba(26, 26, 26, 0.7);
	border: 2px solid rgba(115, 115, 115, 0.2);
	border-radius: 28px;
	backdrop-filter: blur(25px);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	cursor: pointer;
}

.solution-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.1) 0%, rgba(82, 82, 82, 0.1) 100%);
	opacity: 0;
	transition: opacity 0.5s ease;
}

.solution-card:hover {
	transform: translateY(-12px) scale(1.02);
	border-color: rgba(115, 115, 115, 0.5);
	box-shadow: 0 25px 60px rgba(115, 115, 115, 0.3);
}

.solution-card:hover::before {
	opacity: 1;
}

.solution-card-inner {
	position: relative;
	z-index: 1;
}

.solution-card-icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.2) 0%, rgba(82, 82, 82, 0.2) 100%);
	border-radius: 18px;
	margin-bottom: 2rem;
	color: #ffffff;
	border: 2px solid rgba(115, 115, 115, 0.3);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card:hover .solution-card-icon {
	transform: scale(1.15) rotate(10deg);
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.35) 0%, rgba(82, 82, 82, 0.35) 100%);
	border-color: rgba(115, 115, 115, 0.6);
	box-shadow: 0 10px 30px rgba(115, 115, 115, 0.3);
}

.solution-card-title {
	font-size: 1.75rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 1rem;
	transition: color 0.3s ease;
}

.solution-card:hover .solution-card-title {
	color: #e5e5e5;
}

.solution-card-description {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #d4d4d4;
	margin-bottom: 2rem;
	transition: color 0.3s ease;
}

.solution-card:hover .solution-card-description {
	color: #e5e5e5;
}

.solution-card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	color: #ffffff;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.4s ease;
}

.solution-card-link svg {
	transition: transform 0.4s ease;
}

.solution-card:hover .solution-card-link {
	color: #e5e5e5;
}

.solution-card:hover .solution-card-link svg {
	transform: translateX(8px);
}

.solutions-cta {
	text-align: center;
	margin-top: 4rem;
	position: relative;
	z-index: 1;
}

.solutions-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.875rem;
	padding: 1.5rem 3rem;
	background: linear-gradient(135deg, #737373 0%, #525252 100%);
	color: #ffffff;
	border-radius: 16px;
	font-weight: 700;
	font-size: 1.1rem;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 8px 30px rgba(115, 115, 115, 0.4);
	position: relative;
	overflow: hidden;
}

.solutions-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.solutions-btn:hover::before {
	width: 400px;
	height: 400px;
}

.solutions-btn:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 15px 50px rgba(115, 115, 115, 0.6);
}

.solutions-btn svg {
	transition: transform 0.4s ease;
}

.solutions-btn:hover svg {
	transform: translateX(5px);
}

@media (max-width: 768px) {
	.solutions-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.solutions-title {
		font-size: 2.5rem;
	}
	
	.solution-card {
		padding: 2rem;
	}
}

/* ============================================
   НОВАЯ FOOTER СЕКЦИЯ
   ============================================ */

.footer-section {
	position: relative;
	padding: 6rem 1.5rem 3rem;
	background: linear-gradient(180deg, #0d0d0d 0%, #000000 100%);
	overflow: hidden;
	border-top: 2px solid rgba(115, 115, 115, 0.2);
}

.footer-background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.footer-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(115, 115, 115, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(115, 115, 115, 0.03) 1px, transparent 1px);
	background-size: 40px 40px;
	opacity: 0.5;
}

.footer-shapes {
	position: absolute;
	inset: 0;
}

.footer-shape {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	animation: float 30s ease-in-out infinite;
}

.footer-shape:nth-child(1) {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(115, 115, 115, 0.1) 0%, transparent 70%);
	top: -10%;
	left: -5%;
	animation-delay: 0s;
}

.footer-shape:nth-child(2) {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(82, 82, 82, 0.08) 0%, transparent 70%);
	bottom: -10%;
	right: -5%;
	animation-delay: 15s;
}

.footer-wrapper {
	max-width: 85rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 4rem;
	margin-bottom: 4rem;
}

.footer-brand {
	color: #ffffff;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-logo:hover {
	transform: translateY(-2px);
}

.footer-logo-image {
	width: 48px;
	height: 48px;
	transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-image {
	transform: scale(1.1) rotate(5deg);
}

.footer-logo-text {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	transition: color 0.3s ease;
}

.footer-logo:hover .footer-logo-text {
	color: #e5e5e5;
}

.footer-description {
	font-size: 1rem;
	line-height: 1.8;
	color: #d4d4d4;
	margin-bottom: 2rem;
}

.footer-social {
	display: flex;
	gap: 1rem;
}

.footer-social-link {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(115, 115, 115, 0.1);
	border: 2px solid rgba(115, 115, 115, 0.2);
	border-radius: 12px;
	color: #d4d4d4;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social-link:hover {
	background: rgba(115, 115, 115, 0.2);
	border-color: rgba(115, 115, 115, 0.4);
	color: #ffffff;
	transform: translateY(-3px) scale(1.1);
	box-shadow: 0 8px 20px rgba(115, 115, 115, 0.3);
}

.footer-column h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 1.5rem;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 1rem;
}

.footer-link {
	color: #d4d4d4;
	text-decoration: none;
	font-size: 1rem;
	transition: all 0.3s ease;
	display: inline-block;
	position: relative;
}

.footer-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: #d4d4d4;
	transition: width 0.3s ease;
}

.footer-link:hover {
	color: #ffffff;
	transform: translateX(5px);
}

.footer-link:hover::after {
	width: 100%;
}

.footer-legal {
	font-size: 0.9rem;
	line-height: 1.8;
	color: #a3a3a3;
	margin-bottom: 1rem;
}

.footer-legal-info {
	font-size: 0.85rem;
	line-height: 1.7;
	color: #737373;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 3rem;
	border-top: 2px solid rgba(115, 115, 115, 0.2);
	flex-wrap: wrap;
	gap: 2rem;
}

.footer-copyright {
	color: #a3a3a3;
	font-size: 0.95rem;
}

.footer-legal-links {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
}

.footer-legal-link {
	color: #a3a3a3;
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.footer-legal-link:hover {
	color: #ffffff;
	text-decoration: underline;
}

@media (max-width: 968px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 3rem;
	}
}

@media (max-width: 640px) {
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	
	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
	
	.footer-legal-links {
		justify-content: center;
	}
}

/* ============================================
   ПОЛНОСТЬЮ НОВЫЕ СТИЛИ ДЛЯ ПЕРЕДЕЛАННЫХ СЕКЦИЙ
   ============================================ */

/* НОВЫЕ АНИМАЦИИ */
@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-60px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(60px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes orbMove {
	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 cardHover {
	0%, 100% {
		transform: translateY(0) scale(1);
	}
	50% {
		transform: translateY(-8px) scale(1.02);
	}
}

/* НОВАЯ HERO СЕКЦИЯ */
.hero-new {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 8rem 1.5rem;
	overflow: hidden;
	background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0d0d0d 100%);
}

.hero-new-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-new-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	animation: orbMove 20s ease-in-out infinite;
}

.hero-new-orb-1 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(115, 115, 115, 0.2) 0%, transparent 70%);
	top: -15%;
	left: -10%;
	animation-delay: 0s;
}

.hero-new-orb-2 {
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, rgba(82, 82, 82, 0.16) 0%, transparent 70%);
	bottom: -15%;
	right: -10%;
	animation-delay: 10s;
}

.hero-new-container {
	max-width: 90rem;
	margin: 0 auto;
	display: flex;
	gap: 6rem;
	position: relative;
	z-index: 1;
	align-items: center;
}

.hero-new-content {
	flex: 1.2;
	color: #ffffff;
}

.hero-new-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.875rem;
	padding: 1rem 2rem;
	border-radius: 70px;
	background: rgba(115, 115, 115, 0.14);
	border: 2px solid rgba(115, 115, 115, 0.28);
	color: #ffffff;
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 3rem;
	backdrop-filter: blur(18px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
}

.hero-new-badge:hover {
	background: rgba(115, 115, 115, 0.28);
	border-color: rgba(115, 115, 115, 0.55);
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(115, 115, 115, 0.25);
}

.hero-new-badge-icon {
	color: #d4d4d4;
	transition: transform 0.4s ease;
}

.hero-new-badge:hover .hero-new-badge-icon {
	transform: scale(1.1);
}

.hero-new-heading-wrapper {
	margin-bottom: 2.5rem;
}

.hero-new-heading {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.hero-new-heading-part {
	font-size: 4.5rem;
	font-weight: 950;
	line-height: 1.05;
	display: block;
}

.hero-new-heading-part-1 {
	background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-new-heading-part-2 {
	background: linear-gradient(135deg, #d4d4d4 0%, #a3a3a3 50%, #737373 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-new-heading-part-3 {
	color: #d4d4d4;
	font-size: 0.8em;
	font-weight: 500;
}

.hero-new-description {
	margin-bottom: 3rem;
}

.hero-new-description-text {
	font-size: 1.25rem;
	line-height: 2;
	color: #d4d4d4;
	max-width: 700px;
}

.hero-new-features {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-bottom: 3.5rem;
}

.hero-new-feature {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	padding: 1.125rem 1.75rem;
	background: rgba(115, 115, 115, 0.14);
	border: 2px solid rgba(115, 115, 115, 0.22);
	border-radius: 50px;
	color: #ffffff;
	font-size: 0.95rem;
	font-weight: 600;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
}

.hero-new-feature:hover {
	background: rgba(115, 115, 115, 0.28);
	border-color: rgba(115, 115, 115, 0.55);
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(115, 115, 115, 0.3);
}

.hero-new-feature-icon-wrapper {
	color: #d4d4d4;
	transition: transform 0.4s ease;
}

.hero-new-feature:hover .hero-new-feature-icon-wrapper {
	transform: scale(1.2);
}

.hero-new-actions {
	display: flex;
	gap: 1.75rem;
	flex-wrap: wrap;
	margin-bottom: 2.5rem;
}

.hero-new-btn {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	padding: 1.375rem 3rem;
	border-radius: 18px;
	font-weight: 700;
	font-size: 1.1rem;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
}

.hero-new-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.hero-new-btn:hover::before {
	width: 300px;
	height: 300px;
}

.hero-new-btn-primary {
	background: linear-gradient(135deg, #737373 0%, #525252 100%);
	color: #ffffff;
	box-shadow: 0 8px 30px rgba(115, 115, 115, 0.45);
}

.hero-new-btn-primary:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(115, 115, 115, 0.6);
}

.hero-new-btn-icon {
	transition: transform 0.4s ease;
}

.hero-new-btn-primary:hover .hero-new-btn-icon {
	transform: translateX(6px);
}

.hero-new-btn-secondary {
	background: transparent;
	color: #ffffff;
	border-color: rgba(115, 115, 115, 0.45);
}

.hero-new-btn-secondary:hover {
	background: rgba(115, 115, 115, 0.18);
	border-color: rgba(115, 115, 115, 0.65);
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(115, 115, 115, 0.3);
}

.hero-new-note {
	display: flex;
	align-items: center;
	gap: 1.125rem;
	color: #d4d4d4;
	font-size: 1.05rem;
	margin-top: 2rem;
}

.hero-new-note-icon {
	color: #a3a3a3;
	flex-shrink: 0;
}

.hero-new-visual {
	flex: 1;
	position: relative;
	height: 600px;
}

.hero-new-visual-container {
	position: relative;
	width: 100%;
	height: 100%;
}

.hero-new-visual-image-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}

.hero-new-visual-image {
	width: 100%;
	max-width: 700px;
	height: auto;
	border-radius: 28px;
	opacity: 0.88;
	filter: grayscale(12%);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
}

.hero-new-visual-image:hover {
	opacity: 1;
	filter: grayscale(0%);
	transform: scale(1.05);
	box-shadow: 0 30px 80px rgba(115, 115, 115, 0.3);
}

.hero-new-visual-accent {
	position: absolute;
	border-radius: 28px;
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.2) 0%, rgba(82, 82, 82, 0.2) 100%);
	backdrop-filter: blur(25px);
	border: 2px solid rgba(115, 115, 115, 0.3);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.hero-new-visual-accent-1 {
	width: 200px;
	height: 200px;
	top: 8%;
	left: 8%;
	z-index: -1;
}

.hero-new-visual-accent-2 {
	width: 180px;
	height: 180px;
	top: 45%;
	right: 15%;
	z-index: -1;
}

.hero-new-visual-accent-3 {
	width: 190px;
	height: 190px;
	bottom: 8%;
	left: 25%;
	z-index: -1;
}

@media (max-width: 968px) {
	.hero-new-container {
		flex-direction: column;
		gap: 4rem;
	}
	
	.hero-new-heading-part {
		font-size: 3rem;
	}
	
	.hero-new-visual {
		height: 450px;
	}
}

/* НОВАЯ TECH СЕКЦИЯ */
.tech-new {
	position: relative;
	padding: 11rem 1.5rem;
	background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 50%, #000000 100%);
	overflow: hidden;
}

.tech-new-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.tech-new-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	animation: orbMove 25s ease-in-out infinite;
}

.tech-new-orb-1 {
	width: 650px;
	height: 650px;
	background: radial-gradient(circle, rgba(115, 115, 115, 0.18) 0%, transparent 70%);
	top: -20%;
	left: -15%;
	animation-delay: 0s;
}

.tech-new-orb-2 {
	width: 750px;
	height: 750px;
	background: radial-gradient(circle, rgba(82, 82, 82, 0.15) 0%, transparent 70%);
	bottom: -20%;
	right: -15%;
	animation-delay: 12s;
}

.tech-new-container {
	max-width: 90rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.tech-new-header {
	text-align: center;
	margin-bottom: 6rem;
	color: #ffffff;
}

.tech-new-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.875rem;
	padding: 1rem 2rem;
	border-radius: 70px;
	background: rgba(115, 115, 115, 0.14);
	border: 2px solid rgba(115, 115, 115, 0.28);
	color: #ffffff;
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 2.5rem;
	backdrop-filter: blur(18px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-new-badge:hover {
	background: rgba(115, 115, 115, 0.28);
	border-color: rgba(115, 115, 115, 0.55);
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(115, 115, 115, 0.25);
}

.tech-new-badge-icon {
	color: #d4d4d4;
	transition: transform 0.4s ease;
}

.tech-new-badge:hover .tech-new-badge-icon {
	transform: scale(1.1);
}

.tech-new-title {
	font-size: 4rem;
	font-weight: 950;
	line-height: 1.12;
	margin-bottom: 2rem;
	background: linear-gradient(135deg, #ffffff 0%, #d4d4d4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.tech-new-subtitle-wrapper {
	max-width: 900px;
	margin: 0 auto;
}

.tech-new-subtitle {
	font-size: 1.25rem;
	line-height: 2;
	color: #d4d4d4;
}

.tech-new-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 3rem;
}

.tech-new-card {
	position: relative;
	padding: 3.5rem;
	background: rgba(26, 26, 26, 0.7);
	border: 2px solid rgba(115, 115, 115, 0.22);
	border-radius: 30px;
	backdrop-filter: blur(28px);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	cursor: pointer;
}

.tech-new-card-background {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.15) 0%, rgba(82, 82, 82, 0.15) 100%);
	opacity: 0;
	transition: opacity 0.5s ease;
}

.tech-new-card:hover {
	transform: translateY(-12px);
	border-color: rgba(115, 115, 115, 0.5);
	box-shadow: 0 25px 60px rgba(115, 115, 115, 0.35);
}

.tech-new-card:hover .tech-new-card-background {
	opacity: 1;
}

.tech-new-card-content {
	position: relative;
	z-index: 1;
}

.tech-new-card-icon-container {
	margin-bottom: 2.5rem;
}

.tech-new-card-icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.25) 0%, rgba(82, 82, 82, 0.25) 100%);
	border-radius: 22px;
	color: #ffffff;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid rgba(115, 115, 115, 0.35);
}

.tech-new-card:hover .tech-new-card-icon {
	transform: scale(1.15);
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.35) 0%, rgba(82, 82, 82, 0.35) 100%);
	border-color: rgba(115, 115, 115, 0.6);
	box-shadow: 0 10px 30px rgba(115, 115, 115, 0.3);
}

.tech-new-card-body {
	position: relative;
	z-index: 1;
}

.tech-new-card-title {
	font-size: 2rem;
	font-weight: 850;
	color: #ffffff;
	margin-bottom: 0.875rem;
	transition: color 0.4s ease;
}

.tech-new-card:hover .tech-new-card-title {
	color: #e5e5e5;
}

.tech-new-card-category {
	font-size: 1rem;
	color: #a3a3a3;
	margin-bottom: 1.5rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.tech-new-card-description {
	font-size: 1.1rem;
	line-height: 1.9;
	color: #d4d4d4;
	margin-bottom: 2.5rem;
	transition: color 0.4s ease;
}

.tech-new-card:hover .tech-new-card-description {
	color: #e5e5e5;
}

.tech-new-card-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.tech-new-card-tag {
	padding: 0.75rem 1.5rem;
	background: rgba(115, 115, 115, 0.18);
	border: 2px solid rgba(115, 115, 115, 0.35);
	border-radius: 30px;
	color: #ffffff;
	font-size: 0.95rem;
	font-weight: 600;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-new-card:hover .tech-new-card-tag {
	background: rgba(115, 115, 115, 0.3);
	border-color: rgba(115, 115, 115, 0.6);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(115, 115, 115, 0.2);
}

@media (max-width: 768px) {
	.tech-new-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	
	.tech-new-title {
		font-size: 3rem;
	}
	
	.tech-new-card {
		padding: 2.5rem;
	}
}

/* НОВАЯ PRICING СЕКЦИЯ */
.main-pricing:not(.process-futuristic) {
	position: relative;
	padding: 11rem 1.5rem;
	background: linear-gradient(180deg, #000000 0%, #0d0d0d 50%, #1a1a1a 100%);
	overflow: hidden;
}

.main-pricing-bg-layer {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.main-pricing-blur-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(130px);
	animation: rotate3d 35s ease-in-out infinite;
}

.main-pricing-blur-orb-1 {
	width: 750px;
	height: 750px;
	background: radial-gradient(circle, rgba(115, 115, 115, 0.2) 0%, transparent 70%);
	top: -22%;
	left: -18%;
	animation-delay: 0s;
}

.main-pricing-blur-orb-2 {
	width: 850px;
	height: 850px;
	background: radial-gradient(circle, rgba(82, 82, 82, 0.17) 0%, transparent 70%);
	bottom: -22%;
	right: -18%;
	animation-delay: 12s;
}

.main-pricing-dot-grid {
	position: absolute;
	inset: 0;
	background-image: 
		radial-gradient(circle at 5px 5px, rgba(115, 115, 115, 0.12) 2.5px, transparent 0);
	background-size: 65px 65px;
	opacity: 0.5;
	animation: rotate 55s linear infinite;
}

.main-pricing-inner {
	max-width: 90rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.main-pricing-top-section {
	text-align: center;
	margin-bottom: 6rem;
	color: #ffffff;
}

.main-pricing-top-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.875rem;
	padding: 1rem 2rem;
	border-radius: 70px;
	background: rgba(115, 115, 115, 0.14);
	border: 2px solid rgba(115, 115, 115, 0.28);
	color: #ffffff;
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 2.5rem;
	backdrop-filter: blur(18px);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-pricing-top-badge:hover {
	background: rgba(115, 115, 115, 0.28);
	border-color: rgba(115, 115, 115, 0.55);
	transform: translateY(-4px) scale(1.03);
	box-shadow: 0 12px 35px rgba(115, 115, 115, 0.25);
}

.main-pricing-top-badge-icon {
	color: #d4d4d4;
	transition: transform 0.5s ease;
}

.main-pricing-top-badge:hover .main-pricing-top-badge-icon {
	transform: rotate(20deg) scale(1.15);
}

.main-pricing-main-title {
	font-size: 4rem;
	font-weight: 950;
	line-height: 1.12;
	margin-bottom: 2rem;
	background: linear-gradient(135deg, #ffffff 0%, #d4d4d4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: glow 6s ease-in-out infinite;
}

.main-pricing-description-area {
	max-width: 900px;
	margin: 0 auto;
}

.main-pricing-description-text {
	font-size: 1.25rem;
	line-height: 2;
	color: #d4d4d4;
}

.main-pricing-image-section {
	text-align: center;
	margin: 5rem 0;
	padding: 0 1.5rem;
}

.main-pricing-image-holder {
	display: inline-block;
}

.main-pricing-image {
	max-width: 100%;
	height: auto;
	border-radius: 28px;
	opacity: 0.88;
	filter: grayscale(12%);
	max-height: 500px;
	box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
	transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-pricing-image:hover {
	opacity: 1;
	filter: grayscale(0%);
	transform: scale(1.04);
	box-shadow: 0 35px 90px rgba(115, 115, 115, 0.35);
}

.main-pricing-plans-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 3rem;
	margin-bottom: 6rem;
}

.main-pricing-plan {
	position: relative;
	padding: 3.5rem;
	background: rgba(26, 26, 26, 0.75);
	border: 2px solid rgba(115, 115, 115, 0.22);
	border-radius: 32px;
	backdrop-filter: blur(28px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	cursor: pointer;
}

.main-pricing-plan::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.12) 0%, rgba(82, 82, 82, 0.12) 100%);
	opacity: 0;
	transition: opacity 0.6s ease;
}

.main-pricing-plan:hover {
	transform: translateY(-18px) scale(1.04);
	border-color: rgba(115, 115, 115, 0.6);
	box-shadow: 0 35px 80px rgba(115, 115, 115, 0.4);
}

.main-pricing-plan:hover::before {
	opacity: 1;
}

.main-pricing-plan-highlighted {
	border-color: rgba(115, 115, 115, 0.45);
	background: rgba(26, 26, 26, 0.9);
}

.main-pricing-plan-highlight {
	position: absolute;
	top: 2rem;
	right: 2rem;
	padding: 0.625rem 1.25rem;
	background: linear-gradient(135deg, #737373 0%, #525252 100%);
	color: #ffffff;
	border-radius: 25px;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	z-index: 2;
	box-shadow: 0 6px 20px rgba(115, 115, 115, 0.45);
}

.main-pricing-plan-highlighted::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #737373, #a3a3a3, #737373);
	background-size: 200% 100%;
	animation: gradient 3.5s ease infinite;
}

.main-pricing-plan-top {
	margin-bottom: 2.5rem;
	position: relative;
	z-index: 1;
}

.main-pricing-plan-name {
	font-size: 2.25rem;
	font-weight: 850;
	color: #ffffff;
	margin-bottom: 0.625rem;
	transition: color 0.4s ease;
}

.main-pricing-plan:hover .main-pricing-plan-name {
	color: #e5e5e5;
}

.main-pricing-plan-type {
	font-size: 1.05rem;
	color: #a3a3a3;
	font-weight: 600;
}

.main-pricing-plan-body {
	position: relative;
	z-index: 1;
	margin-bottom: 2.5rem;
}

.main-pricing-plan-features {
	list-style: none;
	padding: 0;
	margin: 0;
}

.main-pricing-plan-features li {
	padding: 1rem 0;
	color: #d4d4d4;
	font-size: 1.05rem;
	line-height: 1.7;
	border-bottom: 1px solid rgba(115, 115, 115, 0.12);
	transition: all 0.4s ease;
	position: relative;
	padding-left: 2rem;
}

.main-pricing-plan-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #a3a3a3;
	font-weight: 700;
	transition: all 0.4s ease;
}

.main-pricing-plan:hover .main-pricing-plan-features li {
	color: #e5e5e5;
	padding-left: 2.25rem;
}

.main-pricing-plan:hover .main-pricing-plan-features li::before {
	color: #d4d4d4;
	transform: scale(1.25);
}

.main-pricing-plan-bottom {
	position: relative;
	z-index: 1;
	padding-top: 2.5rem;
	border-top: 2px solid rgba(115, 115, 115, 0.22);
}

.main-pricing-plan-cost {
	font-size: 1.75rem;
	font-weight: 850;
	color: #ffffff;
	display: block;
	text-align: center;
	transition: color 0.4s ease;
}

.main-pricing-plan:hover .main-pricing-plan-cost {
	color: #e5e5e5;
}

.main-pricing-comparison-section {
	margin: 6rem 0;
	position: relative;
	z-index: 1;
}

.main-pricing-comparison-heading {
	font-size: 3rem;
	font-weight: 900;
	color: #ffffff;
	text-align: center;
	margin-bottom: 3.5rem;
	background: linear-gradient(135deg, #ffffff 0%, #d4d4d4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.main-pricing-comparison-wrapper {
	overflow-x: auto;
	border-radius: 24px;
	background: rgba(26, 26, 26, 0.7);
	border: 2px solid rgba(115, 115, 115, 0.22);
	backdrop-filter: blur(22px);
}

.main-pricing-comparison-table {
	width: 100%;
	border-collapse: collapse;
}

.main-pricing-comparison-table thead {
	background: rgba(115, 115, 115, 0.12);
}

.main-pricing-comparison-table th {
	padding: 1.75rem;
	text-align: left;
	color: #ffffff;
	font-weight: 700;
	font-size: 1.15rem;
	border-bottom: 2px solid rgba(115, 115, 115, 0.35);
}

.main-pricing-comparison-table td {
	padding: 1.5rem 1.75rem;
	color: #d4d4d4;
	border-bottom: 1px solid rgba(115, 115, 115, 0.12);
	transition: all 0.4s ease;
}

.main-pricing-comparison-table tbody tr:hover td {
	background: rgba(115, 115, 115, 0.12);
	color: #ffffff;
}

.main-pricing-warning-box {
	margin: 5rem 0;
	position: relative;
	z-index: 1;
	text-align: center;
}

.main-pricing-warning-text {
	color: #d4d4d4;
	font-size: 1.05rem;
	line-height: 1.9;
	max-width: 950px;
	margin: 0 auto;
	padding: 2.5rem;
	background: rgba(26, 26, 26, 0.6);
	border-radius: 20px;
	border: 1px solid rgba(115, 115, 115, 0.22);
}

.main-pricing-example-box {
	margin: 5rem 0;
	position: relative;
	z-index: 1;
	padding: 3.5rem;
	background: rgba(26, 26, 26, 0.7);
	border-radius: 28px;
	border: 2px solid rgba(115, 115, 115, 0.22);
	backdrop-filter: blur(22px);
}

.main-pricing-example-heading {
	font-size: 2.25rem;
	font-weight: 850;
	color: #ffffff;
	margin-bottom: 2.5rem;
	text-align: center;
}

.main-pricing-example-body {
	color: #d4d4d4;
}

.main-pricing-example-intro {
	font-size: 1.15rem;
	line-height: 1.9;
	margin-bottom: 2rem;
}

.main-pricing-example-items {
	list-style: none;
	padding: 0;
	margin: 2rem 0;
}

.main-pricing-example-items li {
	padding: 1.25rem;
	margin-bottom: 1rem;
	background: rgba(115, 115, 115, 0.12);
	border-radius: 16px;
	border-left: 5px solid rgba(115, 115, 115, 0.55);
	transition: all 0.4s ease;
}

.main-pricing-example-items li:hover {
	background: rgba(115, 115, 115, 0.22);
	transform: translateX(8px);
}

.main-pricing-example-summary {
	font-size: 1.3rem;
	line-height: 1.9;
	margin-top: 2.5rem;
	padding-top: 2.5rem;
	border-top: 2px solid rgba(115, 115, 115, 0.22);
}

.main-pricing-action-section {
	text-align: center;
	margin: 6rem 0 4rem;
	position: relative;
	z-index: 1;
}

.main-pricing-action-button {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	padding: 1.625rem 3.5rem;
	background: linear-gradient(135deg, #737373 0%, #525252 100%);
	color: #ffffff;
	border-radius: 18px;
	font-weight: 700;
	font-size: 1.15rem;
	text-decoration: none;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 10px 35px rgba(115, 115, 115, 0.45);
	position: relative;
	overflow: hidden;
}

.main-pricing-action-button::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	transform: translate(-50%, -50%);
	transition: width 0.7s, height 0.7s;
}

.main-pricing-action-button:hover::before {
	width: 450px;
	height: 450px;
}

.main-pricing-action-button:hover {
	transform: translateY(-6px) scale(1.06);
	box-shadow: 0 18px 60px rgba(115, 115, 115, 0.65);
}

.main-pricing-action-button-icon {
	transition: transform 0.5s ease;
}

.main-pricing-action-button:hover .main-pricing-action-button-icon {
	transform: translateX(8px);
}

.main-pricing-action-note {
	color: #d4d4d4;
	font-size: 1rem;
	margin-top: 2rem;
}

@media (max-width: 768px) {
	.main-pricing-plans-container {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	
	.main-pricing-main-title {
		font-size: 3rem;
	}
	
	.main-pricing-plan {
		padding: 2.5rem;
	}
}

/* НОВАЯ TESTIMONIALS СЕКЦИЯ */
.main-testimonials:not(.testimonials-futuristic) {
	position: relative;
	padding: 11rem 1.5rem;
	background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 50%, #000000 100%);
	overflow: hidden;
}

.main-testimonials-bg-layer {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.main-testimonials-radial-gradient {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center, rgba(115, 115, 115, 0.12) 0%, transparent 70%);
	animation: float 22s ease-in-out infinite;
}

.main-testimonials-inner {
	max-width: 90rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.main-testimonials-top-section {
	text-align: center;
	margin-bottom: 6rem;
	color: #ffffff;
}

.main-testimonials-top-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.875rem;
	padding: 1rem 2rem;
	border-radius: 70px;
	background: rgba(115, 115, 115, 0.14);
	border: 2px solid rgba(115, 115, 115, 0.28);
	color: #ffffff;
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 2.5rem;
	backdrop-filter: blur(18px);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-testimonials-top-badge:hover {
	background: rgba(115, 115, 115, 0.28);
	border-color: rgba(115, 115, 115, 0.55);
	transform: translateY(-4px) scale(1.03);
	box-shadow: 0 12px 35px rgba(115, 115, 115, 0.25);
}

.main-testimonials-top-badge-icon {
	color: #d4d4d4;
	transition: transform 0.5s ease;
}

.main-testimonials-top-badge:hover .main-testimonials-top-badge-icon {
	transform: rotate(20deg) scale(1.15);
}

.main-testimonials-main-title {
	font-size: 4rem;
	font-weight: 950;
	line-height: 1.12;
	margin-bottom: 2rem;
	background: linear-gradient(135deg, #ffffff 0%, #d4d4d4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: glow 6s ease-in-out infinite;
}

.main-testimonials-description-area {
	max-width: 900px;
	margin: 0 auto;
}

.main-testimonials-description-text {
	font-size: 1.25rem;
	line-height: 2;
	color: #d4d4d4;
}

.main-testimonials-items-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
	gap: 3rem;
}

.main-testimonial-item {
	position: relative;
	padding: 3.5rem;
	background: rgba(26, 26, 26, 0.75);
	border: 2px solid rgba(115, 115, 115, 0.22);
	border-radius: 32px;
	backdrop-filter: blur(28px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	cursor: pointer;
}

.main-testimonial-item-bg-layer {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.12) 0%, rgba(82, 82, 82, 0.12) 100%);
	opacity: 0;
	transition: opacity 0.6s ease;
}

.main-testimonial-item-glow-layer {
	position: absolute;
	inset: -3px;
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.35), rgba(82, 82, 82, 0.35));
	border-radius: 32px;
	filter: blur(18px);
	opacity: 0;
	transition: opacity 0.6s ease;
	z-index: -1;
}

.main-testimonial-item:hover {
	transform: translateY(-15px) scale(1.03);
	border-color: rgba(115, 115, 115, 0.55);
	box-shadow: 0 30px 75px rgba(115, 115, 115, 0.38);
}

.main-testimonial-item:hover .main-testimonial-item-bg-layer {
	opacity: 1;
}

.main-testimonial-item:hover .main-testimonial-item-glow-layer {
	opacity: 1;
}

.main-testimonial-item-inner {
	position: relative;
	z-index: 1;
}

.main-testimonial-item-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 2.5rem;
}

.main-testimonial-item-icon-wrapper {
	position: relative;
}

.main-testimonial-item-icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.25) 0%, rgba(82, 82, 82, 0.25) 100%);
	border-radius: 18px;
	color: #ffffff;
	border: 2px solid rgba(115, 115, 115, 0.35);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-testimonial-item:hover .main-testimonial-item-icon {
	transform: scale(1.2) rotate(12deg);
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.4) 0%, rgba(82, 82, 82, 0.4) 100%);
	border-color: rgba(115, 115, 115, 0.65);
	box-shadow: 0 12px 35px rgba(115, 115, 115, 0.35);
}

.main-testimonial-item-icon-pulse {
	position: absolute;
	inset: -10px;
	border-radius: 22px;
	background: rgba(115, 115, 115, 0.22);
	animation: pulse 2.5s ease-in-out infinite;
	z-index: -1;
}

.main-testimonial-item-rating {
	display: flex;
	gap: 0.375rem;
}

.main-testimonial-item-star {
	color: #a3a3a3;
	transition: all 0.4s ease;
}

.main-testimonial-item:hover .main-testimonial-item-star {
	color: #d4d4d4;
	transform: scale(1.15);
}

.main-testimonial-item-content {
	margin-bottom: 3rem;
	position: relative;
}

.main-testimonial-item-quote-mark {
	position: absolute;
	top: -1.25rem;
	left: -0.75rem;
	opacity: 0.18;
	z-index: 0;
}

.main-testimonial-item-text {
	font-size: 1.15rem;
	line-height: 1.9;
	color: #d4d4d4;
	position: relative;
	z-index: 1;
	transition: color 0.4s ease;
}

.main-testimonial-item:hover .main-testimonial-item-text {
	color: #e5e5e5;
}

.main-testimonial-item-footer {
	display: flex;
	align-items: center;
	gap: 1.75rem;
	padding-top: 2.5rem;
	border-top: 2px solid rgba(115, 115, 115, 0.22);
}

.main-testimonial-item-avatar-wrapper {
	position: relative;
	flex-shrink: 0;
}

.main-testimonial-item-avatar {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid rgba(115, 115, 115, 0.35);
	transition: all 0.5s ease;
}

.main-testimonial-item-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.main-testimonial-item:hover .main-testimonial-item-avatar {
	border-color: rgba(115, 115, 115, 0.65);
	transform: scale(1.12);
	box-shadow: 0 10px 30px rgba(115, 115, 115, 0.35);
}

.main-testimonial-item-avatar-ring {
	position: absolute;
	inset: -8px;
	border-radius: 50%;
	border: 2px solid rgba(115, 115, 115, 0.22);
	animation: pulse 3.5s ease-in-out infinite;
}

.main-testimonial-item-author {
	flex: 1;
}

.main-testimonial-item-author-name {
	font-size: 1.35rem;
	font-weight: 750;
	color: #ffffff;
	margin-bottom: 0.375rem;
	transition: color 0.4s ease;
}

.main-testimonial-item:hover .main-testimonial-item-author-name {
	color: #e5e5e5;
}

.main-testimonial-item-author-role {
	font-size: 1rem;
	color: #a3a3a3;
	margin-bottom: 0.375rem;
}

.main-testimonial-item-author-company {
	font-size: 0.9rem;
	color: #737373;
}

@media (max-width: 768px) {
	.main-testimonials-items-container {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	
	.main-testimonials-main-title {
		font-size: 3rem;
	}
	
	.main-testimonial-item {
		padding: 2.5rem;
	}
}

/* НОВАЯ SOLUTIONS СЕКЦИЯ */
.main-solutions {
	position: relative;
	padding: 11rem 1.5rem;
	background: linear-gradient(180deg, #000000 0%, #1a1a1a 50%, #0d0d0d 100%);
	overflow: hidden;
}

.main-solutions-bg-layer {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.main-solutions-shapes-container {
	position: absolute;
	inset: 0;
}

.main-solutions-shape {
	position: absolute;
	border-radius: 50%;
	filter: blur(110px);
	animation: float 28s ease-in-out infinite;
}

.main-solutions-shape:nth-child(1) {
	width: 650px;
	height: 650px;
	background: radial-gradient(circle, rgba(115, 115, 115, 0.17) 0%, transparent 70%);
	top: 8%;
	left: 4%;
	animation-delay: 0s;
}

.main-solutions-shape:nth-child(2) {
	width: 550px;
	height: 550px;
	background: radial-gradient(circle, rgba(82, 82, 82, 0.14) 0%, transparent 70%);
	bottom: 12%;
	right: 8%;
	animation-delay: 9s;
}

.main-solutions-shape:nth-child(3) {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(115, 115, 115, 0.12) 0%, transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: 17s;
}

.main-solutions-inner {
	max-width: 90rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.main-solutions-top-section {
	text-align: center;
	margin-bottom: 6rem;
	color: #ffffff;
}

.main-solutions-top-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.875rem;
	padding: 1rem 2rem;
	border-radius: 70px;
	background: rgba(115, 115, 115, 0.14);
	border: 2px solid rgba(115, 115, 115, 0.28);
	color: #ffffff;
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 2.5rem;
	backdrop-filter: blur(18px);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-solutions-top-badge:hover {
	background: rgba(115, 115, 115, 0.28);
	border-color: rgba(115, 115, 115, 0.55);
	transform: translateY(-4px) scale(1.03);
	box-shadow: 0 12px 35px rgba(115, 115, 115, 0.25);
}

.main-solutions-top-badge-icon {
	color: #d4d4d4;
	transition: transform 0.5s ease;
}

.main-solutions-top-badge:hover .main-solutions-top-badge-icon {
	transform: rotate(20deg) scale(1.15);
}

.main-solutions-main-title {
	font-size: 4rem;
	font-weight: 950;
	line-height: 1.12;
	margin-bottom: 2rem;
	background: linear-gradient(135deg, #ffffff 0%, #d4d4d4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: glow 6s ease-in-out infinite;
}

.main-solutions-description-area {
	max-width: 900px;
	margin: 0 auto;
}

.main-solutions-description-text {
	font-size: 1.25rem;
	line-height: 2;
	color: #d4d4d4;
}

.main-solutions-items-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 3rem;
	margin-bottom: 5rem;
}

.main-solution-item {
	position: relative;
	padding: 3.5rem;
	background: rgba(26, 26, 26, 0.75);
	border: 2px solid rgba(115, 115, 115, 0.22);
	border-radius: 32px;
	backdrop-filter: blur(28px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	cursor: pointer;
}

.main-solution-item::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.12) 0%, rgba(82, 82, 82, 0.12) 100%);
	opacity: 0;
	transition: opacity 0.6s ease;
}

.main-solution-item:hover {
	transform: translateY(-15px) scale(1.03);
	border-color: rgba(115, 115, 115, 0.55);
	box-shadow: 0 30px 75px rgba(115, 115, 115, 0.38);
}

.main-solution-item:hover::before {
	opacity: 1;
}

.main-solution-item-inner {
	position: relative;
	z-index: 1;
}

.main-solution-item-icon {
	width: 72px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.25) 0%, rgba(82, 82, 82, 0.25) 100%);
	border-radius: 20px;
	margin-bottom: 2.5rem;
	color: #ffffff;
	border: 2px solid rgba(115, 115, 115, 0.35);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-solution-item:hover .main-solution-item-icon {
	transform: scale(1.2) rotate(12deg);
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.4) 0%, rgba(82, 82, 82, 0.4) 100%);
	border-color: rgba(115, 115, 115, 0.65);
	box-shadow: 0 12px 35px rgba(115, 115, 115, 0.35);
}

.main-solution-item-title {
	font-size: 1.9rem;
	font-weight: 850;
	color: #ffffff;
	margin-bottom: 1.25rem;
	transition: color 0.4s ease;
}

.main-solution-item:hover .main-solution-item-title {
	color: #e5e5e5;
}

.main-solution-item-description {
	font-size: 1.1rem;
	line-height: 1.9;
	color: #d4d4d4;
	margin-bottom: 2.5rem;
	transition: color 0.4s ease;
}

.main-solution-item:hover .main-solution-item-description {
	color: #e5e5e5;
}

.main-solution-item-link {
	display: inline-flex;
	align-items: center;
	gap: 0.875rem;
	color: #ffffff;
	font-weight: 600;
	font-size: 1.05rem;
	text-decoration: none;
	transition: all 0.5s ease;
}

.main-solution-item-link svg {
	transition: transform 0.5s ease;
}

.main-solution-item:hover .main-solution-item-link {
	color: #e5e5e5;
}

.main-solution-item:hover .main-solution-item-link svg {
	transform: translateX(10px);
}

.main-solutions-action-section {
	text-align: center;
	margin-top: 5rem;
	position: relative;
	z-index: 1;
}

.main-solutions-action-button {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	padding: 1.625rem 3.5rem;
	background: linear-gradient(135deg, #737373 0%, #525252 100%);
	color: #ffffff;
	border-radius: 18px;
	font-weight: 700;
	font-size: 1.15rem;
	text-decoration: none;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 10px 35px rgba(115, 115, 115, 0.45);
	position: relative;
	overflow: hidden;
}

.main-solutions-action-button::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	transform: translate(-50%, -50%);
	transition: width 0.7s, height 0.7s;
}

.main-solutions-action-button:hover::before {
	width: 450px;
	height: 450px;
}

.main-solutions-action-button:hover {
	transform: translateY(-6px) scale(1.06);
	box-shadow: 0 18px 60px rgba(115, 115, 115, 0.65);
}

.main-solutions-action-button-icon {
	transition: transform 0.5s ease;
}

.main-solutions-action-button:hover .main-solutions-action-button-icon {
	transform: translateX(8px);
}

@media (max-width: 768px) {
	.main-solutions-items-container {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	
	.main-solutions-main-title {
		font-size: 3rem;
	}
	
	.main-solution-item {
		padding: 2.5rem;
	}
}

/* НОВАЯ FOOTER СЕКЦИЯ */
.main-footer {
	position: relative;
	padding: 7rem 1.5rem 3.5rem;
	background: linear-gradient(180deg, #0d0d0d 0%, #000000 100%);
	overflow: hidden;
	border-top: 2px solid rgba(115, 115, 115, 0.22);
}

.main-footer-bg-layer {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.main-footer-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(115, 115, 115, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(115, 115, 115, 0.04) 1px, transparent 1px);
	background-size: 45px 45px;
	opacity: 0.55;
}

.main-footer-shapes-container {
	position: absolute;
	inset: 0;
}

.main-footer-shape {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	animation: float 35s ease-in-out infinite;
}

.main-footer-shape:nth-child(1) {
	width: 550px;
	height: 550px;
	background: radial-gradient(circle, rgba(115, 115, 115, 0.12) 0%, transparent 70%);
	top: -8%;
	left: -4%;
	animation-delay: 0s;
}

.main-footer-shape:nth-child(2) {
	width: 650px;
	height: 650px;
	background: radial-gradient(circle, rgba(82, 82, 82, 0.1) 0%, transparent 70%);
	bottom: -8%;
	right: -4%;
	animation-delay: 18s;
}

.main-footer-inner {
	max-width: 90rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.main-footer-grid {
	display: grid;
	grid-template-columns: 2.2fr 1fr 1fr 1.6fr;
	gap: 5rem;
	margin-bottom: 5rem;
}

.main-footer-brand {
	color: #ffffff;
}

.main-footer-logo {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	margin-bottom: 2rem;
	text-decoration: none;
	transition: all 0.4s ease;
}

.main-footer-logo:hover {
	transform: translateY(-3px);
}

.main-footer-logo-image {
	width: 52px;
	height: 52px;
	transition: transform 0.4s ease;
}

.main-footer-logo:hover .main-footer-logo-image {
	transform: scale(1.12) rotate(8deg);
}

.main-footer-logo-text {
	font-size: 1.6rem;
	font-weight: 750;
	color: #ffffff;
	transition: color 0.4s ease;
}

.main-footer-logo:hover .main-footer-logo-text {
	color: #e5e5e5;
}

.main-footer-description {
	font-size: 1.05rem;
	line-height: 1.9;
	color: #d4d4d4;
	margin-bottom: 2.5rem;
}

.main-footer-social {
	display: flex;
	gap: 1.25rem;
}

.main-footer-social-link {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(115, 115, 115, 0.12);
	border: 2px solid rgba(115, 115, 115, 0.22);
	border-radius: 14px;
	color: #d4d4d4;
	text-decoration: none;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-footer-social-link:hover {
	background: rgba(115, 115, 115, 0.25);
	border-color: rgba(115, 115, 115, 0.45);
	color: #ffffff;
	transform: translateY(-4px) scale(1.12);
	box-shadow: 0 10px 25px rgba(115, 115, 115, 0.35);
}

.main-footer-column h3 {
	font-size: 1.35rem;
	font-weight: 750;
	color: #ffffff;
	margin-bottom: 2rem;
}

.main-footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.main-footer-links li {
	margin-bottom: 1.25rem;
}

.main-footer-link {
	color: #d4d4d4;
	text-decoration: none;
	font-size: 1.05rem;
	transition: all 0.4s ease;
	display: inline-block;
	position: relative;
}

.main-footer-link::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 0;
	height: 2px;
	background: #d4d4d4;
	transition: width 0.4s ease;
}

.main-footer-link:hover {
	color: #ffffff;
	transform: translateX(8px);
}

.main-footer-link:hover::after {
	width: 100%;
}

.main-footer-legal {
	font-size: 0.95rem;
	line-height: 1.9;
	color: #a3a3a3;
	margin-bottom: 1.25rem;
}

.main-footer-legal-info {
	font-size: 0.9rem;
	line-height: 1.8;
	color: #737373;
}

/* СТИЛИ ДЛЯ КЛАССОВ С ДВОЙНЫМ И ТРОЙНЫМ MAIN-MAIN */
.main-main-footer-shapes-container-container {
	position: absolute;
	inset: 0;
}

.main-main-footer-grid {
	display: grid;
	grid-template-columns: 2.2fr 1fr 1fr 1.6fr;
	gap: 5rem;
	margin-bottom: 5rem;
}

.main-main-footer-brand {
	color: #ffffff;
}

.main-main-footer-logo {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	margin-bottom: 2rem;
	text-decoration: none;
	transition: all 0.4s ease;
}

.main-main-footer-logo:hover {
	transform: translateY(-3px);
}

.main-main-footer-logo-image {
	width: 52px;
	height: 52px;
	transition: transform 0.4s ease;
}

.main-main-footer-logo:hover .main-main-footer-logo-image {
	transform: scale(1.12) rotate(8deg);
}

.main-main-footer-logo-text {
	font-size: 1.6rem;
	font-weight: 750;
	color: #ffffff;
	transition: color 0.4s ease;
}

.main-main-footer-logo:hover .main-main-footer-logo-text {
	color: #e5e5e5;
}

.main-main-footer-description {
	font-size: 1.05rem;
	line-height: 1.9;
	color: #d4d4d4;
	margin-bottom: 2.5rem;
}

.main-main-footer-social {
	display: flex;
	gap: 1.25rem;
}

.main-main-footer-social-link {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(115, 115, 115, 0.12);
	border: 2px solid rgba(115, 115, 115, 0.22);
	border-radius: 14px;
	color: #d4d4d4;
	text-decoration: none;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-main-footer-social-link:hover {
	background: rgba(115, 115, 115, 0.25);
	border-color: rgba(115, 115, 115, 0.45);
	color: #ffffff;
	transform: translateY(-4px) scale(1.12);
	box-shadow: 0 10px 25px rgba(115, 115, 115, 0.35);
}

.main-main-footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.main-main-footer-links li {
	margin-bottom: 1.25rem;
}

.main-main-main-footer-legal-links {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
}

.main-main-footer-legal-link {
	color: #a3a3a3;
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.4s ease;
	position: relative;
}

.main-main-footer-legal-link::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 0;
	height: 1px;
	background: #a3a3a3;
	transition: width 0.4s ease;
}

.main-main-footer-legal-link:hover {
	color: #ffffff;
}

.main-main-footer-legal-link:hover::after {
	width: 100%;
}

.footer-title {
	font-size: 1.35rem;
	font-weight: 750;
	color: #ffffff;
	margin-bottom: 2rem;
}

.main-footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 3.5rem;
	border-top: 2px solid rgba(115, 115, 115, 0.22);
	flex-wrap: wrap;
	gap: 2.5rem;
}

.main-footer-copyright {
	color: #a3a3a3;
	font-size: 1rem;
}

.main-footer-legal-links {
	display: flex;
	gap: 2.5rem;
	flex-wrap: wrap;
}

.main-footer-legal-link {
	color: #a3a3a3;
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.4s ease;
}

.main-footer-legal-link:hover {
	color: #ffffff;
	text-decoration: underline;
}

@media (max-width: 968px) {
	.main-footer-grid,
	.main-main-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
	}
}

@media (max-width: 640px) {
	.main-footer-grid,
	.main-main-footer-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	
	.main-footer-bottom {
		flex-direction: column;
		text-align: center;
	}
	
	.main-footer-legal-links {
		justify-content: center;
	}
}

/* ============================================
   MODERN TECHNOLOGIES SECTION - NEW DESIGN
   ============================================ */

.tech-modern {
	position: relative;
	padding: 8rem 1.5rem;
	background: linear-gradient(180deg, #1a1a1a 0%, #000000 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(115, 115, 115, 0.1) 0%, transparent 100%);
}

.tech-modern-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		radial-gradient(circle at 2px 2px, rgba(115, 115, 115, 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: #ffffff;
}

.tech-modern-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	background: rgba(82, 82, 82, 0.15);
	border: 1px solid rgba(82, 82, 82, 0.3);
	color: #ffffff;
	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, #ffffff 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(115, 115, 115, 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(115, 115, 115, 0.1) 0%, rgba(82, 82, 82, 0.1) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.tech-modern-card:hover {
	transform: translateY(-8px);
	border-color: rgba(115, 115, 115, 0.5);
	box-shadow: 0 20px 40px rgba(115, 115, 115, 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(115, 115, 115, 0.2) 0%, rgba(82, 82, 82, 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(115, 115, 115, 0.3) 0%, rgba(82, 82, 82, 0.3) 100%);
}

.tech-modern-card-content {
	position: relative;
	z-index: 1;
}

.tech-modern-card-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.5rem;
}

.tech-modern-card-subtitle {
	font-size: 0.875rem;
	color: #ffffff;
	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(115, 115, 115, 0.15);
	border: 1px solid rgba(115, 115, 115, 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(115, 115, 115, 0.25);
	border-color: rgba(115, 115, 115, 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, #000000 0%, #1a1a1a 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(115, 115, 115, 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(82, 82, 82, 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: #ffffff;
}

.solutions-modern-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	background: rgba(115, 115, 115, 0.15);
	border: 1px solid rgba(115, 115, 115, 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, #ffffff 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(115, 115, 115, 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%, #ffffff 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(115, 115, 115, 0.5);
	box-shadow: 0 20px 40px rgba(115, 115, 115, 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(115, 115, 115, 0.2) 0%, rgba(82, 82, 82, 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(115, 115, 115, 0.3) 0%, rgba(82, 82, 82, 0.3) 100%);
}

.solution-modern-card-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	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(115, 115, 115, 0.4);
}

.solutions-modern-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(115, 115, 115, 0.6);
}

/* ============================================
   MODERN PRICING SECTION - NEW DESIGN
   ============================================ */

.pricing-modern {
	position: relative;
	padding: 8rem 1.5rem;
	background: linear-gradient(180deg, #1a1a1a 0%, #000000 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(115, 115, 115, 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: #ffffff;
}

.pricing-modern-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	background: rgba(82, 82, 82, 0.15);
	border: 1px solid rgba(82, 82, 82, 0.3);
	color: #ffffff;
	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, #ffffff 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(115, 115, 115, 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(115, 115, 115, 0.1) 0%, rgba(82, 82, 82, 0.1) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.pricing-modern-card:hover {
	transform: translateY(-8px);
	border-color: rgba(115, 115, 115, 0.5);
	box-shadow: 0 20px 40px rgba(115, 115, 115, 0.3);
}

.pricing-modern-card:hover::before {
	opacity: 1;
}

.pricing-modern-card-featured {
	border-color: rgba(115, 115, 115, 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%, #ffffff 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: #ffffff;
	margin-bottom: 0.5rem;
}

.pricing-modern-card-subtitle {
	font-size: 0.875rem;
	color: #ffffff;
}

.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(115, 115, 115, 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: #ffffff;
	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(115, 115, 115, 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(115, 115, 115, 0.1);
	transition: background 0.2s ease;
}

.pricing-modern-comparison-table tbody tr:hover {
	background: rgba(115, 115, 115, 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: #ffffff;
}

.pricing-modern-example {
	margin-top: 3rem;
	padding: 2rem;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(115, 115, 115, 0.1);
	border: 2px solid rgba(115, 115, 115, 0.1);
}

.pricing-modern-example-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	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(115, 115, 115, 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(115, 115, 115, 0.2);
	color: #ffffff;
	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: #d4d4d4;
	font-size: 0.95rem;
	font-style: italic;
}

.pricing-modern-cta {
	text-align: center;
	margin-top: 3rem;
}

.pricing-modern-cta-note {
	margin-top: 1rem;
	color: #d4d4d4;
	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(115, 115, 115, 0.4);
}

.pricing-modern-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(115, 115, 115, 0.6);
}

/* ============================================
   MODERN TESTIMONIALS SECTION - NEW DESIGN
   ============================================ */

.testimonials-modern {
	position: relative;
	padding: 8rem 1.5rem;
	background: linear-gradient(180deg, #000000 0%, #1a1a1a 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(115, 115, 115, 0.1) 0%, rgba(82, 82, 82, 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: #ffffff;
}

.testimonials-modern-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	background: rgba(115, 115, 115, 0.15);
	border: 1px solid rgba(115, 115, 115, 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, #ffffff 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(82, 82, 82, 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(82, 82, 82, 0.1) 0%, rgba(115, 115, 115, 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(82, 82, 82, 0.4);
	box-shadow: 0 20px 60px rgba(82, 82, 82, 0.2), 0 0 0 1px rgba(82, 82, 82, 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(82, 82, 82, 0.15) 0%, rgba(115, 115, 115, 0.15) 100%);
	border-radius: 16px;
	border: 1px solid rgba(82, 82, 82, 0.2);
	color: #ffffff;
	z-index: 2;
	transition: all 0.4s ease;
}

.reference-card:hover .reference-card-icon {
	background: linear-gradient(135deg, rgba(82, 82, 82, 0.25) 0%, rgba(115, 115, 115, 0.25) 100%);
	border-color: rgba(82, 82, 82, 0.4);
	transform: scale(1.05) rotate(5deg);
}

.reference-card-icon-pulse {
	position: absolute;
	inset: -4px;
	background: radial-gradient(circle, rgba(82, 82, 82, 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(82, 82, 82, 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(82, 82, 82, 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(82, 82, 82, 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(82, 82, 82, 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(82, 82, 82, 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(82, 82, 82, 0.4);
}

.reference-card-author {
	flex-grow: 1;
	min-width: 0;
}

.reference-card-author-name {
	font-size: 1.125rem;
	font-weight: 700;
	color: #ffffff;
	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: #d4d4d4;
	margin: 0 0 0.25rem 0;
	line-height: 1.4;
	font-weight: 500;
}

.reference-card-author-company {
	font-size: 0.8125rem;
	color: #e5e5e5;
	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, #1a1a1a 0%, #000000 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(82, 82, 82, 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(82, 82, 82, 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: #ffffff;
}

.benefits-modern-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	background: rgba(115, 115, 115, 0.15);
	border: 1px solid rgba(115, 115, 115, 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, #ffffff 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(82, 82, 82, 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, #ffffff 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(82, 82, 82, 0.4);
	box-shadow: 0 20px 50px rgba(82, 82, 82, 0.25), 0 0 0 1px rgba(82, 82, 82, 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, #ffffff 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(82, 82, 82, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
	border: 2px solid rgba(82, 82, 82, 0.2);
	border-radius: 16px;
	margin-bottom: 1.5rem;
	color: #ffffff;
	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(82, 82, 82, 0.2) 0%, rgba(30, 64, 175, 0.2) 100%);
	border-color: rgba(82, 82, 82, 0.4);
	box-shadow: 0 8px 20px rgba(82, 82, 82, 0.3);
}

.benefit-modern-item-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	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, #000000 0%, #1a1a1a 50%, #0d0d0d 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(115, 115, 115, 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(82, 82, 82, 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: #ffffff;
	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(115, 115, 115, 0.15);
	border: 1px solid rgba(115, 115, 115, 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, #ffffff 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, #1a1a1a 0%, #000000 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(115, 115, 115, 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(115, 115, 115, 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%, #ffffff 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(115, 115, 115, 0.5);
	box-shadow: 0 20px 40px rgba(115, 115, 115, 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(115, 115, 115, 0.2) 0%, rgba(82, 82, 82, 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(115, 115, 115, 0.3) 0%, rgba(82, 82, 82, 0.3) 100%);
}

.about-modern-feature-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	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, #000000 0%, #1a1a1a 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(115, 115, 115, 0.1) 0%, rgba(82, 82, 82, 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(115, 115, 115, 0.2) 0%, rgba(82, 82, 82, 0.2) 100%);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(115, 115, 115, 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: #ffffff;
}

.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(115, 115, 115, 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(115, 115, 115, 0.5);
	box-shadow: 0 10px 30px rgba(115, 115, 115, 0.3);
}

.about-modern-info-card-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.2) 0%, rgba(82, 82, 82, 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: #ffffff;
	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(115, 115, 115, 0.4);
}

.about-modern-info-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(115, 115, 115, 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, #000000 0%, #1a1a1a 50%, #0d0d0d 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(115, 115, 115, 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(82, 82, 82, 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: #ffffff;
	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(115, 115, 115, 0.15);
	border: 1px solid rgba(115, 115, 115, 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, #ffffff 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, #1a1a1a 0%, #000000 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(115, 115, 115, 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(115, 115, 115, 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%, #ffffff 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(115, 115, 115, 0.5);
	box-shadow: 0 20px 40px rgba(115, 115, 115, 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(115, 115, 115, 0.2) 0%, rgba(82, 82, 82, 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(115, 115, 115, 0.3) 0%, rgba(82, 82, 82, 0.3) 100%);
}

.contact-modern-info-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	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, #000000 0%, #1a1a1a 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(115, 115, 115, 0.1) 0%, rgba(82, 82, 82, 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(115, 115, 115, 0.2);
	border-radius: 24px;
	backdrop-filter: blur(20px);
	padding: 3rem;
}

.contact-modern-form-header {
	text-align: center;
	margin-bottom: 3rem;
	color: #ffffff;
}

.contact-modern-form-title {
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #ffffff 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: #ffffff;
}

.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(115, 115, 115, 0.3);
	border-radius: 12px;
	color: #ffffff;
	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(115, 115, 115, 0.6);
	box-shadow: 0 0 0 3px rgba(115, 115, 115, 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(115, 115, 115, 0.4);
}

.contact-modern-form-submit:hover:not(:disabled) {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(115, 115, 115, 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(115, 115, 115, 0.1);
	border: 1px solid rgba(115, 115, 115, 0.3);
	border-radius: 12px;
	color: #d4d4d4;
	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, #000000 0%, #1a1a1a 100%);
	overflow: hidden;
}

.process-modern-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.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(115, 115, 115, 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(82, 82, 82, 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(115, 115, 115, 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: #ffffff;
}

.process-modern-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	background: rgba(115, 115, 115, 0.15);
	border: 1px solid rgba(115, 115, 115, 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, #ffffff 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(115, 115, 115, 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(115, 115, 115, 0.6);
	box-shadow: 0 10px 30px rgba(115, 115, 115, 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(115, 115, 115, 0.5);
	z-index: 3;
}

.process-modern-item-content {
	flex: 1;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(115, 115, 115, 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(115, 115, 115, 0.5);
	box-shadow: 0 10px 30px rgba(115, 115, 115, 0.3);
}

.process-modern-item-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	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(115, 115, 115, 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(115, 115, 115, 0.4);
}

.process-modern-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(115, 115, 115, 0.6);
}

/* ============================================
   FOOTER - MODERN DESIGN
   ============================================ */

.footer-modern {
	position: relative;
	padding: 5rem 1.5rem 2rem;
	background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
	overflow: hidden;
	border-top: 1px solid rgba(115, 115, 115, 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(115, 115, 115, 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(115, 115, 115, 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(82, 82, 82, 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: #ffffff;
}

.footer-modern-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
	text-decoration: none;
	color: #ffffff;
}

.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(115, 115, 115, 0.2);
	border-radius: 10px;
	color: #6b21a8;
	transition: all 0.3s ease;
	text-decoration: none;
}

.footer-modern-social-link:hover {
	background: rgba(115, 115, 115, 0.2);
	border-color: rgba(115, 115, 115, 0.4);
	transform: translateY(-2px);
}

.footer-modern-column {
	color: #ffffff;
}

.footer-modern-title {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: #ffffff;
}

.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: #d4d4d4;
}

.footer-modern-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(115, 115, 115, 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(115, 115, 115, 0.1) 0%, rgba(82, 82, 82, 0.1) 100%);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(115, 115, 115, 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, #000000 0%, #1a1a1a 50%, #0d0d0d 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(115, 115, 115, 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(82, 82, 82, 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(115, 115, 115, 0.1) 0%, rgba(82, 82, 82, 0.1) 100%);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(115, 115, 115, 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: #ffffff;
	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(115, 115, 115, 0.15);
	border: 1px solid rgba(115, 115, 115, 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, #ffffff 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, #1a1a1a 0%, #000000 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(115, 115, 115, 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(115, 115, 115, 0.1) 0%, rgba(82, 82, 82, 0.1) 100%);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(115, 115, 115, 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(115, 115, 115, 0.2);
	border-radius: 16px;
	backdrop-filter: blur(20px);
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-modern-item:hover {
	border-color: rgba(115, 115, 115, 0.4);
}

.faq-modern-question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem;
	background: transparent;
	border: none;
	color: #ffffff;
	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(115, 115, 115, 0.2);
	border-radius: 20px;
	backdrop-filter: blur(20px);
}

.faq-modern-cta-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: #ffffff;
	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(115, 115, 115, 0.4);
}

.faq-modern-cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(115, 115, 115, 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, #000000 0%, #1a1a1a 50%, #0d0d0d 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(115, 115, 115, 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(82, 82, 82, 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(115, 115, 115, 0.1) 0%, rgba(82, 82, 82, 0.1) 100%);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(115, 115, 115, 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: #ffffff;
	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(115, 115, 115, 0.15);
	border: 1px solid rgba(115, 115, 115, 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, #ffffff 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, #1a1a1a 0%, #000000 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(115, 115, 115, 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(115, 115, 115, 0.1) 0%, rgba(82, 82, 82, 0.1) 100%);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(115, 115, 115, 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(115, 115, 115, 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%, #ffffff 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(115, 115, 115, 0.5);
	box-shadow: 0 20px 40px rgba(115, 115, 115, 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(115, 115, 115, 0.2) 0%, rgba(82, 82, 82, 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(115, 115, 115, 0.3) 0%, rgba(82, 82, 82, 0.3) 100%);
}

.service-modern-card-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	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(115, 115, 115, 0.2);
	border-radius: 20px;
	backdrop-filter: blur(20px);
}

.service-modern-cta-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: #ffffff;
	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(115, 115, 115, 0.4);
}

.service-modern-cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(115, 115, 115, 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
   ============================================ */

/* ============================================
   LEFT SIDEBAR
   ============================================ */

.sidebar-left {
	position: fixed;
	left: 0;
	top: 0;
	width: 280px;
	height: 100vh;
	z-index: 1000;
	background: rgba(26, 26, 26, 0.95);
	backdrop-filter: blur(20px) saturate(180%);
	border-right: 1px solid rgba(115, 115, 115, 0.2);
	transition: width 0.3s ease, transform 0.3s ease;
	overflow-y: auto;
	overflow-x: hidden;
}

.sidebar-left.collapsed {
	width: 80px;
}

.sidebar-left.collapsed .sidebar-left-logo-text,
.sidebar-left.collapsed .sidebar-left-nav-link-text {
	opacity: 0;
	width: 0;
	overflow: hidden;
}

.sidebar-left-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.sidebar-left-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(115, 115, 115, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(115, 115, 115, 0.05) 1px, transparent 1px);
	background-size: 20px 20px;
	opacity: 0.3;
}

.sidebar-left-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.4;
	animation: float-orb 15s ease-in-out infinite;
}

.sidebar-left-orb-1 {
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(115, 115, 115, 0.15) 0%, transparent 70%);
	top: -50%;
	left: -5%;
	animation-delay: 0s;
}

.sidebar-left-orb-2 {
	width: 150px;
	height: 150px;
	background: radial-gradient(circle, rgba(82, 82, 82, 0.12) 0%, transparent 70%);
	bottom: -30%;
	right: -5%;
	animation-delay: 5s;
}

.sidebar-left-container {
	position: relative;
	z-index: 1;
	padding: 2rem 1.5rem;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.sidebar-left-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	transition: transform 0.3s ease;
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(115, 115, 115, 0.2);
}

.sidebar-left-logo:hover {
	transform: scale(1.05);
}

.sidebar-left-logo-wrapper {
	position: relative;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.sidebar-left-logo-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 12px;
	position: relative;
	z-index: 1;
}

.sidebar-left-logo-glow {
	position: absolute;
	inset: -4px;
	background: radial-gradient(circle, rgba(115, 115, 115, 0.3), transparent);
	border-radius: 12px;
	filter: blur(8px);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.sidebar-left-logo:hover .sidebar-left-logo-glow {
	opacity: 1;
}

.sidebar-left-logo-text {
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
	white-space: nowrap;
	transition: opacity 0.3s ease, width 0.3s ease;
}

.sidebar-left-nav {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	flex: 1;
}

.sidebar-left-nav-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.875rem 1rem;
	border-radius: 12px;
	text-decoration: none;
	color: #d4d4d4;
	transition: all 0.3s ease;
	position: relative;
	white-space: nowrap;
}

.sidebar-left-nav-link svg {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	transition: transform 0.3s ease;
}

.sidebar-left-nav-link-text {
	transition: opacity 0.3s ease, width 0.3s ease;
}

.sidebar-left-nav-link:hover {
	background: rgba(115, 115, 115, 0.15);
	color: #ffffff;
	transform: translateX(4px);
}

.sidebar-left-nav-link:hover svg {
	transform: scale(1.1);
}

.sidebar-left-nav-link-cta {
	background: rgba(115, 115, 115, 0.1);
	border: 1px solid rgba(115, 115, 115, 0.2);
	margin-top: 1rem;
}

.sidebar-left-nav-link-cta:hover {
	background: rgba(115, 115, 115, 0.2);
	border-color: rgba(115, 115, 115, 0.4);
}

.sidebar-left-toggle {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 40px;
	background: rgba(115, 115, 115, 0.1);
	border: 1px solid rgba(115, 115, 115, 0.2);
	border-radius: 10px;
	color: #ffffff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.sidebar-left-toggle:hover {
	background: rgba(115, 115, 115, 0.2);
	border-color: rgba(115, 115, 115, 0.4);
}

.sidebar-left.collapsed .sidebar-left-toggle svg {
	transform: rotate(180deg);
}

@media (max-width: 1024px) {
	.sidebar-left {
		transform: translateX(-100%);
	}
	
	.sidebar-left.mobile-open {
		transform: translateX(0);
	}
}

/* Mobile Menu Styles */
.sidebar-left-mobile {
	display: none;
}

@media (max-width: 1024px) {
	.sidebar-left-mobile {
		display: block;
		position: fixed;
		inset: 0;
		z-index: 1002;
		background: rgba(0, 0, 0, 0.8);
		backdrop-filter: blur(10px);
	}
}

.header-modern {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(82, 82, 82, 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;
	display: none;
}

.header-modern.scrolled {
	background: rgba(82, 82, 82, 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(115, 115, 115, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(115, 115, 115, 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(115, 115, 115, 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(82, 82, 82, 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(115, 115, 115, 0.4), rgba(82, 82, 82, 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: #d4d4d4;
	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(82, 82, 82, 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: #d4d4d4;
	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;
	}
}

/* ============================================
   ФУТУРИСТИЧНАЯ СЕКЦИЯ PROCES - ПОЛНЫЙ РЕДИЗАЙН
   УДАЛЯЕМ ВСЕ СТАРЫЕ СТИЛИ И ПЕРЕПИСЫВАЕМ С НУЛЯ
   ============================================ */

/* ПЕРЕОПРЕДЕЛЯЕМ СТАРЫЕ СТИЛИ ДЛЯ НОВЫХ КЛАССОВ */
.main-pricing.process-futuristic,
#proces.main-pricing.process-futuristic {
	display: block !important;
}

.main-testimonials.testimonials-futuristic,
#reference.main-testimonials.testimonials-futuristic {
	display: block !important;
}

@keyframes gridMove {
	0% { transform: translate(0, 0); }
	100% { transform: translate(50px, 50px); }
}

@keyframes orbFloat {
	0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.6; }
	33% { transform: translate(40px, -40px) scale(1.15) rotate(120deg); opacity: 0.8; }
	66% { transform: translate(-30px, 30px) scale(0.9) rotate(240deg); opacity: 0.7; }
}

@keyframes glitch {
	0%, 100% { transform: translate(0); filter: hue-rotate(0deg); }
	20% { transform: translate(-2px, 2px); filter: hue-rotate(90deg); }
	40% { transform: translate(-2px, -2px); filter: hue-rotate(180deg); }
	60% { transform: translate(2px, 2px); filter: hue-rotate(270deg); }
	80% { transform: translate(2px, -2px); filter: hue-rotate(360deg); }
}

@keyframes scanLine {
	0% { transform: translateY(-100%); opacity: 0; }
	50% { opacity: 1; }
	100% { transform: translateY(100vh); opacity: 0; }
}

@keyframes hologram {
	0%, 100% { 
		box-shadow: 
			0 0 5px rgba(115, 115, 115, 0.5),
			0 0 10px rgba(115, 115, 115, 0.3),
			0 0 15px rgba(115, 115, 115, 0.2),
			inset 0 0 5px rgba(115, 115, 115, 0.1);
		filter: hue-rotate(0deg);
	}
	50% { 
		box-shadow: 
			0 0 20px rgba(115, 115, 115, 0.8),
			0 0 40px rgba(115, 115, 115, 0.6),
			0 0 60px rgba(115, 115, 115, 0.4),
			inset 0 0 20px rgba(115, 115, 115, 0.3);
		filter: hue-rotate(180deg);
	}
}

@keyframes borderScan {
	0% { background-position: 0% 0%; }
	100% { background-position: 200% 200%; }
}

@keyframes particleFloat {
	0% { transform: translateY(0) translateX(0) scale(0); opacity: 0; }
	10% { opacity: 1; }
	90% { opacity: 1; }
	100% { transform: translateY(-100vh) translateX(50px) scale(1); opacity: 0; }
}

@keyframes iconRotate3d {
	0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1); }
	25% { transform: rotateX(90deg) rotateY(0deg) rotateZ(0deg) scale(1.1); }
	50% { transform: rotateX(90deg) rotateY(90deg) rotateZ(0deg) scale(1.2); }
	75% { transform: rotateX(0deg) rotateY(90deg) rotateZ(0deg) scale(1.1); }
	100% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1); }
}

@keyframes neonPulse {
	0%, 100% { 
		text-shadow: 
			0 0 5px rgba(115, 115, 115, 0.5),
			0 0 10px rgba(115, 115, 115, 0.3),
			0 0 15px rgba(115, 115, 115, 0.2);
	}
	50% { 
		text-shadow: 
			0 0 10px rgba(115, 115, 115, 0.8),
			0 0 20px rgba(115, 115, 115, 0.6),
			0 0 30px rgba(115, 115, 115, 0.4),
			0 0 40px rgba(115, 115, 115, 0.2);
	}
}

#proces.process-futuristic,
section.process-futuristic {
	position: relative !important;
	padding: 12rem 1.5rem !important;
	background: #000000 !important;
	overflow: hidden !important;
	perspective: 1000px;
}

#proces.process-futuristic::before {
	content: '';
	position: absolute;
	inset: 0;
	background: 
		radial-gradient(circle at 20% 30%, rgba(115, 115, 115, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(82, 82, 82, 0.12) 0%, transparent 50%);
	animation: glitch 8s ease-in-out infinite;
	pointer-events: none;
	z-index: 1;
}

#proces.process-futuristic::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(115, 115, 115, 0.8), transparent);
	animation: scanLine 3s linear infinite;
	z-index: 2;
}

#proces.process-futuristic .process-futuristic-bg,
.process-futuristic-bg {
	position: absolute !important;
	inset: 0 !important;
	z-index: 0 !important;
}

.process-futuristic-grid {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(115, 115, 115, 0.15) 1px, transparent 1px),
		linear-gradient(90deg, rgba(115, 115, 115, 0.15) 1px, transparent 1px);
	background-size: 50px 50px;
	animation: gridMove 20s linear infinite;
	opacity: 0.4;
}

.process-futuristic-grid::before {
	content: '';
	position: absolute;
	inset: 0;
	background: 
		repeating-linear-gradient(
			0deg,
			transparent,
			transparent 2px,
			rgba(115, 115, 115, 0.03) 2px,
			rgba(115, 115, 115, 0.03) 4px
		);
	animation: borderScan 10s linear infinite;
}

.process-futuristic-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	animation: orbFloat 12s ease-in-out infinite;
	box-shadow: 
		0 0 60px rgba(115, 115, 115, 0.6),
		inset 0 0 60px rgba(115, 115, 115, 0.3);
}

.process-futuristic-orb::before {
	content: '';
	position: absolute;
	inset: -20px;
	border-radius: 50%;
	border: 2px solid rgba(115, 115, 115, 0.3);
	animation: hologram 4s ease-in-out infinite;
}

.process-futuristic-orb-1 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(115, 115, 115, 0.5) 0%, rgba(115, 115, 115, 0.2) 40%, transparent 70%);
	top: 5%;
	left: 5%;
	animation-delay: 0s;
}

.process-futuristic-orb-2 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(82, 82, 82, 0.4) 0%, rgba(82, 82, 82, 0.15) 40%, transparent 70%);
	bottom: 15%;
	right: 10%;
	animation-delay: 4s;
}

.process-futuristic-orb-3 {
	width: 350px;
	height: 350px;
	background: radial-gradient(circle, rgba(115, 115, 115, 0.35) 0%, rgba(115, 115, 115, 0.1) 40%, transparent 70%);
	top: 45%;
	right: 25%;
	animation-delay: 8s;
}

.process-futuristic-container {
	max-width: 90rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.process-futuristic-header {
	text-align: center;
	margin-bottom: 6rem;
}

.process-futuristic-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.875rem 1.75rem;
	border-radius: 50px;
	background: rgba(26, 26, 26, 0.9);
	border: 2px solid rgba(115, 115, 115, 0.4);
	backdrop-filter: blur(20px);
	position: relative;
	margin-bottom: 2rem;
	transition: all 0.4s ease;
	animation: hologram 3s ease-in-out infinite;
	transform-style: preserve-3d;
}

.process-futuristic-badge::before {
	content: '';
	position: absolute;
	inset: -3px;
	border-radius: 50px;
	background: linear-gradient(45deg, rgba(115, 115, 115, 0.6), rgba(82, 82, 82, 0.6), rgba(115, 115, 115, 0.6));
	background-size: 200% 200%;
	animation: borderScan 3s linear infinite;
	z-index: -1;
	filter: blur(8px);
	opacity: 0.6;
}

.process-futuristic-badge:hover {
	border-color: rgba(115, 115, 115, 0.9);
	transform: translateY(-3px) scale(1.05);
	box-shadow: 
		0 15px 40px rgba(115, 115, 115, 0.4),
		0 0 20px rgba(115, 115, 115, 0.3),
		inset 0 0 20px rgba(115, 115, 115, 0.1);
	animation: glitch 0.3s ease-in-out;
}

.process-futuristic-badge-glow {
	position: absolute;
	inset: -4px;
	border-radius: 50px;
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.6), rgba(82, 82, 82, 0.6));
	filter: blur(15px);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -2;
	animation: hologram 2s ease-in-out infinite;
}

.process-futuristic-badge:hover .process-futuristic-badge-glow {
	opacity: 0.8;
}

.process-futuristic-badge-icon {
	color: #ffffff;
	display: flex;
	align-items: center;
}

.process-futuristic-badge-text {
	color: #ffffff;
	font-size: 0.95rem;
	font-weight: 600;
}

.process-futuristic-title {
	font-size: 4.5rem;
	font-weight: 950;
	line-height: 1.1;
	margin-bottom: 2rem;
	color: #ffffff;
	position: relative;
	animation: neonPulse 3s ease-in-out infinite;
	transform-style: preserve-3d;
}

.process-futuristic-title::before {
	content: attr(data-text);
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #ffffff 0%, #d4d4d4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: glitch 4s ease-in-out infinite;
	opacity: 0.8;
	z-index: -1;
}

.process-futuristic-title-line {
	display: block;
	background: linear-gradient(135deg, #ffffff 0%, #d4d4d4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
	text-shadow: 
		0 0 10px rgba(115, 115, 115, 0.5),
		0 0 20px rgba(115, 115, 115, 0.3);
}

.process-futuristic-description {
	font-size: 1.25rem;
	line-height: 1.8;
	color: #d4d4d4;
	max-width: 800px;
	margin: 0 auto;
}

.process-futuristic-visual {
	margin: 5rem 0;
	text-align: center;
}

.process-futuristic-visual-frame {
	display: inline-block;
	position: relative;
	border-radius: 24px;
	overflow: visible;
	padding: 6px;
	background: 
		linear-gradient(135deg, rgba(115, 115, 115, 0.4), rgba(82, 82, 82, 0.4)),
		linear-gradient(45deg, transparent 30%, rgba(115, 115, 115, 0.1) 50%, transparent 70%);
	background-size: 100% 100%, 200% 200%;
	animation: hologram 4s ease-in-out infinite, borderScan 5s linear infinite;
	transform-style: preserve-3d;
	box-shadow: 
		0 0 30px rgba(115, 115, 115, 0.4),
		inset 0 0 30px rgba(115, 115, 115, 0.2);
}

.process-futuristic-visual-frame::before {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 24px;
	background: linear-gradient(45deg, rgba(115, 115, 115, 0.6), rgba(82, 82, 82, 0.6), rgba(115, 115, 115, 0.6));
	background-size: 200% 200%;
	animation: borderScan 3s linear infinite;
	z-index: -1;
	filter: blur(10px);
	opacity: 0.7;
}

.process-futuristic-visual-frame::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(115, 115, 115, 0.9), transparent);
	animation: scanLine 2s linear infinite;
	z-index: 10;
}

.process-futuristic-visual-glow {
	position: absolute;
	inset: -8px;
	background: radial-gradient(circle, rgba(115, 115, 115, 0.6), rgba(82, 82, 82, 0.4), transparent);
	filter: blur(30px);
	opacity: 0.6;
	z-index: -2;
	animation: hologram 3s ease-in-out infinite;
}

.process-futuristic-visual-image-wrapper {
	border-radius: 20px;
	overflow: hidden;
	background: #1a1a1a;
}

.process-futuristic-visual-image {
	width: 100%;
	height: auto;
	max-width: 800px;
	display: block;
	opacity: 0.9;
	filter: grayscale(20%);
	transition: all 0.6s ease;
}

.process-futuristic-visual-frame:hover .process-futuristic-visual-image {
	opacity: 1;
	filter: grayscale(0%);
	transform: scale(1.02);
}

.process-futuristic-visual-accent {
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(115, 115, 115, 0.3), transparent);
	filter: blur(30px);
	animation: orbFloat 6s ease-in-out infinite;
}

.process-futuristic-visual-accent-1 {
	width: 200px;
	height: 200px;
	top: -50px;
	left: -50px;
}

.process-futuristic-visual-accent-2 {
	width: 150px;
	height: 150px;
	bottom: -30px;
	right: -30px;
	animation-delay: 3s;
}

.process-futuristic-plans {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 3rem;
	margin-bottom: 5rem;
}

.process-futuristic-plan {
	position: relative;
	padding: 3rem;
	background: rgba(26, 26, 26, 0.7);
	border-radius: 24px;
	backdrop-filter: blur(20px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: visible;
	transform-style: preserve-3d;
	animation: hologram 5s ease-in-out infinite;
}

.process-futuristic-plan::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(115, 115, 115, 0.8), transparent);
	animation: scanLine 4s linear infinite;
	z-index: 10;
}

.process-futuristic-plan-border {
	position: absolute;
	inset: 0;
	border-radius: 24px;
	padding: 3px;
	background: 
		linear-gradient(45deg, rgba(115, 115, 115, 0.5), rgba(82, 82, 82, 0.5), rgba(115, 115, 115, 0.5)),
		linear-gradient(135deg, rgba(115, 115, 115, 0.3), rgba(82, 82, 82, 0.3));
	background-size: 200% 200%, 100% 100%;
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
	opacity: 0.6;
	transition: opacity 0.5s ease;
	animation: borderScan 4s linear infinite, hologram 3s ease-in-out infinite;
}

.process-futuristic-plan-glow {
	position: absolute;
	inset: -6px;
	border-radius: 24px;
	background: radial-gradient(circle, rgba(115, 115, 115, 0.5), rgba(82, 82, 82, 0.3), transparent);
	filter: blur(25px);
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: -1;
	animation: hologram 4s ease-in-out infinite;
}

.process-futuristic-plan:hover {
	transform: translateY(-15px) scale(1.03) rotateX(5deg);
	animation: glitch 0.5s ease-in-out;
}

.process-futuristic-plan:hover .process-futuristic-plan-border {
	opacity: 1;
	animation: borderScan 2s linear infinite, hologram 2s ease-in-out infinite;
}

.process-futuristic-plan:hover .process-futuristic-plan-glow {
	opacity: 0.8;
}

.process-futuristic-plan-featured {
	border: 2px solid rgba(115, 115, 115, 0.5);
}

.process-futuristic-plan-featured .process-futuristic-plan-border {
	opacity: 0.8;
}

.process-futuristic-plan-badge {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	padding: 0.5rem 1rem;
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.8), rgba(82, 82, 82, 0.8));
	border-radius: 20px;
	color: #ffffff;
	font-size: 0.875rem;
	font-weight: 600;
	z-index: 10;
}

.process-futuristic-plan-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.process-futuristic-plan-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(115, 115, 115, 0.15);
	border-radius: 16px;
	border: 2px solid rgba(115, 115, 115, 0.3);
	color: #ffffff;
	transition: all 0.4s ease;
	position: relative;
	transform-style: preserve-3d;
	animation: hologram 4s ease-in-out infinite;
}

.process-futuristic-plan-icon::before {
	content: '';
	position: absolute;
	inset: -3px;
	border-radius: 16px;
	background: linear-gradient(45deg, rgba(115, 115, 115, 0.4), rgba(82, 82, 82, 0.4));
	filter: blur(8px);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
	animation: borderScan 3s linear infinite;
}

.process-futuristic-plan:hover .process-futuristic-plan-icon {
	background: rgba(115, 115, 115, 0.25);
	border-color: rgba(115, 115, 115, 0.6);
	transform: scale(1.15);
	animation: iconRotate3d 3s ease-in-out infinite, hologram 2s ease-in-out infinite;
	box-shadow: 
		0 0 20px rgba(115, 115, 115, 0.6),
		inset 0 0 20px rgba(115, 115, 115, 0.2);
}

.process-futuristic-plan:hover .process-futuristic-plan-icon::before {
	opacity: 0.7;
}

.process-futuristic-plan-name {
	font-size: 2rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 0.5rem;
}

.process-futuristic-plan-type {
	font-size: 1rem;
	color: #d4d4d4;
}

.process-futuristic-plan-body {
	margin-bottom: 2rem;
}

.process-futuristic-plan-features {
	list-style: none;
	padding: 0;
	margin: 0;
}

.process-futuristic-plan-feature {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.875rem 0;
	color: #d4d4d4;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.process-futuristic-plan-feature:hover {
	color: #ffffff;
	padding-left: 0.5rem;
}

.process-futuristic-plan-feature-icon {
	color: rgba(115, 115, 115, 0.8);
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.process-futuristic-plan-feature:hover .process-futuristic-plan-feature-icon {
	color: #ffffff;
	transform: scale(1.2);
}

.process-futuristic-plan-footer {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(115, 115, 115, 0.2);
}

.process-futuristic-plan-price {
	font-size: 1.75rem;
	font-weight: 700;
	color: #ffffff;
}

.process-futuristic-cta {
	text-align: center;
	margin-top: 5rem;
}

.process-futuristic-cta-button {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1.25rem 2.5rem;
	background: rgba(26, 26, 26, 0.9);
	border: 2px solid rgba(115, 115, 115, 0.5);
	border-radius: 50px;
	color: #ffffff;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	position: relative;
	overflow: visible;
	transition: all 0.4s ease;
	backdrop-filter: blur(20px);
	animation: hologram 4s ease-in-out infinite;
	transform-style: preserve-3d;
}

.process-futuristic-cta-button::before {
	content: '';
	position: absolute;
	inset: -3px;
	border-radius: 50px;
	background: linear-gradient(45deg, rgba(115, 115, 115, 0.6), rgba(82, 82, 82, 0.6), rgba(115, 115, 115, 0.6));
	background-size: 200% 200%;
	animation: borderScan 3s linear infinite;
	z-index: -1;
	filter: blur(10px);
	opacity: 0.6;
}

.process-futuristic-cta-button::after {
	content: '';
	position: absolute;
	top: 50%;
	left: -100%;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(115, 115, 115, 0.9), transparent);
	transform: translateY(-50%);
	transition: left 0.6s ease;
}

.process-futuristic-cta-button-glow {
	position: absolute;
	inset: -4px;
	border-radius: 50px;
	background: radial-gradient(circle, rgba(115, 115, 115, 0.6), rgba(82, 82, 82, 0.4), transparent);
	filter: blur(20px);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -2;
	animation: hologram 3s ease-in-out infinite;
}

.process-futuristic-cta-button:hover {
	border-color: rgba(115, 115, 115, 0.9);
	transform: translateY(-5px) scale(1.05);
	box-shadow: 
		0 20px 50px rgba(115, 115, 115, 0.5),
		0 0 30px rgba(115, 115, 115, 0.4),
		inset 0 0 30px rgba(115, 115, 115, 0.2);
	animation: glitch 0.4s ease-in-out;
}

.process-futuristic-cta-button:hover::after {
	left: 100%;
}

.process-futuristic-cta-button:hover .process-futuristic-cta-button-glow {
	opacity: 0.9;
}

.process-futuristic-cta-button-icon {
	transition: transform 0.4s ease;
}

.process-futuristic-cta-button:hover .process-futuristic-cta-button-icon {
	transform: translateX(5px);
}

.process-futuristic-cta-note {
	color: #d4d4d4;
	font-size: 0.95rem;
	margin-top: 1.5rem;
}

@media (max-width: 768px) {
	.process-futuristic {
		padding: 8rem 1.5rem;
	}

	.process-futuristic-title {
		font-size: 3rem;
	}

	.process-futuristic-plans {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.process-futuristic-plan {
		padding: 2rem;
	}
}

/* ============================================
   ФУТУРИСТИЧНАЯ СЕКЦИЯ REFERENCE
   ============================================ */

#reference.testimonials-futuristic,
section.testimonials-futuristic {
	position: relative !important;
	padding: 12rem 1.5rem !important;
	background: #000000 !important;
	overflow: hidden !important;
	perspective: 1000px;
}

#reference.testimonials-futuristic::before {
	content: '';
	position: absolute;
	inset: 0;
	background: 
		radial-gradient(circle at 30% 20%, rgba(115, 115, 115, 0.18) 0%, transparent 50%),
		radial-gradient(circle at 70% 80%, rgba(82, 82, 82, 0.15) 0%, transparent 50%);
	animation: glitch 10s ease-in-out infinite;
	pointer-events: none;
	z-index: 1;
}

#reference.testimonials-futuristic::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(115, 115, 115, 0.8), transparent);
	animation: scanLine 4s linear infinite;
	z-index: 2;
}

#reference.testimonials-futuristic .testimonials-futuristic-bg,
.testimonials-futuristic-bg {
	position: absolute !important;
	inset: 0 !important;
	z-index: 0 !important;
}

.testimonials-futuristic-bg-grid {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(115, 115, 115, 0.12) 1px, transparent 1px),
		linear-gradient(90deg, rgba(115, 115, 115, 0.12) 1px, transparent 1px);
	background-size: 40px 40px;
	animation: gridMove 25s linear infinite reverse;
	opacity: 0.35;
}

.testimonials-futuristic-bg-grid::before {
	content: '';
	position: absolute;
	inset: 0;
	background: 
		repeating-linear-gradient(
			0deg,
			transparent,
			transparent 2px,
			rgba(115, 115, 115, 0.04) 2px,
			rgba(115, 115, 115, 0.04) 4px
		);
	animation: borderScan 12s linear infinite reverse;
}

.testimonials-futuristic-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	animation: orbFloat 14s ease-in-out infinite;
	box-shadow: 
		0 0 80px rgba(115, 115, 115, 0.7),
		inset 0 0 80px rgba(115, 115, 115, 0.4);
}

.testimonials-futuristic-orb::before {
	content: '';
	position: absolute;
	inset: -25px;
	border-radius: 50%;
	border: 3px solid rgba(115, 115, 115, 0.4);
	animation: hologram 5s ease-in-out infinite;
}

.testimonials-futuristic-orb-1 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(115, 115, 115, 0.6) 0%, rgba(115, 115, 115, 0.25) 40%, transparent 70%);
	top: 0%;
	right: 5%;
	animation-delay: 0s;
}

.testimonials-futuristic-orb-2 {
	width: 450px;
	height: 450px;
	background: radial-gradient(circle, rgba(82, 82, 82, 0.5) 0%, rgba(82, 82, 82, 0.2) 40%, transparent 70%);
	bottom: 5%;
	left: 10%;
	animation-delay: 5s;
}

.testimonials-futuristic-container {
	max-width: 90rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.testimonials-futuristic-header {
	text-align: center;
	margin-bottom: 6rem;
}

.testimonials-futuristic-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.875rem 1.75rem;
	border-radius: 50px;
	background: rgba(26, 26, 26, 0.9);
	border: 2px solid rgba(115, 115, 115, 0.4);
	backdrop-filter: blur(20px);
	position: relative;
	margin-bottom: 2rem;
	transition: all 0.4s ease;
	animation: hologram 3.5s ease-in-out infinite;
	transform-style: preserve-3d;
}

.testimonials-futuristic-badge::before {
	content: '';
	position: absolute;
	inset: -3px;
	border-radius: 50px;
	background: linear-gradient(45deg, rgba(115, 115, 115, 0.6), rgba(82, 82, 82, 0.6), rgba(115, 115, 115, 0.6));
	background-size: 200% 200%;
	animation: borderScan 3.5s linear infinite;
	z-index: -1;
	filter: blur(8px);
	opacity: 0.6;
}

.testimonials-futuristic-badge:hover {
	border-color: rgba(115, 115, 115, 0.9);
	transform: translateY(-3px) scale(1.05);
	box-shadow: 
		0 15px 40px rgba(115, 115, 115, 0.4),
		0 0 20px rgba(115, 115, 115, 0.3),
		inset 0 0 20px rgba(115, 115, 115, 0.1);
	animation: glitch 0.3s ease-in-out;
}

.testimonials-futuristic-badge-glow {
	position: absolute;
	inset: -4px;
	border-radius: 50px;
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.6), rgba(82, 82, 82, 0.6));
	filter: blur(15px);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -2;
	animation: hologram 2.5s ease-in-out infinite;
}

.testimonials-futuristic-badge:hover .testimonials-futuristic-badge-glow {
	opacity: 0.8;
}

.testimonials-futuristic-badge-icon {
	color: #ffffff;
	display: flex;
	align-items: center;
}

.testimonials-futuristic-badge-text {
	color: #ffffff;
	font-size: 0.95rem;
	font-weight: 600;
}

.testimonials-futuristic-title {
	font-size: 4.5rem;
	font-weight: 950;
	line-height: 1.1;
	margin-bottom: 2rem;
	position: relative;
	animation: neonPulse 3.5s ease-in-out infinite;
	transform-style: preserve-3d;
}

.testimonials-futuristic-title::before {
	content: attr(data-text);
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #ffffff 0%, #d4d4d4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: glitch 5s ease-in-out infinite;
	opacity: 0.8;
	z-index: -1;
}

.testimonials-futuristic-title-line {
	display: block;
	background: linear-gradient(135deg, #ffffff 0%, #d4d4d4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
	text-shadow: 
		0 0 10px rgba(115, 115, 115, 0.5),
		0 0 20px rgba(115, 115, 115, 0.3);
}

.testimonials-futuristic-description {
	font-size: 1.25rem;
	line-height: 1.8;
	color: #d4d4d4;
	max-width: 800px;
	margin: 0 auto;
}

.testimonials-futuristic-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 3rem;
}

.testimonials-futuristic-card {
	position: relative;
	padding: 3rem;
	background: rgba(26, 26, 26, 0.7);
	border-radius: 24px;
	backdrop-filter: blur(20px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: visible;
	transform-style: preserve-3d;
	animation: hologram 6s ease-in-out infinite;
}

.testimonials-futuristic-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(115, 115, 115, 0.8), transparent);
	animation: scanLine 5s linear infinite;
	z-index: 10;
}

.testimonials-futuristic-card-border {
	position: absolute;
	inset: 0;
	border-radius: 24px;
	padding: 3px;
	background: 
		linear-gradient(45deg, rgba(115, 115, 115, 0.5), rgba(82, 82, 82, 0.5), rgba(115, 115, 115, 0.5)),
		linear-gradient(135deg, rgba(115, 115, 115, 0.3), rgba(82, 82, 82, 0.3));
	background-size: 200% 200%, 100% 100%;
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
	opacity: 0.6;
	transition: opacity 0.5s ease;
	animation: borderScan 5s linear infinite, hologram 4s ease-in-out infinite;
}

.testimonials-futuristic-card-glow {
	position: absolute;
	inset: -6px;
	border-radius: 24px;
	background: radial-gradient(circle, rgba(115, 115, 115, 0.5), rgba(82, 82, 82, 0.3), transparent);
	filter: blur(25px);
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: -1;
	animation: hologram 5s ease-in-out infinite;
}

.testimonials-futuristic-card:hover {
	transform: translateY(-15px) scale(1.03) rotateX(5deg);
	animation: glitch 0.5s ease-in-out;
}

.testimonials-futuristic-card:hover .testimonials-futuristic-card-border {
	opacity: 1;
	animation: borderScan 2.5s linear infinite, hologram 2.5s ease-in-out infinite;
}

.testimonials-futuristic-card:hover .testimonials-futuristic-card-glow {
	opacity: 0.8;
}

.testimonials-futuristic-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2rem;
}

.testimonials-futuristic-card-icon-wrapper {
	position: relative;
}

.testimonials-futuristic-card-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(115, 115, 115, 0.15);
	border-radius: 12px;
	border: 2px solid rgba(115, 115, 115, 0.3);
	color: #ffffff;
	transition: all 0.4s ease;
	position: relative;
	transform-style: preserve-3d;
	animation: hologram 4.5s ease-in-out infinite;
}

.testimonials-futuristic-card-icon::before {
	content: '';
	position: absolute;
	inset: -3px;
	border-radius: 12px;
	background: linear-gradient(45deg, rgba(115, 115, 115, 0.4), rgba(82, 82, 82, 0.4));
	filter: blur(8px);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
	animation: borderScan 3.5s linear infinite;
}

.testimonials-futuristic-card:hover .testimonials-futuristic-card-icon {
	background: rgba(115, 115, 115, 0.25);
	border-color: rgba(115, 115, 115, 0.6);
	transform: scale(1.15);
	animation: iconRotate3d 3.5s ease-in-out infinite, hologram 2.5s ease-in-out infinite;
	box-shadow: 
		0 0 20px rgba(115, 115, 115, 0.6),
		inset 0 0 20px rgba(115, 115, 115, 0.2);
}

.testimonials-futuristic-card:hover .testimonials-futuristic-card-icon::before {
	opacity: 0.7;
}

.testimonials-futuristic-card-icon-pulse {
	position: absolute;
	inset: -4px;
	border-radius: 12px;
	background: rgba(115, 115, 115, 0.3);
	filter: blur(8px);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
	animation: hologram 3s ease-in-out infinite;
}

.testimonials-futuristic-card:hover .testimonials-futuristic-card-icon-pulse {
	opacity: 0.7;
	animation: iconRotate3d 2s ease-in-out infinite, hologram 2s ease-in-out infinite;
}

.testimonials-futuristic-card-rating {
	display: flex;
	gap: 0.25rem;
}

.testimonials-futuristic-card-star {
	color: rgba(115, 115, 115, 0.6);
	transition: all 0.3s ease;
	filter: drop-shadow(0 0 3px rgba(115, 115, 115, 0.3));
}

.testimonials-futuristic-card:hover .testimonials-futuristic-card-star {
	color: rgba(115, 115, 115, 1);
	transform: scale(1.15) rotateZ(5deg);
	filter: drop-shadow(0 0 8px rgba(115, 115, 115, 0.8));
	animation: neonPulse 1.5s ease-in-out infinite;
}

.testimonials-futuristic-card-content {
	position: relative;
	margin-bottom: 2.5rem;
}

.testimonials-futuristic-card-quote {
	position: absolute;
	top: -10px;
	left: -10px;
	color: rgba(115, 115, 115, 0.1);
	z-index: 0;
}

.testimonials-futuristic-card-text {
	position: relative;
	font-size: 1.1rem;
	line-height: 1.8;
	color: #d4d4d4;
	z-index: 1;
}

.testimonials-futuristic-card-footer {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(115, 115, 115, 0.2);
}

.testimonials-futuristic-card-avatar-wrapper {
	position: relative;
	flex-shrink: 0;
}

.testimonials-futuristic-card-avatar {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid rgba(115, 115, 115, 0.4);
	transition: all 0.4s ease;
	position: relative;
	animation: hologram 5s ease-in-out infinite;
}

.testimonials-futuristic-card-avatar::before {
	content: '';
	position: absolute;
	inset: -3px;
	border-radius: 50%;
	background: linear-gradient(45deg, rgba(115, 115, 115, 0.4), rgba(82, 82, 82, 0.4));
	filter: blur(6px);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
	animation: borderScan 4s linear infinite;
}

.testimonials-futuristic-card:hover .testimonials-futuristic-card-avatar {
	border-color: rgba(115, 115, 115, 0.8);
	transform: scale(1.08);
	box-shadow: 
		0 0 20px rgba(115, 115, 115, 0.6),
		inset 0 0 20px rgba(115, 115, 115, 0.2);
}

.testimonials-futuristic-card:hover .testimonials-futuristic-card-avatar::before {
	opacity: 0.7;
}

.testimonials-futuristic-card-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(20%);
	transition: filter 0.4s ease;
}

.testimonials-futuristic-card:hover .testimonials-futuristic-card-avatar img {
	filter: grayscale(0%);
}

.testimonials-futuristic-card-avatar-ring {
	position: absolute;
	inset: -6px;
	border-radius: 50%;
	border: 2px solid rgba(115, 115, 115, 0.3);
	opacity: 0;
	transition: opacity 0.4s ease;
	animation: borderScan 3s linear infinite;
}

.testimonials-futuristic-card:hover .testimonials-futuristic-card-avatar-ring {
	opacity: 1;
	animation: borderScan 2s linear infinite, hologram 2s ease-in-out infinite;
}

.testimonials-futuristic-card-author {
	flex: 1;
}

.testimonials-futuristic-card-author-name {
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.25rem;
}

.testimonials-futuristic-card-author-role {
	font-size: 0.95rem;
	color: #d4d4d4;
	margin-bottom: 0.25rem;
}

.testimonials-futuristic-card-author-company {
	font-size: 0.875rem;
	color: rgba(115, 115, 115, 0.8);
}

@media (max-width: 768px) {
	.testimonials-futuristic {
		padding: 8rem 1.5rem;
	}

	.testimonials-futuristic-title {
		font-size: 3rem;
	}

	.testimonials-futuristic-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.testimonials-futuristic-card {
		padding: 2rem;
	}
}

/* ============================================
   LEGAL FUTURISTIC SECTION
   ============================================ */

.legal-futuristic,
section.legal-futuristic {
	position: relative !important;
	padding: 12rem 1.5rem !important;
	background: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%) !important;
	overflow: hidden !important;
	min-height: 100vh;
}

.legal-futuristic-bg {
	position: absolute !important;
	inset: 0 !important;
	z-index: 0 !important;
	background: radial-gradient(ellipse at top, rgba(115, 115, 115, 0.08) 0%, transparent 60%);
	animation: float 25s ease-in-out infinite;
}

.legal-futuristic-grid {
	position: absolute;
	inset: 0;
	z-index: 1;
	background-image: 
		linear-gradient(rgba(115, 115, 115, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(115, 115, 115, 0.03) 1px, transparent 1px);
	background-size: 50px 50px;
	opacity: 0.4;
	animation: gridMove 20s linear infinite;
}

.legal-futuristic-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	animation: orbFloat 20s ease-in-out infinite;
	z-index: 1;
}

.legal-futuristic-orb-1 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(115, 115, 115, 0.15) 0%, transparent 70%);
	top: -15%;
	left: -10%;
	animation-delay: 0s;
}

.legal-futuristic-orb-2 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(82, 82, 82, 0.12) 0%, transparent 70%);
	bottom: -10%;
	right: -8%;
	animation-delay: 5s;
}

.legal-futuristic-orb-3 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(115, 115, 115, 0.1) 0%, transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: 10s;
}

.legal-futuristic-container {
	max-width: 75rem;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.legal-futuristic-header {
	text-align: center;
	margin-bottom: 5rem;
}

.legal-futuristic-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1.5rem;
	background: rgba(115, 115, 115, 0.1);
	border: 1px solid rgba(115, 115, 115, 0.3);
	border-radius: 50px;
	position: relative;
	overflow: hidden;
	margin-bottom: 2rem;
	backdrop-filter: blur(10px);
	animation: borderGlow 3s ease-in-out infinite;
}

.legal-futuristic-badge::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50px;
	padding: 1px;
	background: linear-gradient(45deg, rgba(115, 115, 115, 0.5), rgba(115, 115, 115, 0.1), rgba(115, 115, 115, 0.5));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	animation: borderScan 4s linear infinite;
}

.legal-futuristic-badge-glow {
	position: absolute;
	inset: -2px;
	background: linear-gradient(45deg, rgba(115, 115, 115, 0.3), transparent, rgba(115, 115, 115, 0.3));
	border-radius: 50px;
	filter: blur(8px);
	opacity: 0.6;
	animation: neonPulse 2s ease-in-out infinite;
	z-index: -1;
}

.legal-futuristic-badge-icon {
	width: 18px;
	height: 18px;
	color: #ffffff;
	animation: iconPulse 2s ease-in-out infinite;
}

.legal-futuristic-badge-text {
	font-size: 0.875rem;
	font-weight: 600;
	color: #ffffff;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.legal-futuristic-title {
	font-size: 4.5rem;
	font-weight: 800;
	line-height: 1.1;
	color: #ffffff;
	margin-bottom: 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	animation: slideInUp 1s ease-out;
}

.legal-futuristic-title-line {
	display: block;
	position: relative;
}

.legal-futuristic-title-line::after {
	content: '';
	position: absolute;
	bottom: -0.5rem;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, rgba(115, 115, 115, 0.6), transparent);
	animation: borderScan 3s linear infinite;
}

.legal-futuristic-description {
	font-size: 1.25rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.8);
	max-width: 50rem;
	margin: 0 auto;
	animation: slideInUp 1s ease-out 0.2s both;
}

.legal-futuristic-description strong {
	color: #ffffff;
	font-weight: 600;
}

.legal-futuristic-content {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.legal-futuristic-item {
	position: relative;
	padding: 3rem;
	background: rgba(115, 115, 115, 0.05);
	border: 1px solid rgba(115, 115, 115, 0.2);
	border-radius: 1.5rem;
	backdrop-filter: blur(10px);
	display: flex;
	gap: 2rem;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	animation: slideInUp 0.8s ease-out both;
	overflow: hidden;
}

.legal-futuristic-item::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 1.5rem;
	padding: 1px;
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.3), rgba(115, 115, 115, 0.1), rgba(115, 115, 115, 0.3));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.legal-futuristic-item:hover {
	background: rgba(115, 115, 115, 0.08);
	border-color: rgba(115, 115, 115, 0.4);
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.legal-futuristic-item:hover::before {
	opacity: 1;
	animation: borderScan 3s linear infinite;
}

.legal-futuristic-item-icon {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(115, 115, 115, 0.1);
	border: 1px solid rgba(115, 115, 115, 0.3);
	border-radius: 1rem;
	color: #ffffff;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
}

.legal-futuristic-item-icon::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.2), transparent);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.legal-futuristic-item:hover .legal-futuristic-item-icon {
	background: rgba(115, 115, 115, 0.15);
	border-color: rgba(115, 115, 115, 0.5);
	transform: rotateY(360deg);
	animation: iconRotate3d 0.6s ease-in-out;
}

.legal-futuristic-item:hover .legal-futuristic-item-icon::before {
	opacity: 1;
}

.legal-futuristic-item-icon svg {
	width: 32px;
	height: 32px;
	position: relative;
	z-index: 1;
}

.legal-futuristic-item-content {
	flex: 1;
}

.legal-futuristic-item-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 1rem;
	line-height: 1.3;
}

.legal-futuristic-item-text {
	font-size: 1.125rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 1rem;
}

.legal-futuristic-item-text:last-child {
	margin-bottom: 0;
}

.legal-futuristic-item-text strong {
	color: #ffffff;
	font-weight: 600;
}

.legal-futuristic-item-list {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.legal-futuristic-item-list li {
	position: relative;
	padding-left: 1.75rem;
	font-size: 1.125rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.75);
}

.legal-futuristic-item-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.6rem;
	width: 8px;
	height: 8px;
	background: rgba(115, 115, 115, 0.6);
	border-radius: 50%;
	box-shadow: 0 0 8px rgba(115, 115, 115, 0.4);
	animation: iconPulse 2s ease-in-out infinite;
}

.legal-futuristic-item-list li strong {
	color: #ffffff;
	font-weight: 600;
}

.legal-futuristic-contact {
	margin-top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.legal-futuristic-contact-link {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 1.5rem;
	background: rgba(115, 115, 115, 0.1);
	border: 1px solid rgba(115, 115, 115, 0.3);
	border-radius: 0.75rem;
	color: #ffffff;
	text-decoration: none;
	font-size: 1.125rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	max-width: fit-content;
}

.legal-futuristic-contact-link::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.2), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.legal-futuristic-contact-link:hover {
	background: rgba(115, 115, 115, 0.15);
	border-color: rgba(115, 115, 115, 0.5);
	transform: translateX(4px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.legal-futuristic-contact-link:hover::before {
	opacity: 1;
}

.legal-futuristic-contact-link svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

.legal-futuristic-contact-link span {
	position: relative;
	z-index: 1;
}

@media (max-width: 768px) {
	.legal-futuristic {
		padding: 8rem 1.5rem !important;
	}

	.legal-futuristic-title {
		font-size: 3rem;
	}

	.legal-futuristic-description {
		font-size: 1.125rem;
	}

	.legal-futuristic-item {
		flex-direction: column;
		padding: 2rem;
		gap: 1.5rem;
	}

	.legal-futuristic-item-icon {
		width: 56px;
		height: 56px;
	}

	.legal-futuristic-item-icon svg {
		width: 28px;
		height: 28px;
	}

	.legal-futuristic-item-title {
		font-size: 1.5rem;
	}

	.legal-futuristic-item-text {
		font-size: 1rem;
	}

	.legal-futuristic-item-list li {
		font-size: 1rem;
	}
}

/* ============================================
   THANKS FUTURISTIC SECTION
   ============================================ */

.thanks-futuristic,
section.thanks-futuristic {
	position: relative !important;
	padding: 12rem 1.5rem !important;
	background: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%) !important;
	overflow: hidden !important;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.thanks-futuristic-bg {
	position: absolute !important;
	inset: 0 !important;
	z-index: 0 !important;
	background: radial-gradient(ellipse at center, rgba(115, 115, 115, 0.1) 0%, transparent 70%);
	animation: float 20s ease-in-out infinite;
}

.thanks-futuristic-grid {
	position: absolute;
	inset: 0;
	z-index: 1;
	background-image: 
		linear-gradient(rgba(115, 115, 115, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(115, 115, 115, 0.03) 1px, transparent 1px);
	background-size: 50px 50px;
	opacity: 0.4;
	animation: gridMove 20s linear infinite;
}

.thanks-futuristic-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	animation: orbFloat 20s ease-in-out infinite;
	z-index: 1;
}

.thanks-futuristic-orb-1 {
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, rgba(115, 115, 115, 0.18) 0%, transparent 70%);
	top: -20%;
	left: -15%;
	animation-delay: 0s;
}

.thanks-futuristic-orb-2 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(82, 82, 82, 0.15) 0%, transparent 70%);
	bottom: -15%;
	right: -12%;
	animation-delay: 5s;
}

.thanks-futuristic-orb-3 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(115, 115, 115, 0.12) 0%, transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: 10s;
}

.thanks-futuristic-container {
	max-width: 60rem;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	width: 100%;
}

.thanks-futuristic-content {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}

.thanks-futuristic-icon-wrapper {
	position: relative;
	width: 160px;
	height: 160px;
	margin-bottom: 1rem;
	animation: slideInUp 1s ease-out;
}

.thanks-futuristic-icon {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(115, 115, 115, 0.1);
	border: 2px solid rgba(115, 115, 115, 0.3);
	border-radius: 50%;
	color: #ffffff;
	position: relative;
	z-index: 2;
	backdrop-filter: blur(10px);
	animation: iconRotate3d 4s ease-in-out infinite;
	transition: all 0.4s ease;
}

.thanks-futuristic-icon::before {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: 50%;
	padding: 2px;
	background: linear-gradient(45deg, rgba(115, 115, 115, 0.5), rgba(115, 115, 115, 0.1), rgba(115, 115, 115, 0.5));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	animation: borderScan 3s linear infinite;
	z-index: -1;
}

.thanks-futuristic-icon svg {
	width: 100px;
	height: 100px;
	position: relative;
	z-index: 1;
	animation: iconPulse 2s ease-in-out infinite;
}

.thanks-futuristic-icon-glow {
	position: absolute;
	inset: -20px;
	background: radial-gradient(circle, rgba(115, 115, 115, 0.3), transparent 70%);
	border-radius: 50%;
	filter: blur(20px);
	opacity: 0.6;
	animation: neonPulse 2s ease-in-out infinite;
	z-index: 1;
}

.thanks-futuristic-icon-particles {
	position: absolute;
	inset: 0;
	z-index: 3;
}

.thanks-futuristic-particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: rgba(115, 115, 115, 0.8);
	border-radius: 50%;
	box-shadow: 0 0 8px rgba(115, 115, 115, 0.6);
	animation: particleFloat 3s ease-in-out infinite;
}

.thanks-futuristic-particle:nth-child(1) {
	top: 20%;
	left: 20%;
	animation-delay: 0s;
}

.thanks-futuristic-particle:nth-child(2) {
	top: 30%;
	right: 20%;
	animation-delay: 0.5s;
}

.thanks-futuristic-particle:nth-child(3) {
	bottom: 30%;
	left: 30%;
	animation-delay: 1s;
}

.thanks-futuristic-particle:nth-child(4) {
	bottom: 20%;
	right: 30%;
	animation-delay: 1.5s;
}

.thanks-futuristic-particle:nth-child(5) {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: 2s;
}

.thanks-futuristic-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1.5rem;
	background: rgba(115, 115, 115, 0.1);
	border: 1px solid rgba(115, 115, 115, 0.3);
	border-radius: 50px;
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
	animation: borderGlow 3s ease-in-out infinite, slideInUp 1s ease-out 0.2s both;
}

.thanks-futuristic-badge::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50px;
	padding: 1px;
	background: linear-gradient(45deg, rgba(115, 115, 115, 0.5), rgba(115, 115, 115, 0.1), rgba(115, 115, 115, 0.5));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	animation: borderScan 4s linear infinite;
}

.thanks-futuristic-badge-glow {
	position: absolute;
	inset: -2px;
	background: linear-gradient(45deg, rgba(115, 115, 115, 0.3), transparent, rgba(115, 115, 115, 0.3));
	border-radius: 50px;
	filter: blur(8px);
	opacity: 0.6;
	animation: neonPulse 2s ease-in-out infinite;
	z-index: -1;
}

.thanks-futuristic-badge-icon {
	width: 18px;
	height: 18px;
	color: #ffffff;
	animation: iconPulse 2s ease-in-out infinite;
}

.thanks-futuristic-badge-text {
	font-size: 0.875rem;
	font-weight: 600;
	color: #ffffff;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.thanks-futuristic-title {
	font-size: 4.5rem;
	font-weight: 800;
	line-height: 1.1;
	color: #ffffff;
	margin-bottom: 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	animation: slideInUp 1s ease-out 0.4s both;
}

.thanks-futuristic-title-line {
	display: block;
	position: relative;
}

.thanks-futuristic-title-line::after {
	content: '';
	position: absolute;
	bottom: -0.5rem;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, rgba(115, 115, 115, 0.6), transparent);
	animation: borderScan 3s linear infinite;
}

.thanks-futuristic-description {
	font-size: 1.25rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.8);
	max-width: 40rem;
	margin: 0 auto;
	animation: slideInUp 1s ease-out 0.6s both;
}

.thanks-futuristic-actions {
	display: flex;
	gap: 1.5rem;
	margin-top: 2rem;
	animation: slideInUp 1s ease-out 0.8s both;
	flex-wrap: wrap;
	justify-content: center;
}

.thanks-futuristic-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1.25rem 2.5rem;
	border-radius: 0.75rem;
	font-size: 1.125rem;
	font-weight: 600;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.thanks-futuristic-btn-primary {
	background: rgba(115, 115, 115, 0.15);
	border-color: rgba(115, 115, 115, 0.4);
	color: #ffffff;
}

.thanks-futuristic-btn-secondary {
	background: rgba(115, 115, 115, 0.1);
	border-color: rgba(115, 115, 115, 0.3);
	color: #ffffff;
}

.thanks-futuristic-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(115, 115, 115, 0.2), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.thanks-futuristic-btn-glow {
	position: absolute;
	inset: -2px;
	background: linear-gradient(45deg, rgba(115, 115, 115, 0.3), transparent, rgba(115, 115, 115, 0.3));
	border-radius: 0.75rem;
	filter: blur(8px);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: -1;
}

.thanks-futuristic-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.thanks-futuristic-btn-primary:hover {
	background: rgba(115, 115, 115, 0.2);
	border-color: rgba(115, 115, 115, 0.5);
}

.thanks-futuristic-btn-secondary:hover {
	background: rgba(115, 115, 115, 0.15);
	border-color: rgba(115, 115, 115, 0.4);
}

.thanks-futuristic-btn:hover::before {
	opacity: 1;
}

.thanks-futuristic-btn:hover .thanks-futuristic-btn-glow {
	opacity: 0.6;
	animation: neonPulse 1.5s ease-in-out infinite;
}

.thanks-futuristic-btn-text {
	position: relative;
	z-index: 1;
}

.thanks-futuristic-btn-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
	transition: transform 0.3s ease;
}

.thanks-futuristic-btn:hover .thanks-futuristic-btn-icon {
	transform: translateX(2px);
}

@media (max-width: 768px) {
	.thanks-futuristic {
		padding: 8rem 1.5rem !important;
	}

	.thanks-futuristic-title {
		font-size: 3rem;
	}

	.thanks-futuristic-description {
		font-size: 1.125rem;
	}

	.thanks-futuristic-icon-wrapper {
		width: 120px;
		height: 120px;
	}

	.thanks-futuristic-icon svg {
		width: 80px;
		height: 80px;
	}

	.thanks-futuristic-actions {
		flex-direction: column;
		width: 100%;
	}

	.thanks-futuristic-btn {
		width: 100%;
		justify-content: center;
		padding: 1rem 2rem;
	}
}