/* ============================================
   НОВАЯ ЦВЕТОВАЯ СХЕМА И СТИЛИ С АНИМАЦИЯМИ
   ============================================ */

/* CSS Variables для новой цветовой схемы */
:root {
	/* Основные цвета - сине-красная палитра */
	--primary-cyan: #2563eb;
	--primary-cyan-dark: #1d4ed8;
	--primary-cyan-light: #3b82f6;
	--primary-orange: #dc2626;
	--primary-orange-dark: #b91c1c;
	--primary-orange-light: #ef4444;
	
	/* Акцентные цвета */
	--accent-pink: #ec4899;
	--accent-purple: #a855f7;
	--accent-blue: #3b82f6;
	
	/* Фоны */
	--bg-primary: #0a0e27;
	--bg-secondary: #1a1f3a;
	--bg-light: #f8fafc;
	--bg-white: #ffffff;
	
	/* Текст */
	--text-primary: #0f172a;
	--text-secondary: #475569;
	--text-light: #94a3b8;
	--text-white: #ffffff;
	
	/* Границы */
	--border-color: #e2e8f0;
	--border-dark: #1e293b;
	
	/* Тени */
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
	--shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	--shadow-glow-cyan: 0 0 20px rgba(37, 99, 235, 0.4);
	--shadow-glow-orange: 0 0 20px rgba(220, 38, 38, 0.4);
}

@media (prefers-color-scheme: dark) {
	:root {
		--bg-light: #0f172a;
		--bg-white: #1e293b;
		--text-primary: #f1f5f9;
		--text-secondary: #cbd5e1;
		--text-light: #94a3b8;
		--border-color: #334155;
		--border-dark: #475569;
	}
}

/* Reset and base styles */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background-color: var(--bg-white);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

/* 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 utilities */
.max-width-7xl {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
}

.max-width-3xl {
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
}

.max-width-4xl {
	max-width: 56rem;
	margin-left: auto;
	margin-right: auto;
}

.flex {
	display: flex;
}

.flex-col {
	flex-direction: column;
}

.items-center {
	align-items: center;
}

.justify-between {
	justify-content: space-between;
}

.justify-center {
	justify-content: center;
}

.gap-2 {
	gap: 0.5rem;
}

.gap-4 {
	gap: 1rem;
}

.gap-6 {
	gap: 1.5rem;
}

.gap-8 {
	gap: 2rem;
}

.grid {
	display: grid;
}

.grid-cols-1 {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

/* Spacing */
.px-6 {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.py-12 {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.py-16 {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.py-20 {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.mt-4 {
	margin-top: 1rem;
}

.mt-6 {
	margin-top: 1.5rem;
}

.mt-8 {
	margin-top: 2rem;
}

.mt-16 {
	margin-top: 4rem;
}

.mb-4 {
	margin-bottom: 1rem;
}

.mb-6 {
	margin-bottom: 1.5rem;
}

/* Typography */
.text-xs {
	font-size: 0.75rem;
	line-height: 1rem;
}

.text-sm {
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.text-base {
	font-size: 1rem;
	line-height: 1.5rem;
}

.text-lg {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.text-xl {
	font-size: 1.25rem;
	line-height: 1.75rem;
}

.text-2xl {
	font-size: 1.5rem;
	line-height: 2rem;
}

.text-3xl {
	font-size: 1.875rem;
	line-height: 2.25rem;
}

.text-4xl {
	font-size: 2.25rem;
	line-height: 2.5rem;
}

.text-5xl {
	font-size: 3rem;
	line-height: 1;
}

.text-6xl {
	font-size: 3.75rem;
	line-height: 1;
}

.font-medium {
	font-weight: 500;
}

.font-semibold {
	font-weight: 600;
}

.font-bold {
	font-weight: 700;
}

.leading-tight {
	line-height: 1.25;
}

.leading-relaxed {
	line-height: 1.625;
}

.tracking-tight {
	letter-spacing: -0.025em;
}

/* Colors */
.text-white {
	color: var(--text-primary);
}

.text-gray-300 {
	color: #cbd5e1;
}

.text-gray-500 {
	color: #64748b;
}

.text-gray-600 {
	color: #475569;
}

.text-gray-700 {
	color: #334155;
}

.text-gray-900 {
	color: #0f172a;
}

.text-neutral-100 {
	color: #f1f5f9;
}

.text-neutral-300 {
	color: #cbd5e1;
}

.text-neutral-400 {
	color: #94a3b8;
}

.text-neutral-500 {
	color: #64748b;
}

.text-neutral-600 {
	color: #475569;
}

.text-neutral-700 {
	color: #334155;
}

.text-neutral-900 {
	color: #0f172a;
}

/* Background colors */
.bg-white {
	background-color: var(--bg-white);
}

.bg-gray-50 {
	background-color: #f8fafc;
}

.bg-gray-900 {
	background-color: #0f172a;
}

.bg-neutral-50 {
	background-color: #f8fafc;
}

.bg-neutral-100 {
	background-color: #f1f5f9;
}

.bg-neutral-200 {
	background-color: #e2e8f0;
}

.bg-neutral-300 {
	background-color: #cbd5e1;
}

.bg-neutral-400 {
	background-color: #94a3b8;
}

.bg-neutral-500 {
	background-color: #64748b;
}

.bg-neutral-600 {
	background-color: #475569;
}

.bg-neutral-700 {
	background-color: #334155;
}

.bg-neutral-800 {
	background-color: #1e293b;
}

.bg-neutral-900 {
	background-color: #0f172a;
}

.bg-neutral-950 {
	background-color: #0a0a0a;
}

/* Бирюзовые цвета */
.bg-cyan-50 {
	background-color: #ecfeff;
}

.bg-cyan-100 {
	background-color: #cffafe;
}

.bg-cyan-200 {
	background-color: #a5f3fc;
}

.bg-cyan-300 {
	background-color: #67e8f9;
}

.bg-cyan-400 {
	background-color: #3b82f6;
}

.bg-cyan-500 {
	background-color: #2563eb;
}

.bg-cyan-600 {
	background-color: #1d4ed8;
}

.bg-cyan-700 {
	background-color: #0e7490;
}

.bg-cyan-900 {
	background-color: #164e63;
}

/* Оранжевые цвета */
.bg-orange-50 {
	background-color: #fff7ed;
}

.bg-orange-100 {
	background-color: #ffedd5;
}

.bg-orange-200 {
	background-color: #fed7aa;
}

.bg-orange-300 {
	background-color: #fdba74;
}

.bg-orange-400 {
	background-color: #ef4444;
}

.bg-orange-500 {
	background-color: #dc2626;
}

.bg-orange-600 {
	background-color: #b91c1c;
}

.bg-orange-700 {
	background-color: #c2410c;
}

.bg-orange-900 {
	background-color: #7c2d12;
}

/* Text colors */
.text-cyan-300 {
	color: #67e8f9;
}

.text-cyan-400 {
	color: #3b82f6;
}

.text-cyan-500 {
	color: #2563eb;
}

.text-cyan-600 {
	color: #1d4ed8;
}

.text-cyan-700 {
	color: #0e7490;
}

.text-orange-300 {
	color: #fdba74;
}

.text-orange-400 {
	color: #ef4444;
}

.text-orange-500 {
	color: #dc2626;
}

.text-orange-600 {
	color: #b91c1c;
}

.text-orange-700 {
	color: #c2410c;
}

/* Borders */
.border {
	border-width: 1px;
}

.border-t {
	border-top-width: 1px;
}

.border-b {
	border-bottom-width: 1px;
}

.border-gray-800 {
	border-color: #1e293b;
}

.border-neutral-200 {
	border-color: #e2e8f0;
}

.border-neutral-300 {
	border-color: #cbd5e1;
}

.border-neutral-600 {
	border-color: #475569;
}

.border-neutral-700 {
	border-color: #334155;
}

.border-neutral-800 {
	border-color: #1e293b;
}

.border-cyan-400 {
	border-color: #3b82f6;
}

.border-cyan-500 {
	border-color: #2563eb;
}

.border-orange-400 {
	border-color: #ef4444;
}

.border-orange-500 {
	border-color: #dc2626;
}

/* Border radius */
.rounded-lg {
	border-radius: 0.5rem;
}

.rounded-xl {
	border-radius: 0.75rem;
}

.rounded-2xl {
	border-radius: 1rem;
}

.rounded-full {
	border-radius: 9999px;
}

/* Shadows */
.shadow-sm {
	box-shadow: var(--shadow-sm);
}

.shadow-lg {
	box-shadow: var(--shadow-lg);
}

.shadow-2xl {
	box-shadow: var(--shadow-2xl);
}

/* Sizing */
.w-10 {
	width: 2.5rem;
}

.w-11 {
	width: 2.75rem;
}

.w-12 {
	width: 3rem;
}

.w-16 {
	width: 4rem;
}

.w-full {
	width: 100%;
}

.w-auto {
	width: auto;
}

.w-fit {
	width: fit-content;
}

.h-5 {
	height: 1.25rem;
}

.w-5 {
	width: 1.25rem;
}

.h-6 {
	height: 1.5rem;
}

.h-7 {
	height: 1.75rem;
}

.h-8 {
	height: 2rem;
}

.h-10 {
	height: 2.5rem;
}

.h-12 {
	height: 3rem;
}

.h-16 {
	height: 4rem;
}

.h-64 {
	height: 16rem;
}

.h-px {
	height: 1px;
}

/* Positioning */
.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.fixed {
	position: fixed;
}

.inset-0 {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.inset-x-0 {
	left: 0;
	right: 0;
}

.inset-x-6 {
	left: 1.5rem;
	right: 1.5rem;
}

.bottom-0 {
	bottom: 0;
}

.bottom-6 {
	bottom: 1.5rem;
}

.right-6 {
	right: 1.5rem;
}

.top-0 {
	top: 0;
}

.left-0 {
	left: 0;
}

.left-1\/2 {
	left: 50%;
}

.-translate-x-1\/2 {
	transform: translateX(-50%);
}

.-z-10 {
	z-index: -10;
}

.z-50 {
	z-index: 50;
}

/* Display */
.block {
	display: block;
}

.inline-block {
	display: inline-block;
}

.inline-flex {
	display: inline-flex;
}

/* Overflow */
.overflow-hidden {
	overflow: hidden;
}

/* Object fit */
.object-cover {
	object-fit: cover;
}

/* Cursor */
.cursor-pointer {
	cursor: pointer;
}

/* Pointer events */
.pointer-events-none {
	pointer-events: none;
}

/* ============================================
   АНИМАЦИИ И ПЕРЕХОДЫ
   ============================================ */

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes pulse {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

@keyframes glow {
	0%, 100% {
		box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
	}
	50% {
		box-shadow: 0 0 30px rgba(37, 99, 235, 0.6), 0 0 40px rgba(220, 38, 38, 0.4);
	}
}

@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/* Transitions */
.transition {
	transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 300ms;
}

.transition-all {
	transition-property: all;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 300ms;
}

.transition-fast {
	transition-duration: 150ms;
}

.transition-slow {
	transition-duration: 500ms;
}

/* ============================================
   HEADER - ПОЛНОСТЬЮ ПЕРЕДЕЛАН С АНИМАЦИЯМИ
   ============================================ */

.header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
	color: var(--text-primary);
	padding: 0;
	border-bottom: 2px solid transparent;
	backdrop-filter: blur(20px);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
	animation: fadeIn 0.6s ease-out;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
}

.header::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
	transition: left 0.6s ease;
}

.header:hover::before {
	left: 100%;
}

.header:hover {
	border-bottom-color: var(--primary-cyan);
	box-shadow: 0 4px 40px rgba(37, 99, 235, 0.3), 0 0 60px rgba(220, 38, 38, 0.1);
}

.header-container {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	padding: 1.25rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}

@media (min-width: 768px) {
	.header-container {
		padding-left: 3rem;
		padding-right: 3rem;
	}
}

@media (min-width: 1024px) {
	.header-container {
		padding-left: 5rem;
		padding-right: 5rem;
	}
}

/* Logo */
.logo-link {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	padding: 0.5rem;
	border-radius: 0.75rem;
}

.logo-link::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 0.75rem;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(220, 38, 38, 0.2));
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
}

.logo-link:hover::before {
	opacity: 1;
}

.logo-link:hover {
	transform: translateY(-2px) scale(1.05);
}

.logo-wrapper {
	position: relative;
	width: 2.75rem;
	height: 2.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	filter: drop-shadow(0 0 15px rgba(37, 99, 235, 0.6));
	position: relative;
	border-radius: 50%;
	z-index: 2;
}

.logo-glow {
	position: absolute;
	inset: -5px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.4), transparent);
	opacity: 0;
	transition: opacity 0.4s ease;
	animation: pulse 3s ease-in-out infinite;
}

.logo-link:hover .logo-image {
	transform: rotate(10deg) scale(1.15);
	filter: drop-shadow(0 0 20px rgba(37, 99, 235, 0.8)) drop-shadow(0 0 30px rgba(220, 38, 38, 0.4));
}

.logo-link:hover .logo-glow {
	opacity: 1;
	animation: pulse 1s ease-in-out infinite;
}

.logo-text {
	font-size: 1.625rem;
	font-weight: 700;
	background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-orange) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.025em;
	background-size: 200% 200%;
	animation: gradient 4s ease infinite;
	transition: all 0.4s ease;
	position: relative;
}

.logo-link:hover .logo-text {
	background-size: 200% 200%;
	animation: gradient 1.5s ease infinite;
	transform: scale(1.05);
}

/* Navigation */
.nav-desktop {
	display: none;
	align-items: center;
	gap: 0.5rem;
}

@media (min-width: 768px) {
	.nav-desktop {
		display: flex;
	}
}

.nav-link {
	position: relative;
	padding: 0.75rem 1.25rem;
	font-weight: 500;
	font-size: 0.9375rem;
	color: var(--text-light);
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 0.5rem;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.nav-link::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(220, 38, 38, 0.1));
	opacity: 0;
	transition: opacity 0.4s ease;
	border-radius: 0.5rem;
}

.nav-link:hover::before {
	opacity: 1;
}

.nav-link-text {
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
}

.nav-link-underline {
	position: absolute;
	bottom: 0.5rem;
	left: 50%;
	transform: translateX(-50%) scaleX(0);
	width: 60%;
	height: 2px;
	background: linear-gradient(90deg, var(--primary-cyan), var(--primary-orange));
	border-radius: 2px;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover .nav-link-text {
	color: var(--primary-cyan);
	transform: translateY(-2px);
}

.nav-link:hover .nav-link-underline {
	transform: translateX(-50%) scaleX(1);
}

.nav-link:active {
	transform: scale(0.95);
}

/* Mobile Menu Button */
.mobile-menu-button {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 2.5rem;
	height: 2rem;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	position: relative;
	z-index: 10000;
	transition: all 0.3s ease;
}

.mobile-menu-button:hover {
	transform: scale(1.1);
}

.mobile-menu-button.active .burger-line:nth-child(1) {
	transform: rotate(45deg) translate(0.5rem, 0.5rem);
	background: var(--primary-cyan);
}

.mobile-menu-button.active .burger-line:nth-child(2) {
	opacity: 0;
	transform: translateX(-20px);
}

.mobile-menu-button.active .burger-line:nth-child(3) {
	transform: rotate(-45deg) translate(0.5rem, -0.5rem);
	background: var(--primary-orange);
}

.burger-line {
	width: 100%;
	height: 3px;
	background: var(--text-primary);
	border-radius: 3px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transform-origin: center;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-menu-button:hover .burger-line {
	background: var(--primary-cyan);
	box-shadow: 0 0 12px rgba(37, 99, 235, 0.6);
}

@media (min-width: 768px) {
	.mobile-menu-button {
		display: none;
	}
}

/* Mobile Menu New - ПОЛНОСТЬЮ ПЕРЕДЕЛАННОЕ */
.mobile-menu-new {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100vh;
	z-index: 9999;
	pointer-events: none;
}

.mobile-menu-new.hidden {
	pointer-events: none;
}

.mobile-menu-new:not(.hidden) {
	pointer-events: all;
}

.mobile-menu-overlay {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.85);
	backdrop-filter: blur(10px);
	opacity: 0;
	transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1;
}

.mobile-menu-new:not(.hidden) .mobile-menu-overlay {
	opacity: 1;
}

.mobile-menu-panel {
	position: absolute;
	top: 0;
	right: 0;
	width: 85%;
	max-width: 400px;
	height: 100%;
	background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
	box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
	transform: translateX(100%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	overflow-x: hidden;
	z-index: 2;
}

.mobile-menu-new:not(.hidden) .mobile-menu-panel {
	transform: translateX(0);
}

.mobile-menu-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem;
	border-bottom: 2px solid rgba(37, 99, 235, 0.2);
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(220, 38, 38, 0.1));
}

.mobile-menu-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.mobile-logo-img {
	width: 2.5rem;
	height: 2.5rem;
	object-fit: contain;
	filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.5));
}

.mobile-logo-text {
	font-size: 1.5rem;
	font-weight: 700;
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.mobile-menu-close {
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(37, 99, 235, 0.1);
	border: 2px solid rgba(37, 99, 235, 0.3);
	border-radius: 0.75rem;
	color: var(--primary-cyan);
	cursor: pointer;
	transition: all 0.3s ease;
}

.mobile-menu-close:hover {
	background: rgba(37, 99, 235, 0.2);
	border-color: var(--primary-cyan);
	transform: rotate(90deg);
	box-shadow: 0 0 15px rgba(37, 99, 235, 0.4);
}

.mobile-menu-close svg {
	width: 1.5rem;
	height: 1.5rem;
}

.mobile-menu-nav {
	flex: 1;
	padding: 2rem 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.mobile-menu-link {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	border-radius: 1rem;
	background: rgba(37, 99, 235, 0.05);
	border: 2px solid transparent;
	color: var(--text-primary);
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	font-weight: 600;
	font-size: 1.1rem;
	opacity: 0;
	transform: translateX(30px);
}

.mobile-menu-new:not(.hidden) .mobile-menu-link {
	animation: slideInRight 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.mobile-menu-new:not(.hidden) .mobile-menu-link:nth-child(1) {
	animation-delay: 0.1s;
}

.mobile-menu-new:not(.hidden) .mobile-menu-link:nth-child(2) {
	animation-delay: 0.2s;
}

.mobile-menu-new:not(.hidden) .mobile-menu-link:nth-child(3) {
	animation-delay: 0.3s;
}

.mobile-menu-new:not(.hidden) .mobile-menu-link:nth-child(4) {
	animation-delay: 0.4s;
}

.mobile-menu-link::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(220, 38, 38, 0.15));
	opacity: 0;
	transition: opacity 0.4s ease;
	border-radius: 1rem;
}

.mobile-menu-link:hover::before {
	opacity: 1;
}

.mobile-menu-link:hover {
	border-color: var(--primary-cyan);
	transform: translateX(10px);
	box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.mobile-link-icon {
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(220, 38, 38, 0.1));
	border-radius: 0.75rem;
	color: var(--primary-cyan);
	transition: all 0.4s ease;
	flex-shrink: 0;
}

.mobile-link-icon svg {
	width: 1.5rem;
	height: 1.5rem;
}

.mobile-menu-link:hover .mobile-link-icon {
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	color: white;
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.mobile-link-text {
	flex: 1;
	transition: color 0.3s ease;
}

.mobile-menu-link:hover .mobile-link-text {
	color: var(--primary-cyan);
}

.mobile-link-arrow {
	width: 1.5rem;
	height: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-light);
	transition: all 0.4s ease;
	opacity: 0.5;
}

.mobile-link-arrow svg {
	width: 1.25rem;
	height: 1.25rem;
}

.mobile-menu-link:hover .mobile-link-arrow {
	color: var(--primary-orange);
	opacity: 1;
	transform: translateX(5px);
}

.mobile-menu-footer {
	padding: 2rem 1.5rem;
	border-top: 2px solid rgba(37, 99, 235, 0.2);
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(220, 38, 38, 0.05));
}

.mobile-menu-social {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
}

.mobile-social-link {
	width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(37, 99, 235, 0.1);
	border: 2px solid rgba(37, 99, 235, 0.2);
	border-radius: 50%;
	color: var(--primary-cyan);
	transition: all 0.4s ease;
	text-decoration: none;
}

.mobile-social-link:hover {
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	border-color: transparent;
	color: white;
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.mobile-social-link svg {
	width: 1.5rem;
	height: 1.5rem;
}

@media (min-width: 768px) {
	.mobile-menu-new {
		display: none !important;
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.svg-icon {
	width: 1.75rem;
	height: 1.75rem;
}

/* ============================================
   HERO SECTION - С АНИМАЦИЯМИ
   ============================================ */

.hero-section {
	position: relative;
	background: linear-gradient(135deg, var(--bg-primary) 0%, #1a1f3a 50%, #0f172a 100%);
	color: var(--text-primary);
	padding-top: 6rem;
	padding-bottom: 6rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	overflow: hidden;
	min-height: 90vh;
	display: flex;
	align-items: center;
}

@media (min-width: 768px) {
	.hero-section {
		padding-left: 3rem;
		padding-right: 3rem;
	}
}

@media (min-width: 1024px) {
	.hero-section {
		padding-left: 5rem;
		padding-right: 5rem;
	}
}

.hero-gradient {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.3) 0%, rgba(220, 38, 38, 0.2) 50%, transparent 70%);
	filter: blur(80px);
	z-index: 0;
	animation: float 6s ease-in-out infinite;
}

.hero-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 2.5rem;
	position: relative;
	z-index: 1;
	animation: fadeIn 0.8s ease-out;
}

@media (min-width: 768px) {
	.hero-content {
		flex-direction: row;
	}
}

.hero-text-wrapper {
	width: 100%;
	animation: slideInLeft 0.8s ease-out;
}

@media (min-width: 768px) {
	.hero-text-wrapper {
		width: 50%;
	}
}

.hero-text-content {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	text-align: center;
}

@media (min-width: 768px) {
	.hero-text-content {
		text-align: left;
	}
}

.hero-title {
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.25;
	background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-orange) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	background-size: 200% 200%;
	animation: gradient 5s ease infinite, fadeIn 1s ease-out;
	transition: all 0.3s ease;
}

.hero-title:hover {
	transform: scale(1.02);
}

@media (min-width: 640px) {
	.hero-title {
		font-size: 3rem;
	}
}

@media (min-width: 1024px) {
	.hero-title {
		font-size: 3.75rem;
	}
}

.hero-description {
	color: #cbd5e1;
	font-size: 1.125rem;
	line-height: 1.625;
	animation: fadeIn 1.2s ease-out;
	transition: color 0.3s ease;
}

.hero-description:hover {
	color: var(--primary-cyan-light);
}

@media (min-width: 640px) {
	.hero-description {
		font-size: 1.25rem;
	}
}

.hero-buttons {
	padding-top: 1rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	animation: fadeIn 1.4s ease-out;
}

@media (min-width: 640px) {
	.hero-buttons {
		flex-direction: row;
		justify-content: center;
	}
}

@media (min-width: 768px) {
	.hero-buttons {
		justify-content: flex-start;
	}
}

.hero-image-wrapper {
	width: 100%;
	position: relative;
	animation: slideInRight 0.8s ease-out;
}

@media (min-width: 768px) {
	.hero-image-wrapper {
		width: 50%;
	}
}

.hero-image {
	width: 100%;
	border-radius: 1rem;
	box-shadow: var(--shadow-2xl), var(--shadow-glow-cyan);
	border: 2px solid transparent;
	transition: all 0.4s ease;
	animation: scaleIn 1s ease-out;
}

.hero-image:hover {
	transform: scale(1.05) rotate(1deg);
	box-shadow: var(--shadow-2xl), var(--shadow-glow-cyan), var(--shadow-glow-orange);
	border-color: var(--primary-cyan);
}

.hero-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(to top, rgba(10, 14, 39, 0.8), rgba(10, 14, 39, 0.3), transparent);
	border-radius: 1rem;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.hero-image-wrapper:hover .hero-overlay {
	opacity: 1;
}

.hidden-mobile {
	display: none;
}

@media (min-width: 640px) {
	.hidden-mobile {
		display: block;
	}
}

/* ============================================
   BUTTONS - С АНИМАЦИЯМИ И ХОВЕРАМИ
   ============================================ */

.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.5rem;
	background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-orange) 100%);
	padding-left: 2rem;
	padding-right: 2rem;
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text-primary);
	box-shadow: var(--shadow-lg), var(--shadow-glow-cyan);
	transition: all 0.3s ease;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	background-size: 200% 200%;
	animation: gradient 3s ease infinite;
}

.btn-primary::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
	width: 300px;
	height: 300px;
}

.btn-primary:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: var(--shadow-xl), var(--shadow-glow-cyan), var(--shadow-glow-orange);
	animation: gradient 1s ease infinite;
}

.btn-primary:active {
	transform: translateY(-1px) scale(1.02);
}

.btn-primary:focus {
	outline: 2px solid transparent;
	outline-offset: 2px;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.5);
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--primary-cyan);
	border-radius: 0.5rem;
	padding-left: 2rem;
	padding-right: 2rem;
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--primary-cyan);
	background: transparent;
	transition: all 0.3s ease;
	text-decoration: none;
	position: relative;
	overflow: hidden;
}

.btn-secondary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
	transition: left 0.5s;
}

.btn-secondary:hover::before {
	left: 100%;
}

.btn-secondary:hover {
	background: rgba(37, 99, 235, 0.1);
	border-color: var(--primary-orange);
	color: var(--primary-orange);
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary:active {
	transform: translateY(-1px);
}

/* ============================================
   SECTIONS - ОБЩИЕ СТИЛИ
   ============================================ */

.section-spacing {
	padding-top: 5rem;
	padding-bottom: 5rem;
	position: relative;
}

.section-container {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

@media (min-width: 1024px) {
	.section-container {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

.section-wrapper {
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.section-bg-light {
	background-color: var(--bg-light);
	position: relative;
}

.section-bg-light::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
	opacity: 0.3;
}

.section-bg-white {
	background-color: var(--bg-white);
	position: relative;
}

.section-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border-radius: 9999px;
	border: 2px solid var(--primary-cyan);
	padding-left: 1rem;
	padding-right: 1rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--primary-cyan);
	background: rgba(37, 99, 235, 0.1);
	transition: all 0.3s ease;
	animation: fadeIn 0.6s ease-out;
}

.section-badge:hover {
	background: var(--primary-cyan);
	color: var(--text-primary);
	transform: scale(1.05);
	box-shadow: var(--shadow-glow-cyan);
}

.section-title {
	margin-top: 1rem;
	font-size: 1.875rem;
	font-weight: 700;
	letter-spacing: -0.025em;
	color: var(--text-primary);
	animation: fadeIn 0.8s ease-out;
	transition: all 0.3s ease;
}

.section-title:hover {
	color: var(--primary-cyan);
	transform: translateY(-2px);
}

@media (min-width: 640px) {
	.section-title {
		font-size: 2.25rem;
	}
}

.section-description {
	margin-top: 1rem;
	font-size: 1rem;
	line-height: 1.75;
	color: var(--text-secondary);
	animation: fadeIn 1s ease-out;
	transition: color 0.3s ease;
}

.section-description:hover {
	color: var(--text-primary);
}

/* ============================================
   CARDS - С АНИМАЦИЯМИ И ХОВЕРАМИ
   ============================================ */

.card {
	border-radius: 1rem;
	border: 2px solid var(--border-color);
	background-color: var(--bg-white);
	padding: 1.5rem;
	box-shadow: var(--shadow-md);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	animation: scaleIn 0.6s ease-out;
}

.card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-cyan), var(--primary-orange));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.card:hover::before {
	transform: scaleX(1);
}

.card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: var(--shadow-2xl), var(--shadow-glow-cyan);
	border-color: var(--primary-cyan);
}

.card-title {
	margin-top: 1rem;
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--text-primary);
	transition: color 0.3s ease;
}

.card:hover .card-title {
	color: var(--primary-cyan);
}

.card-text {
	margin-top: 0.5rem;
	font-size: 0.875rem;
	color: var(--text-secondary);
	transition: color 0.3s ease;
}

.card:hover .card-text {
	color: var(--text-primary);
}

/* ============================================
   ICONS - С АНИМАЦИЯМИ
   ============================================ */

.icon-wrapper {
	border-radius: 0.75rem;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(220, 38, 38, 0.1));
	color: var(--primary-cyan);
	display: inline-flex;
	padding: 0.75rem;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.icon-wrapper::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	opacity: 0;
	transition: opacity 0.4s ease;
	border-radius: 0.75rem;
}

.icon-wrapper:hover::before {
	opacity: 0.2;
}

.icon-wrapper:hover {
	transform: rotate(5deg) scale(1.1);
	box-shadow: var(--shadow-glow-cyan);
	color: var(--primary-orange);
}

.icon-wrapper-purple {
	background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
	color: var(--accent-purple);
}

.icon-wrapper-purple:hover {
	color: var(--accent-pink);
	box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.icon-size {
	width: 1.5rem;
	height: 1.5rem;
	position: relative;
	z-index: 1;
	transition: transform 0.3s ease;
}

.icon-wrapper:hover .icon-size {
	transform: scale(1.2);
}

/* ============================================
   SECTION CONTENT GRIDS
   ============================================ */

.section-content {
	margin-top: 4rem;
	display: grid;
	gap: 2.5rem;
	grid-template-columns: 1fr;
	animation: fadeIn 1.2s ease-out;
}

@media (min-width: 640px) {
	.section-content {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.section-content {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* ============================================
   PROCESS STEPS - С АНИМАЦИЯМИ
   ============================================ */

.process-grid {
	margin-top: 4rem;
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
	animation: fadeIn 1s ease-out;
}

@media (min-width: 640px) {
	.process-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.process-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.process-step {
	text-align: center;
	transition: all 0.4s ease;
	padding: 1.5rem;
	border-radius: 1rem;
	position: relative;
}

.process-step::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 1rem;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(220, 38, 38, 0.05));
	opacity: 0;
	transition: opacity 0.4s ease;
}

.process-step:hover::before {
	opacity: 1;
}

.process-step:hover {
	transform: translateY(-10px);
}

.process-number {
	margin: 0 auto;
	width: 4rem;
	height: 4rem;
	border-radius: 9999px;
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	box-shadow: var(--shadow-glow-cyan);
	transition: all 0.4s ease;
	position: relative;
	z-index: 1;
}

.process-step:hover .process-number {
	transform: scale(1.15) rotate(5deg);
	box-shadow: var(--shadow-glow-cyan), var(--shadow-glow-orange);
	animation: pulse 2s infinite;
}

.process-number-purple {
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
	box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.process-number-text {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	transition: transform 0.3s ease;
}

.process-step:hover .process-number-text {
	transform: scale(1.2);
}

.process-number-text-purple {
	color: var(--text-primary);
}

.process-title {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
	transition: color 0.3s ease;
	position: relative;
	z-index: 1;
}

.process-step:hover .process-title {
	color: var(--primary-cyan);
}

.process-description {
	font-size: 0.875rem;
	color: var(--text-secondary);
	transition: color 0.3s ease;
	position: relative;
	z-index: 1;
}

.process-step:hover .process-description {
	color: var(--text-primary);
}

/* ============================================
   ADVANTAGES GRID
   ============================================ */

.advantages-grid {
	margin-top: 4rem;
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
	animation: fadeIn 1s ease-out;
}

@media (min-width: 640px) {
	.advantages-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.advantages-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* ============================================
   TESTIMONIALS - С АНИМАЦИЯМИ
   ============================================ */

.testimonial-grid {
	margin-top: 4rem;
	display: grid;
	gap: 2.5rem;
	grid-template-columns: 1fr;
	animation: fadeIn 1s ease-out;
}

@media (min-width: 640px) {
	.testimonial-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.testimonial-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.testimonial-card {
	position: relative;
	display: flex;
	flex-direction: column;
	border-radius: 1rem;
	border: 2px solid var(--border-color);
	background-color: var(--bg-white);
	padding: 2rem;
	box-shadow: var(--shadow-md);
	transition: all 0.4s ease;
	overflow: hidden;
}

.testimonial-card::after {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.testimonial-card:hover::after {
	opacity: 1;
}

.testimonial-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: var(--shadow-2xl), var(--shadow-glow-cyan);
	border-color: var(--primary-cyan);
}

.testimonial-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	position: relative;
	z-index: 1;
}

.testimonial-avatar {
	width: 3rem;
	height: 3rem;
	border-radius: 9999px;
	object-fit: cover;
	border: 2px solid var(--primary-cyan);
	transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
	border-color: var(--primary-orange);
	transform: scale(1.1);
	box-shadow: var(--shadow-glow-cyan);
}

.testimonial-name {
	font-weight: 600;
	color: var(--text-primary);
	transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-name {
	color: var(--primary-cyan);
}

.testimonial-role {
	font-size: 0.875rem;
	color: var(--text-secondary);
	transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-role {
	color: var(--text-primary);
}

.testimonial-text {
	margin-top: 1.5rem;
	font-size: 0.875rem;
	line-height: 1.625;
	color: var(--text-secondary);
	transition: color 0.3s ease;
	position: relative;
	z-index: 1;
}

.testimonial-card:hover .testimonial-text {
	color: var(--text-primary);
}

.testimonial-rating {
	margin-top: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.25rem;
	color: var(--primary-orange);
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-rating {
	color: var(--primary-cyan);
	transform: scale(1.1);
}

.rating-star-empty {
	color: var(--border-color);
	transition: color 0.3s ease;
}

.testimonial-card:hover .rating-star-empty {
	color: var(--text-light);
}

/* ============================================
   SOLUTIONS GRID
   ============================================ */

.solutions-grid {
	margin-top: 4rem;
	display: grid;
	gap: 2.5rem;
	grid-template-columns: 1fr;
	animation: fadeIn 1s ease-out;
}

@media (min-width: 640px) {
	.solutions-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.solutions-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.solution-card {
	display: flex;
	flex-direction: column;
	border-radius: 1rem;
	border: 2px solid var(--border-color);
	background: linear-gradient(135deg, var(--bg-white) 0%, rgba(37, 99, 235, 0.02) 100%);
	padding: 2rem;
	box-shadow: var(--shadow-md);
	transition: all 0.4s ease;
	flex-grow: 1;
	position: relative;
	overflow: hidden;
}

.solution-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(220, 38, 38, 0.05));
	opacity: 0;
	transition: opacity 0.4s ease;
}

.solution-card:hover::before {
	opacity: 1;
}

.solution-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: var(--shadow-2xl), var(--shadow-glow-cyan);
	border-color: var(--primary-cyan);
}

.solution-icon {
	margin-bottom: 1rem;
	display: inline-flex;
	border-radius: 0.75rem;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(220, 38, 38, 0.1));
	color: var(--primary-cyan);
	padding: 0.75rem;
	width: fit-content;
	transition: all 0.4s ease;
	position: relative;
	z-index: 1;
}

.solution-card:hover .solution-icon {
	transform: rotate(10deg) scale(1.15);
	box-shadow: var(--shadow-glow-cyan);
}

.solution-title {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
	transition: color 0.3s ease;
	position: relative;
	z-index: 1;
}

.solution-card:hover .solution-title {
	color: var(--primary-cyan);
}

.solution-description {
	font-size: 0.875rem;
	color: var(--text-secondary);
	flex-grow: 1;
	transition: color 0.3s ease;
	position: relative;
	z-index: 1;
}

.solution-card:hover .solution-description {
	color: var(--text-primary);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
	margin-top: 4rem;
	text-align: center;
	animation: fadeIn 1s ease-out;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.about-content-grid {
	margin-top: 3rem;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	animation: fadeIn 1s ease-out;
}

@media (min-width: 1024px) {
	.about-content-grid {
		grid-template-columns: repeat(12, minmax(0, 1fr));
		align-items: center;
	}
}

.about-text-column {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

@media (min-width: 1024px) {
	.about-text-column {
		grid-column: span 6 / span 6;
	}
}

.about-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem;
	border-radius: 0.75rem;
	transition: all 0.3s ease;
}

.about-feature-item:hover {
	background: rgba(37, 99, 235, 0.05);
	transform: translateX(10px);
}

.about-image-column {
	position: relative;
	overflow: hidden;
	border-radius: 1rem;
	border: 2px solid var(--border-color);
	background: linear-gradient(to bottom right, rgba(37, 99, 235, 0.05), var(--bg-white));
	padding: 1.5rem;
	transition: all 0.4s ease;
}

.about-image-column:hover {
	border-color: var(--primary-cyan);
	box-shadow: var(--shadow-glow-cyan);
	transform: scale(1.02);
}

@media (min-width: 1024px) {
	.about-image-column {
		grid-column: span 6 / span 6;
	}
}

.about-buttons {
	padding-top: 0.5rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-grid {
	margin-top: 4rem;
	display: grid;
	gap: 3rem;
	grid-template-columns: 1fr;
	animation: fadeIn 1s ease-out;
}

@media (min-width: 1024px) {
	.contact-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem;
	border-radius: 0.75rem;
	transition: all 0.3s ease;
}

.contact-info-item:hover {
	background: rgba(37, 99, 235, 0.05);
	transform: translateX(10px);
}

.contact-icon {
	width: 1.5rem;
	height: 1.5rem;
	color: var(--primary-cyan);
	flex-shrink: 0;
	margin-top: 0.25rem;
	transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
	color: var(--primary-orange);
	transform: scale(1.2) rotate(5deg);
}

.contact-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text-primary);
	transition: color 0.3s ease;
}

.contact-info-item:hover .contact-label {
	color: var(--primary-cyan);
}

.contact-value {
	font-size: 0.875rem;
	color: var(--text-secondary);
	margin-top: 0.25rem;
	transition: color 0.3s ease;
}

.contact-info-item:hover .contact-value {
	color: var(--text-primary);
}

/* ============================================
   FORM STYLES - С АНИМАЦИЯМИ
   ============================================ */

.form-group {
	margin-bottom: 1.5rem;
	animation: fadeIn 0.6s ease-out;
}

.form-label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
	transition: color 0.3s ease;
}

.form-group:focus-within .form-label {
	color: var(--primary-cyan);
}

.form-input {
	display: block;
	width: 100%;
	border-radius: 0.75rem;
	border: 2px solid var(--border-color);
	background-color: var(--bg-white);
	padding-left: 0.75rem;
	padding-right: 0.75rem;
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	color: var(--text-primary);
	transition: all 0.3s ease;
	font-size: 0.875rem;
}

.form-input::placeholder {
	color: var(--text-light);
}

.form-input:focus {
	outline: 2px solid transparent;
	outline-offset: 2px;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
	border-color: var(--primary-cyan);
	transform: scale(1.01);
}

.form-input:hover {
	border-color: var(--primary-cyan);
}

.form-textarea {
	display: block;
	width: 100%;
	border-radius: 0.75rem;
	border: 2px solid var(--border-color);
	background-color: var(--bg-white);
	padding-left: 0.75rem;
	padding-right: 0.75rem;
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	color: var(--text-primary);
	min-height: 8rem;
	resize: vertical;
	transition: all 0.3s ease;
	font-size: 0.875rem;
	font-family: inherit;
}

.form-textarea::placeholder {
	color: var(--text-light);
}

.form-textarea:focus {
	outline: 2px solid transparent;
	outline-offset: 2px;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
	border-color: var(--primary-cyan);
	transform: scale(1.01);
}

.form-textarea:hover {
	border-color: var(--primary-cyan);
}

.form-submit {
	width: 100%;
}

@media (min-width: 640px) {
	.form-submit {
		width: auto;
	}
}

.form-success {
	margin-top: 1rem;
	display: none;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--primary-cyan);
	animation: fadeIn 0.5s ease-out;
}

/* ============================================
   CONTENT PAGE STYLES
   ============================================ */

.content-wrapper {
	max-width: 56rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.content-title {
	font-size: 1.875rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: fadeIn 0.6s ease-out;
}

.content-text {
	color: var(--text-secondary);
	margin-bottom: 1rem;
	line-height: 1.7;
	animation: fadeIn 0.8s ease-out;
}

.content-subtitle {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-top: 2rem;
	margin-bottom: 0.75rem;
	transition: color 0.3s ease;
	animation: fadeIn 0.7s ease-out;
}

.content-subtitle:hover {
	color: var(--primary-cyan);
}

.content-list {
	list-style-type: disc;
	padding-left: 1.5rem;
	color: var(--text-secondary);
	margin-bottom: 1rem;
	line-height: 1.8;
	animation: fadeIn 0.9s ease-out;
}

.content-list-item {
	margin-top: 0.5rem;
	transition: all 0.3s ease;
	padding-left: 0.5rem;
}

.content-list-item:hover {
	color: var(--primary-cyan);
	transform: translateX(5px);
}

/* ============================================
   FOOTER - С АНИМАЦИЯМИ И ХОВЕРАМИ
   ============================================ */

.footer {
	background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
	border-top: 2px solid transparent;
	position: relative;
	overflow: hidden;
	animation: fadeIn 0.8s ease-out;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary-cyan), var(--primary-orange), var(--primary-cyan));
	background-size: 200% 100%;
	animation: gradient 3s ease infinite;
	opacity: 0.8;
}

.footer::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
	transition: left 0.8s ease;
}

.footer:hover::after {
	left: 100%;
}

.footer-container {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	padding: 4rem 1.5rem 2rem;
	position: relative;
	z-index: 1;
}

@media (min-width: 768px) {
	.footer-container {
		padding-left: 3rem;
		padding-right: 3rem;
	}
}

@media (min-width: 1024px) {
	.footer-container {
		padding-left: 5rem;
		padding-right: 5rem;
	}
}

.footer-top {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

@media (min-width: 768px) {
	.footer-top {
		grid-template-columns: 1.5fr 2fr;
	}
}

@media (min-width: 1024px) {
	.footer-top {
		grid-template-columns: 1.2fr 2.8fr;
	}
}

.footer-section-title {
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--text-primary);
	margin-bottom: 0.75rem;
	transition: color 0.3s ease;
}

.footer-section-title:hover {
	color: var(--primary-cyan);
}

.footer-link {
	font-size: 0.875rem;
	color: var(--text-light);
	text-decoration: none;
	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: linear-gradient(90deg, var(--primary-cyan), var(--primary-orange));
	transition: width 0.3s ease;
}

.footer-link:hover {
	color: var(--primary-cyan);
	transform: translateX(5px);
}

.footer-link:hover::after {
	width: 100%;
}

.footer-text {
	font-size: 0.875rem;
	color: var(--text-light);
	line-height: 1.625;
	transition: color 0.3s ease;
}

.footer-text:hover {
	color: var(--text-primary);
}

.footer-divider {
	margin-top: 2.5rem;
	border-top: 1px solid rgba(37, 99, 235, 0.2);
	padding-top: 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	font-size: 0.875rem;
	color: var(--text-light);
}

@media (min-width: 640px) {
	.footer-divider {
		flex-direction: row;
	}
}

.footer-links {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
	flex-wrap: wrap;
	justify-content: center;
}

@media (min-width: 640px) {
	.footer-links {
		margin-top: 0;
	}
}

.footer-link-item {
	color: var(--text-light);
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

.footer-link-item::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-orange);
	transition: width 0.3s ease;
}

.footer-link-item:hover {
	color: var(--primary-orange);
	transform: translateY(-2px);
}

.footer-link-item:hover::after {
	width: 100%;
}

/* Footer Brand */
.footer-brand {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.footer-logo-link {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	text-decoration: none;
	transition: all 0.4s ease;
	width: fit-content;
	padding: 0.5rem;
	border-radius: 0.75rem;
	position: relative;
}

.footer-logo-link::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 0.75rem;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(220, 38, 38, 0.1));
	opacity: 0;
	transition: opacity 0.4s ease;
}

.footer-logo-link:hover::before {
	opacity: 1;
}

.footer-logo-link:hover {
	transform: translateY(-3px) scale(1.05);
}

.footer-logo-wrapper {
	position: relative;
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-logo-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: all 0.4s ease;
	filter: drop-shadow(0 0 10px rgba(37, 99, 235, 0.5));
	position: relative;
	z-index: 2;
}

.footer-logo-glow {
	position: absolute;
	inset: -5px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.3), transparent);
	opacity: 0;
	transition: opacity 0.4s ease;
	animation: pulse 3s ease-in-out infinite;
}

.footer-logo-link:hover .footer-logo-image {
	transform: rotate(5deg) scale(1.1);
	filter: drop-shadow(0 0 15px rgba(37, 99, 235, 0.7));
}

.footer-logo-link:hover .footer-logo-glow {
	opacity: 1;
}

.footer-logo-text {
	font-size: 1.5rem;
	font-weight: 700;
	background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-orange) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.025em;
	transition: all 0.4s ease;
}

.footer-logo-link:hover .footer-logo-text {
	transform: scale(1.05);
}

.footer-description {
	font-size: 0.9375rem;
	color: var(--text-light);
	line-height: 1.7;
	transition: color 0.3s ease;
}

.footer-description:hover {
	color: var(--text-primary);
}

.footer-social {
	display: flex;
	gap: 1rem;
	margin-top: 0.5rem;
}

.social-link {
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.5rem;
	background: rgba(37, 99, 235, 0.1);
	color: var(--text-light);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.social-link::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	opacity: 0;
	transition: opacity 0.4s ease;
}

.social-link:hover::before {
	opacity: 1;
}

.social-link:hover {
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.social-icon {
	width: 1.25rem;
	height: 1.25rem;
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
}

.social-link:hover .social-icon {
	color: var(--text-primary);
	transform: rotate(5deg) scale(1.2);
}

/* Footer Navigation */
.footer-nav-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 640px) {
	.footer-nav-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.footer-nav-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.footer-nav-column {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-title-icon {
	font-size: 1rem;
	transition: all 0.3s ease;
	opacity: 0.7;
}

.footer-section-title:hover .footer-title-icon {
	opacity: 1;
	transform: translateX(5px);
	color: var(--primary-orange);
}

.footer-nav-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.5rem 0;
	position: relative;
	border-radius: 0.5rem;
	padding-left: 0.5rem;
}

.footer-link::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 3px;
	background: linear-gradient(180deg, var(--primary-cyan), var(--primary-orange));
	transform: scaleY(0);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transform-origin: bottom;
	border-radius: 2px;
}

.footer-link:hover::before {
	transform: scaleY(1);
}

.footer-link-bullet,
.footer-link-icon {
	font-size: 0.875rem;
	transition: all 0.3s ease;
	opacity: 0.7;
}

.footer-link:hover .footer-link-bullet,
.footer-link:hover .footer-link-icon {
	opacity: 1;
	color: var(--primary-orange);
	transform: scale(1.2);
}

.footer-legal {
	margin-top: 1rem;
	font-size: 0.875rem;
	opacity: 0.8;
}

.footer-divider-line {
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
	position: relative;
}

.footer-divider-line::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 4px;
	height: 4px;
	background: var(--primary-orange);
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(220, 38, 38, 0.6);
}

.footer-bottom {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 1.5rem;
	font-size: 0.875rem;
	color: var(--text-light);
}

@media (min-width: 640px) {
	.footer-bottom {
		flex-direction: row;
	}
}

.footer-copyright {
	margin: 0;
	transition: color 0.3s ease;
}

.footer-copyright:hover {
	color: var(--text-primary);
}

.footer-link-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0;
	border-radius: 0.5rem;
}

.footer-link-arrow {
	font-size: 0.875rem;
	transition: all 0.3s ease;
	opacity: 0.7;
}

.footer-link-item:hover .footer-link-arrow {
	opacity: 1;
	transform: translateX(3px);
	color: var(--primary-cyan);
}

/* ============================================
   TECHNOLOGIE SECTION - FULL WIDTH
   ============================================ */

.technologie-section {
	position: relative;
	padding: 6rem 0;
	overflow: hidden;
	background: linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 50%, var(--bg-light) 100%);
}

.technologie-background {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.technologie-gradient-1 {
	position: absolute;
	top: -20%;
	left: -10%;
	width: 60%;
	height: 60%;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent);
	border-radius: 50%;
	filter: blur(80px);
	animation: float 8s ease-in-out infinite;
}

.technologie-gradient-2 {
	position: absolute;
	bottom: -20%;
	right: -10%;
	width: 60%;
	height: 60%;
	background: radial-gradient(circle, rgba(220, 38, 38, 0.15), transparent);
	border-radius: 50%;
	filter: blur(80px);
	animation: float 10s ease-in-out infinite reverse;
}

.technologie-content {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	position: relative;
	z-index: 1;
}

@media (min-width: 768px) {
	.technologie-content {
		padding-left: 3rem;
		padding-right: 3rem;
	}
}

@media (min-width: 1024px) {
	.technologie-content {
		padding-left: 5rem;
		padding-right: 5rem;
	}
}

.technologie-header {
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	margin-bottom: 4rem;
	animation: fadeIn 0.8s ease-out;
}

.technologie-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border-radius: 9999px;
	border: 2px solid var(--primary-cyan);
	padding-left: 1rem;
	padding-right: 1rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--primary-cyan);
	background: rgba(37, 99, 235, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.badge-glow {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.technologie-badge:hover .badge-glow {
	opacity: 0.2;
}

.technologie-badge:hover {
	background: var(--primary-cyan);
	color: var(--text-primary);
	transform: scale(1.05);
	box-shadow: var(--shadow-glow-cyan);
}

.technologie-title {
	margin-top: 1rem;
	font-size: 1.875rem;
	font-weight: 700;
	letter-spacing: -0.025em;
	color: var(--text-primary);
	animation: fadeIn 1s ease-out;
	transition: all 0.3s ease;
}

.technologie-title:hover {
	color: var(--primary-cyan);
	transform: translateY(-2px);
}

@media (min-width: 640px) {
	.technologie-title {
		font-size: 2.25rem;
	}
}

@media (min-width: 1024px) {
	.technologie-title {
		font-size: 3rem;
	}
}

.technologie-description {
	margin-top: 1rem;
	font-size: 1rem;
	line-height: 1.75;
	color: var(--text-secondary);
	animation: fadeIn 1.2s ease-out;
	transition: color 0.3s ease;
}

.technologie-description:hover {
	color: var(--text-primary);
}

.technologie-grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
	animation: fadeIn 1.4s ease-out;
}

@media (min-width: 640px) {
	.technologie-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.technologie-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.technologie-card {
	position: relative;
	border-radius: 1.5rem;
	border: 2px solid var(--border-color);
	background: linear-gradient(135deg, var(--bg-white) 0%, rgba(37, 99, 235, 0.02) 100%);
	padding: 2rem;
	box-shadow: var(--shadow-md);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	cursor: pointer;
}

.technologie-card-glow {
	position: absolute;
	inset: -2px;
	border-radius: 1.5rem;
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: -1;
	filter: blur(20px);
}

.technologie-card:hover .technologie-card-glow {
	opacity: 0.6;
}

.technologie-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: var(--shadow-2xl), var(--shadow-glow-cyan);
	border-color: var(--primary-cyan);
}

.technologie-card-content {
	position: relative;
	z-index: 1;
}

.technologie-icon-wrapper {
	position: relative;
	width: 4rem;
	height: 4rem;
	margin-bottom: 1.5rem;
}

.technologie-icon-bg {
	position: absolute;
	inset: 0;
	border-radius: 1rem;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(220, 38, 38, 0.1));
	transition: all 0.4s ease;
}

.technologie-card:hover .technologie-icon-bg {
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	transform: rotate(5deg) scale(1.1);
	box-shadow: var(--shadow-glow-cyan);
}

.technologie-icon {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	color: var(--primary-cyan);
	transition: all 0.4s ease;
}

.technologie-card:hover .technologie-icon {
	color: var(--text-primary);
	transform: scale(1.1) rotate(-5deg);
}

.technologie-card-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.75rem;
	transition: color 0.3s ease;
}

.technologie-card:hover .technologie-card-title {
	color: var(--primary-cyan);
}

.technologie-card-text {
	font-size: 0.9375rem;
	color: var(--text-secondary);
	line-height: 1.7;
	transition: color 0.3s ease;
}

.technologie-card:hover .technologie-card-text {
	color: var(--text-primary);
}

.technologie-card-arrow {
	position: absolute;
	bottom: 2rem;
	right: 2rem;
	font-size: 1.5rem;
	color: var(--primary-cyan);
	transition: all 0.4s ease;
	opacity: 0;
	transform: translateX(-10px);
}

.technologie-card:hover .technologie-card-arrow {
	opacity: 1;
	transform: translateX(0);
	color: var(--primary-orange);
}

/* ============================================
   RESENI SECTION - FULL WIDTH
   ============================================ */

.reseni-section {
	position: relative;
	padding: 6rem 0;
	overflow: hidden;
	background: linear-gradient(135deg, var(--bg-white) 0%, rgba(220, 38, 38, 0.05) 50%, var(--bg-white) 100%);
}

.reseni-background {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.reseni-gradient-1 {
	position: absolute;
	top: -20%;
	right: -10%;
	width: 60%;
	height: 60%;
	background: radial-gradient(circle, rgba(220, 38, 38, 0.15), transparent);
	border-radius: 50%;
	filter: blur(80px);
	animation: float 9s ease-in-out infinite;
}

.reseni-gradient-2 {
	position: absolute;
	bottom: -20%;
	left: -10%;
	width: 60%;
	height: 60%;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent);
	border-radius: 50%;
	filter: blur(80px);
	animation: float 11s ease-in-out infinite reverse;
}

.reseni-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.05) 0%, transparent 50%);
	opacity: 0.5;
}

.reseni-content {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	position: relative;
	z-index: 1;
}

@media (min-width: 768px) {
	.reseni-content {
		padding-left: 3rem;
		padding-right: 3rem;
	}
}

@media (min-width: 1024px) {
	.reseni-content {
		padding-left: 5rem;
		padding-right: 5rem;
	}
}

.reseni-header {
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	margin-bottom: 4rem;
	animation: fadeIn 0.8s ease-out;
}

.reseni-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border-radius: 9999px;
	border: 2px solid var(--primary-orange);
	padding-left: 1rem;
	padding-right: 1rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--primary-orange);
	background: rgba(220, 38, 38, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.reseni-badge:hover .badge-glow {
	opacity: 0.2;
}

.reseni-badge:hover {
	background: var(--primary-orange);
	color: var(--text-primary);
	transform: scale(1.05);
	box-shadow: 0 0 20px rgba(220, 38, 38, 0.4);
}

.reseni-title {
	margin-top: 1rem;
	font-size: 1.875rem;
	font-weight: 700;
	letter-spacing: -0.025em;
	color: var(--text-primary);
	animation: fadeIn 1s ease-out;
	transition: all 0.3s ease;
}

.reseni-title:hover {
	color: var(--primary-orange);
	transform: translateY(-2px);
}

@media (min-width: 640px) {
	.reseni-title {
		font-size: 2.25rem;
	}
}

@media (min-width: 1024px) {
	.reseni-title {
		font-size: 3rem;
	}
}

.reseni-description {
	margin-top: 1rem;
	font-size: 1rem;
	line-height: 1.75;
	color: var(--text-secondary);
	animation: fadeIn 1.2s ease-out;
	transition: color 0.3s ease;
}

.reseni-description:hover {
	color: var(--text-primary);
}

.reseni-grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
	animation: fadeIn 1.4s ease-out;
}

@media (min-width: 640px) {
	.reseni-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.reseni-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.reseni-card {
	position: relative;
	border-radius: 1.5rem;
	border: 2px solid var(--border-color);
	background: linear-gradient(135deg, var(--bg-white) 0%, rgba(220, 38, 38, 0.02) 100%);
	padding: 2.5rem;
	box-shadow: var(--shadow-md);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	cursor: pointer;
}

.reseni-card-glow {
	position: absolute;
	inset: -2px;
	border-radius: 1.5rem;
	background: linear-gradient(135deg, var(--primary-orange), var(--primary-cyan));
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: -1;
	filter: blur(20px);
}

.reseni-card:hover .reseni-card-glow {
	opacity: 0.6;
}

.reseni-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: var(--shadow-2xl), 0 0 30px rgba(220, 38, 38, 0.3);
	border-color: var(--primary-orange);
}

.reseni-card-content {
	position: relative;
	z-index: 1;
}

.reseni-icon-wrapper {
	position: relative;
	width: 4.5rem;
	height: 4.5rem;
	margin-bottom: 1.5rem;
}

.reseni-icon-bg {
	position: absolute;
	inset: 0;
	border-radius: 1.25rem;
	background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(37, 99, 235, 0.1));
	transition: all 0.4s ease;
}

.reseni-card:hover .reseni-icon-bg {
	background: linear-gradient(135deg, var(--primary-orange), var(--primary-cyan));
	transform: rotate(-5deg) scale(1.1);
	box-shadow: 0 0 25px rgba(220, 38, 38, 0.4);
}

.reseni-icon {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	color: var(--primary-orange);
	transition: all 0.4s ease;
}

.reseni-card:hover .reseni-icon {
	color: var(--text-primary);
	transform: scale(1.1) rotate(5deg);
}

.reseni-card-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.75rem;
	transition: color 0.3s ease;
}

.reseni-card:hover .reseni-card-title {
	color: var(--primary-orange);
}

.reseni-card-text {
	font-size: 0.9375rem;
	color: var(--text-secondary);
	line-height: 1.7;
	transition: color 0.3s ease;
}

.reseni-card:hover .reseni-card-text {
	color: var(--text-primary);
}

.reseni-card-arrow {
	position: absolute;
	bottom: 2.5rem;
	right: 2.5rem;
	font-size: 1.5rem;
	color: var(--primary-orange);
	transition: all 0.4s ease;
	opacity: 0;
	transform: translateX(-10px);
}

.reseni-card:hover .reseni-card-arrow {
	opacity: 1;
	transform: translateX(0);
	color: var(--primary-cyan);
}

.reseni-cta {
	margin-top: 4rem;
	text-align: center;
	animation: fadeIn 1.6s ease-out;
}

.reseni-cta-button {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	border-radius: 0.75rem;
	background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-cyan) 100%);
	padding-left: 2.5rem;
	padding-right: 2.5rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-primary);
	box-shadow: var(--shadow-lg), 0 0 25px rgba(220, 38, 38, 0.3);
	transition: all 0.4s ease;
	text-decoration: none;
	position: relative;
	overflow: hidden;
}

.reseni-cta-button::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	opacity: 0;
	transition: opacity 0.4s ease;
}

.reseni-cta-button:hover::before {
	opacity: 1;
}

.reseni-cta-button:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: var(--shadow-2xl), 0 0 40px rgba(220, 38, 38, 0.5);
}

.reseni-cta-arrow {
	position: relative;
	z-index: 1;
	transition: transform 0.4s ease;
}

.reseni-cta-button:hover .reseni-cta-arrow {
	transform: translateX(5px);
}

/* ============================================
   JAK FUNGUJE SECTION - FULL WIDTH
   ============================================ */

.jak-funguje-section {
	position: relative;
	padding: 6rem 0;
	overflow: hidden;
	background: linear-gradient(135deg, var(--bg-light) 0%, rgba(168, 85, 247, 0.05) 50%, var(--bg-light) 100%);
}

.jak-funguje-background {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.jak-funguje-gradient-1 {
	position: absolute;
	top: 10%;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	height: 40%;
	background: radial-gradient(ellipse, rgba(37, 99, 235, 0.1), transparent);
	filter: blur(100px);
	animation: float 12s ease-in-out infinite;
}

.jak-funguje-gradient-2 {
	position: absolute;
	bottom: 10%;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	height: 40%;
	background: radial-gradient(ellipse, rgba(220, 38, 38, 0.1), transparent);
	filter: blur(100px);
	animation: float 14s ease-in-out infinite reverse;
}

.jak-funguje-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(45deg, transparent 30%, rgba(37, 99, 235, 0.03) 50%, transparent 70%),
		linear-gradient(-45deg, transparent 30%, rgba(220, 38, 38, 0.03) 50%, transparent 70%);
	background-size: 100px 100px;
	opacity: 0.5;
}

.jak-funguje-content {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	position: relative;
	z-index: 1;
}

@media (min-width: 768px) {
	.jak-funguje-content {
		padding-left: 3rem;
		padding-right: 3rem;
	}
}

@media (min-width: 1024px) {
	.jak-funguje-content {
		padding-left: 5rem;
		padding-right: 5rem;
	}
}

.jak-funguje-header {
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	margin-bottom: 5rem;
	animation: fadeIn 0.8s ease-out;
}

.jak-funguje-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border-radius: 9999px;
	border: 2px solid var(--accent-purple);
	padding-left: 1rem;
	padding-right: 1rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--accent-purple);
	background: rgba(168, 85, 247, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.jak-funguje-badge:hover .badge-glow {
	opacity: 0.2;
}

.jak-funguje-badge:hover {
	background: var(--accent-purple);
	color: var(--text-primary);
	transform: scale(1.05);
	box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.jak-funguje-title {
	margin-top: 1rem;
	font-size: 1.875rem;
	font-weight: 700;
	letter-spacing: -0.025em;
	color: var(--text-primary);
	animation: fadeIn 1s ease-out;
	transition: all 0.3s ease;
}

.jak-funguje-title:hover {
	color: var(--accent-purple);
	transform: translateY(-2px);
}

@media (min-width: 640px) {
	.jak-funguje-title {
		font-size: 2.25rem;
	}
}

@media (min-width: 1024px) {
	.jak-funguje-title {
		font-size: 3rem;
	}
}

.jak-funguje-description {
	margin-top: 1rem;
	font-size: 1rem;
	line-height: 1.75;
	color: var(--text-secondary);
	animation: fadeIn 1.2s ease-out;
	transition: color 0.3s ease;
}

.jak-funguje-description:hover {
	color: var(--text-primary);
}

.jak-funguje-steps {
	display: grid;
	gap: 3rem;
	grid-template-columns: 1fr;
	position: relative;
	animation: fadeIn 1.4s ease-out;
}

@media (min-width: 768px) {
	.jak-funguje-steps {
		grid-template-columns: repeat(2, 1fr);
		gap: 4rem 2rem;
	}
}

@media (min-width: 1024px) {
	.jak-funguje-steps {
		grid-template-columns: repeat(4, 1fr);
		gap: 2rem;
	}
}

.jak-funguje-step {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 2rem 1.5rem;
	border-radius: 1.5rem;
	background: linear-gradient(135deg, var(--bg-white) 0%, rgba(168, 85, 247, 0.02) 100%);
	border: 2px solid var(--border-color);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
}

.jak-funguje-step::before {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: 1.5rem;
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: -1;
	filter: blur(20px);
}

.jak-funguje-step:hover::before {
	opacity: 0.6;
}

.jak-funguje-step:hover {
	transform: translateY(-15px) scale(1.03);
	box-shadow: var(--shadow-2xl), var(--shadow-glow-cyan);
	border-color: var(--primary-cyan);
}

.step-connector {
	display: none;
	position: absolute;
	top: 50%;
	left: 100%;
	width: 2rem;
	height: 3px;
	background: linear-gradient(90deg, var(--primary-cyan), var(--primary-orange));
	transform: translateY(-50%);
	z-index: 0;
}

@media (min-width: 1024px) {
	.step-connector {
		display: block;
	}
}

.step-connector-last {
	display: none;
}

.step-number-wrapper {
	position: relative;
	width: 5rem;
	height: 5rem;
	margin-bottom: 1.5rem;
}

.step-number-glow {
	position: absolute;
	inset: -10px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.3), transparent);
	opacity: 0;
	transition: opacity 0.4s ease;
	animation: pulse 3s ease-in-out infinite;
}

.step-number-glow-alt {
	background: radial-gradient(circle, rgba(220, 38, 38, 0.3), transparent);
}

.jak-funguje-step:hover .step-number-glow {
	opacity: 1;
	animation: pulse 1s ease-in-out infinite;
}

.step-number {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-glow-cyan);
	transition: all 0.4s ease;
	z-index: 1;
}

.step-number-alt {
	background: linear-gradient(135deg, var(--primary-orange), var(--accent-purple));
	box-shadow: 0 0 20px rgba(220, 38, 38, 0.4);
}

.jak-funguje-step:hover .step-number {
	transform: scale(1.15) rotate(10deg);
	box-shadow: var(--shadow-glow-cyan), var(--shadow-glow-orange);
}

.step-number-text {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-primary);
	transition: transform 0.3s ease;
}

.jak-funguje-step:hover .step-number-text {
	transform: scale(1.2);
}

.step-content {
	position: relative;
	z-index: 1;
}

.step-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.75rem;
	transition: color 0.3s ease;
}

.jak-funguje-step:hover .step-title {
	color: var(--primary-cyan);
}

.step-description {
	font-size: 0.9375rem;
	color: var(--text-secondary);
	line-height: 1.7;
	transition: color 0.3s ease;
}

.jak-funguje-step:hover .step-description {
	color: var(--text-primary);
}

/* ============================================
   RESENI SECTION NEW - ПОЛНОСТЬЮ ПЕРЕДЕЛАНА
   ============================================ */

.reseni-section-new {
	position: relative;
	padding: 8rem 0;
	overflow: hidden;
	background: var(--bg-light);
}

.reseni-bg-wrapper {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.reseni-bg-gradient {
	position: absolute;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.6;
	animation: float 20s ease-in-out infinite;
}

.reseni-bg-gradient-1 {
	top: -30%;
	left: -10%;
	width: 60%;
	height: 60%;
	background: radial-gradient(circle, rgba(220, 38, 38, 0.4), transparent);
	animation-duration: 15s;
}

.reseni-bg-gradient-2 {
	bottom: -30%;
	right: -10%;
	width: 70%;
	height: 70%;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.4), transparent);
	animation-duration: 18s;
	animation-delay: -5s;
}

.reseni-bg-gradient-3 {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50%;
	height: 50%;
	background: radial-gradient(circle, rgba(168, 85, 247, 0.3), transparent);
	animation-duration: 22s;
	animation-delay: -10s;
}

.reseni-bg-particles {
	position: absolute;
	inset: 0;
	background-image: 
		radial-gradient(2px 2px at 20% 30%, rgba(220, 38, 38, 0.3), transparent),
		radial-gradient(2px 2px at 60% 70%, rgba(37, 99, 235, 0.3), transparent),
		radial-gradient(1px 1px at 50% 50%, rgba(168, 85, 247, 0.2), transparent),
		radial-gradient(1px 1px at 80% 10%, rgba(220, 38, 38, 0.2), transparent);
	background-size: 200% 200%;
	animation: particleMove 30s linear infinite;
	opacity: 0.4;
}

@keyframes particleMove {
	0% { background-position: 0% 0%, 100% 100%, 50% 50%, 0% 100%; }
	100% { background-position: 100% 100%, 0% 0%, 50% 50%, 100% 0%; }
}

.reseni-wrapper-new {
	max-width: 90rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	position: relative;
	z-index: 1;
}

@media (min-width: 768px) {
	.reseni-wrapper-new {
		padding-left: 3rem;
		padding-right: 3rem;
	}
}

@media (min-width: 1024px) {
	.reseni-wrapper-new {
		padding-left: 5rem;
		padding-right: 5rem;
	}
}

.reseni-header-new {
	text-align: center;
	margin-bottom: 5rem;
	animation: fadeIn 0.8s ease-out;
}

.reseni-badge-new {
	display: inline-flex;
	align-items: center;
	position: relative;
	border-radius: 9999px;
	padding: 0.75rem 1.5rem;
	background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(37, 99, 235, 0.1));
	border: 2px solid transparent;
	background-clip: padding-box;
	overflow: hidden;
	margin-bottom: 1.5rem;
}

.reseni-badge-new::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 9999px;
	padding: 2px;
	background: linear-gradient(135deg, var(--primary-orange), var(--primary-cyan));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	animation: rotate 3s linear infinite;
}

.reseni-badge-shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	animation: shine 3s infinite;
}

@keyframes shine {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(200%); }
}

.reseni-badge-text {
	position: relative;
	z-index: 1;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--primary-orange);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.reseni-title-new {
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
}

.title-line {
	display: block;
	animation: slideInUp 0.8s ease-out;
}

.title-line:nth-child(2) {
	animation-delay: 0.2s;
}

.title-highlight {
	background: linear-gradient(135deg, var(--primary-orange), var(--primary-cyan));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

@media (min-width: 640px) {
	.reseni-title-new {
		font-size: 3.5rem;
	}
}

@media (min-width: 1024px) {
	.reseni-title-new {
		font-size: 4.5rem;
	}
}

.reseni-desc-new {
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.125rem;
	line-height: 1.8;
	color: var(--text-secondary);
	animation: fadeIn 1.2s ease-out;
}

.reseni-cards-new {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
	margin-bottom: 4rem;
}

@media (min-width: 640px) {
	.reseni-cards-new {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.reseni-cards-new {
		grid-template-columns: repeat(3, 1fr);
		gap: 2.5rem;
	}
}

.reseni-card-new {
	position: relative;
	border-radius: 2rem;
	background: var(--bg-white);
	border: 1px solid var(--border-color);
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
}

.reseni-card-border {
	position: absolute;
	inset: -1px;
	border-radius: 2rem;
	background: linear-gradient(135deg, var(--primary-orange), var(--primary-cyan), var(--accent-purple));
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 0;
}

.reseni-card-new:hover .reseni-card-border {
	opacity: 1;
}

.reseni-card-shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
	opacity: 0;
	transform: translateX(-100%) skewX(-20deg);
	transition: all 0.6s ease;
	z-index: 2;
}

.reseni-card-new:hover .reseni-card-shine {
	opacity: 1;
	transform: translateX(200%) skewX(-20deg);
}

.reseni-card-inner {
	position: relative;
	z-index: 1;
	padding: 2.5rem;
	background: var(--bg-white);
	margin: 1px;
	border-radius: calc(2rem - 1px);
}

.reseni-card-new:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 40px rgba(220, 38, 38, 0.2);
}

.reseni-card-icon-box {
	position: relative;
	width: 5rem;
	height: 5rem;
	margin-bottom: 1.5rem;
}

.reseni-card-icon-glow {
	position: absolute;
	inset: -10px;
	border-radius: 1.5rem;
	background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(37, 99, 235, 0.2));
	opacity: 0;
	transition: opacity 0.4s ease;
	filter: blur(20px);
}

.reseni-card-new:hover .reseni-card-icon-glow {
	opacity: 1;
}

.reseni-card-icon {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	color: var(--primary-orange);
	transition: all 0.4s ease;
}

.reseni-card-new:hover .reseni-card-icon {
	color: var(--primary-cyan);
	transform: scale(1.1) rotate(5deg);
}

.reseni-card-title-new {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1rem;
	transition: color 0.3s ease;
}

.reseni-card-new:hover .reseni-card-title-new {
	color: var(--primary-orange);
}

.reseni-card-text-new {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	transition: color 0.3s ease;
}

.reseni-card-new:hover .reseni-card-text-new {
	color: var(--text-primary);
}

.reseni-card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--primary-orange);
	transition: all 0.3s ease;
}

.reseni-link-arrow {
	width: 1.25rem;
	height: 1.25rem;
	transition: transform 0.3s ease;
}

.reseni-card-new:hover .reseni-link-arrow {
	transform: translateX(5px);
}

.reseni-card-new:hover .reseni-card-link {
	color: var(--primary-cyan);
}

.reseni-cta-new {
	text-align: center;
	animation: fadeIn 1.4s ease-out;
}

.reseni-btn-new {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	position: relative;
	border-radius: 1rem;
	padding: 1.25rem 2.5rem;
	background: linear-gradient(135deg, var(--primary-orange), var(--primary-cyan));
	color: var(--text-primary);
	font-size: 1.125rem;
	font-weight: 600;
	text-decoration: none;
	overflow: hidden;
	transition: all 0.4s ease;
	box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.reseni-btn-new::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	opacity: 0;
	transition: opacity 0.4s ease;
}

.reseni-btn-new:hover::before {
	opacity: 1;
}

.reseni-btn-new:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

.reseni-btn-text {
	position: relative;
	z-index: 1;
}

.reseni-btn-icon {
	position: relative;
	z-index: 1;
	width: 1.5rem;
	height: 1.5rem;
	transition: transform 0.4s ease;
}

.reseni-btn-new:hover .reseni-btn-icon {
	transform: translateX(5px);
}

.reseni-btn-ripple {
	position: absolute;
	inset: 0;
	border-radius: 1rem;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
	opacity: 0;
	transform: scale(0);
	transition: all 0.6s ease;
}

.reseni-btn-new:active .reseni-btn-ripple {
	opacity: 1;
	transform: scale(2);
}

/* ============================================
   JAK FUNGUJE SECTION NEW - ПОЛНОСТЬЮ ПЕРЕДЕЛАНА
   ============================================ */

.jak-funguje-section-new {
	position: relative;
	padding: 8rem 0;
	overflow: hidden;
	background: var(--bg-white);
}

.jak-funguje-bg-wrapper {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.jak-funguje-bg-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	opacity: 0.5;
	animation: float 25s ease-in-out infinite;
}

.jak-funguje-bg-orb-1 {
	top: 10%;
	left: 10%;
	width: 40%;
	height: 40%;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.4), transparent);
	animation-duration: 20s;
}

.jak-funguje-bg-orb-2 {
	top: 50%;
	right: 10%;
	width: 35%;
	height: 35%;
	background: radial-gradient(circle, rgba(220, 38, 38, 0.4), transparent);
	animation-duration: 18s;
	animation-delay: -7s;
}

.jak-funguje-bg-orb-3 {
	bottom: 10%;
	left: 50%;
	transform: translateX(-50%);
	width: 30%;
	height: 30%;
	background: radial-gradient(circle, rgba(168, 85, 247, 0.3), transparent);
	animation-duration: 22s;
	animation-delay: -12s;
}

.jak-funguje-bg-lines {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(90deg, transparent 0%, rgba(37, 99, 235, 0.1) 50%, transparent 100%),
		linear-gradient(0deg, transparent 0%, rgba(220, 38, 38, 0.1) 50%, transparent 100%);
	background-size: 200px 200px, 200px 200px;
	background-position: 0 0, 100px 100px;
	opacity: 0.3;
	animation: lineMove 20s linear infinite;
}

@keyframes lineMove {
	0% { background-position: 0 0, 100px 100px; }
	100% { background-position: 200px 200px, 300px 300px; }
}

.jak-funguje-wrapper-new {
	max-width: 90rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	position: relative;
	z-index: 1;
}

@media (min-width: 768px) {
	.jak-funguje-wrapper-new {
		padding-left: 3rem;
		padding-right: 3rem;
	}
}

@media (min-width: 1024px) {
	.jak-funguje-wrapper-new {
		padding-left: 5rem;
		padding-right: 5rem;
	}
}

.jak-funguje-header-new {
	text-align: center;
	margin-bottom: 6rem;
	animation: fadeIn 0.8s ease-out;
}

.jak-funguje-badge-new {
	display: inline-flex;
	align-items: center;
	position: relative;
	border-radius: 9999px;
	padding: 0.75rem 1.5rem;
	background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(37, 99, 235, 0.1));
	border: 2px solid transparent;
	background-clip: padding-box;
	overflow: hidden;
	margin-bottom: 1.5rem;
}

.jak-funguje-badge-new::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 9999px;
	padding: 2px;
	background: linear-gradient(135deg, var(--accent-purple), var(--primary-cyan));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	animation: rotate 3s linear infinite;
}

.jak-funguje-badge-shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	animation: shine 3s infinite;
}

.jak-funguje-badge-text {
	position: relative;
	z-index: 1;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--accent-purple);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.jak-funguje-title-new {
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
}

.jak-funguje-title-new .title-line {
	display: block;
	animation: slideInUp 0.8s ease-out;
}

.jak-funguje-title-new .title-line:nth-child(2) {
	animation-delay: 0.2s;
}

.jak-funguje-title-new .title-highlight {
	background: linear-gradient(135deg, var(--accent-purple), var(--primary-cyan));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

@media (min-width: 640px) {
	.jak-funguje-title-new {
		font-size: 3.5rem;
	}
}

@media (min-width: 1024px) {
	.jak-funguje-title-new {
		font-size: 4.5rem;
	}
}

.jak-funguje-desc-new {
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.125rem;
	line-height: 1.8;
	color: var(--text-secondary);
	animation: fadeIn 1.2s ease-out;
}

.jak-funguje-timeline {
	position: relative;
	max-width: 70rem;
	margin-left: auto;
	margin-right: auto;
}

.timeline-line {
	position: absolute;
	left: 2rem;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(180deg, var(--primary-cyan), var(--primary-orange), var(--accent-purple));
	border-radius: 9999px;
	opacity: 0.3;
}

@media (min-width: 768px) {
	.timeline-line {
		left: 50%;
		transform: translateX(-50%);
		width: 4px;
	}
}

.jak-funguje-step-new {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 2rem;
	margin-bottom: 4rem;
	align-items: start;
}

@media (min-width: 768px) {
	.jak-funguje-step-new {
		grid-template-columns: 1fr auto;
		gap: 3rem;
		margin-bottom: 5rem;
	}
	
	.jak-funguje-step-new:nth-child(even) {
		grid-template-columns: auto 1fr;
	}
}

.step-marker {
	position: relative;
	width: 4rem;
	height: 4rem;
	flex-shrink: 0;
}

@media (min-width: 768px) {
	.step-marker {
		width: 5rem;
		height: 5rem;
	}
}

.step-marker-ring {
	position: absolute;
	inset: -5px;
	border: 3px solid var(--primary-cyan);
	border-radius: 50%;
	opacity: 0.3;
	animation: pulse-ring 2s ease-in-out infinite;
}

.step-marker-alt .step-marker-ring {
	border-color: var(--primary-orange);
}

.step-marker-core {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
	z-index: 1;
	transition: all 0.4s ease;
}

.step-marker-core-alt {
	background: linear-gradient(135deg, var(--primary-orange), var(--accent-purple));
	box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.jak-funguje-step-new:hover .step-marker-core {
	transform: scale(1.15) rotate(10deg);
	box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.step-number-new {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--text-primary);
}

@media (min-width: 768px) {
	.step-number-new {
		font-size: 2rem;
	}
}

.step-marker-pulse {
	position: absolute;
	inset: -10px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.3), transparent);
	opacity: 0;
	animation: pulse-glow 3s ease-in-out infinite;
}

.step-marker-alt .step-marker-pulse {
	background: radial-gradient(circle, rgba(220, 38, 38, 0.3), transparent);
}

@keyframes pulse-ring {
	0%, 100% { transform: scale(1); opacity: 0.3; }
	50% { transform: scale(1.2); opacity: 0.1; }
}

@keyframes pulse-glow {
	0%, 100% { transform: scale(1); opacity: 0; }
	50% { transform: scale(1.5); opacity: 0.6; }
}

.step-card-new {
	position: relative;
	border-radius: 1.5rem;
	background: var(--bg-white);
	border: 2px solid var(--border-color);
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card-glow {
	position: absolute;
	inset: -2px;
	border-radius: 1.5rem;
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 0;
	filter: blur(20px);
}

.jak-funguje-step-new:hover .step-card-glow {
	opacity: 0.4;
}

.jak-funguje-step-new:hover .step-card-new {
	transform: translateX(10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 30px rgba(37, 99, 235, 0.2);
	border-color: var(--primary-cyan);
}

@media (min-width: 768px) {
	.jak-funguje-step-new:nth-child(even):hover .step-card-new {
		transform: translateX(-10px);
	}
}

.step-card-content-new {
	position: relative;
	z-index: 1;
	padding: 2rem;
	background: var(--bg-white);
}

.step-icon-new {
	width: 3rem;
	height: 3rem;
	margin-bottom: 1rem;
	color: var(--primary-cyan);
	transition: all 0.4s ease;
}

.jak-funguje-step-new:hover .step-icon-new {
	color: var(--primary-orange);
	transform: scale(1.1) rotate(-5deg);
}

.step-title-new {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.75rem;
	transition: color 0.3s ease;
}

.jak-funguje-step-new:hover .step-title-new {
	color: var(--primary-cyan);
}

.step-desc-new {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text-secondary);
	transition: color 0.3s ease;
}

.jak-funguje-step-new:hover .step-desc-new {
	color: var(--text-primary);
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes rotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* ============================================
   REFERENCE SECTION NEW - ПОЛНОСТЬЮ ПЕРЕДЕЛАНА
   ============================================ */

.reference-section-new {
	position: relative;
	padding: 8rem 0;
	overflow: hidden;
	background: var(--bg-light);
}

.reference-bg-wrapper {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.reference-bg-gradient {
	position: absolute;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.5;
	animation: float 18s ease-in-out infinite;
}

.reference-bg-gradient-1 {
	top: -20%;
	left: 20%;
	width: 50%;
	height: 50%;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.4), transparent);
	animation-duration: 16s;
}

.reference-bg-gradient-2 {
	bottom: -20%;
	right: 20%;
	width: 55%;
	height: 55%;
	background: radial-gradient(circle, rgba(220, 38, 38, 0.4), transparent);
	animation-duration: 20s;
	animation-delay: -6s;
}

.reference-bg-gradient-3 {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 45%;
	height: 45%;
	background: radial-gradient(circle, rgba(168, 85, 247, 0.3), transparent);
	animation-duration: 24s;
	animation-delay: -12s;
}

.reference-bg-shapes {
	position: absolute;
	inset: 0;
	background-image: 
		radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 75% 75%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
	opacity: 0.6;
	animation: float 30s ease-in-out infinite;
}

.reference-wrapper-new {
	max-width: 90rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	position: relative;
	z-index: 1;
}

@media (min-width: 768px) {
	.reference-wrapper-new {
		padding-left: 3rem;
		padding-right: 3rem;
	}
}

@media (min-width: 1024px) {
	.reference-wrapper-new {
		padding-left: 5rem;
		padding-right: 5rem;
	}
}

.reference-header-new {
	text-align: center;
	margin-bottom: 5rem;
	animation: fadeIn 0.8s ease-out;
}

.reference-badge-new {
	display: inline-flex;
	align-items: center;
	position: relative;
	border-radius: 9999px;
	padding: 0.75rem 1.5rem;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(168, 85, 247, 0.1));
	border: 2px solid transparent;
	background-clip: padding-box;
	overflow: hidden;
	margin-bottom: 1.5rem;
}

.reference-badge-new::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 9999px;
	padding: 2px;
	background: linear-gradient(135deg, var(--primary-cyan), var(--accent-purple));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	animation: rotate 3s linear infinite;
}

.reference-badge-shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	animation: shine 3s infinite;
}

.reference-badge-text {
	position: relative;
	z-index: 1;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--primary-cyan);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.reference-title-new {
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
}

.reference-title-new .title-line {
	display: block;
	animation: slideInUp 0.8s ease-out;
}

.reference-title-new .title-line:nth-child(2) {
	animation-delay: 0.2s;
}

.reference-title-new .title-highlight {
	background: linear-gradient(135deg, var(--primary-cyan), var(--accent-purple));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

@media (min-width: 640px) {
	.reference-title-new {
		font-size: 3.5rem;
	}
}

@media (min-width: 1024px) {
	.reference-title-new {
		font-size: 4.5rem;
	}
}

.reference-desc-new {
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.125rem;
	line-height: 1.8;
	color: var(--text-secondary);
	animation: fadeIn 1.2s ease-out;
}

.reference-cards-new {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.reference-cards-new {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.reference-cards-new {
		grid-template-columns: repeat(3, 1fr);
		gap: 3rem;
	}
}

.reference-card-new {
	position: relative;
	border-radius: 2rem;
	background: var(--bg-white);
	border: 1px solid var(--border-color);
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
}

.reference-card-border {
	position: absolute;
	inset: -1px;
	border-radius: 2rem;
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange), var(--accent-purple));
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 0;
}

.reference-card-new:hover .reference-card-border {
	opacity: 1;
}

.reference-card-glow {
	position: absolute;
	inset: -10px;
	border-radius: 2rem;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.2), transparent);
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 0;
	filter: blur(30px);
}

.reference-card-new:hover .reference-card-glow {
	opacity: 1;
}

.reference-card-inner {
	position: relative;
	z-index: 1;
	padding: 2.5rem;
	background: var(--bg-white);
	margin: 1px;
	border-radius: calc(2rem - 1px);
}

.reference-card-new:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25), 0 0 50px rgba(37, 99, 235, 0.2);
}

.reference-quote-icon {
	position: absolute;
	top: 2rem;
	right: 2rem;
	width: 3rem;
	height: 3rem;
	color: rgba(37, 99, 235, 0.1);
	transition: all 0.4s ease;
	z-index: 2;
}

.reference-card-new:hover .reference-quote-icon {
	color: var(--primary-cyan);
	transform: scale(1.2) rotate(5deg);
}

.reference-card-header {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	margin-bottom: 1.5rem;
}

.reference-avatar-wrapper {
	position: relative;
	width: 4rem;
	height: 4rem;
	flex-shrink: 0;
}

.reference-avatar-glow {
	position: absolute;
	inset: -5px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	opacity: 0;
	transition: opacity 0.4s ease;
	filter: blur(10px);
	z-index: 0;
}

.reference-card-new:hover .reference-avatar-glow {
	opacity: 0.6;
}

.reference-avatar {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--border-color);
	transition: all 0.4s ease;
}

.reference-card-new:hover .reference-avatar {
	border-color: var(--primary-cyan);
	transform: scale(1.1);
}

.reference-info {
	flex: 1;
}

.reference-name {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.25rem;
	transition: color 0.3s ease;
}

.reference-card-new:hover .reference-name {
	color: var(--primary-cyan);
}

.reference-role {
	font-size: 0.875rem;
	color: var(--text-secondary);
	transition: color 0.3s ease;
}

.reference-card-new:hover .reference-role {
	color: var(--text-primary);
}

.reference-text {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	position: relative;
	transition: color 0.3s ease;
}

.reference-card-new:hover .reference-text {
	color: var(--text-primary);
}

.reference-rating {
	display: flex;
	align-items: center;
	gap: 0.375rem;
}

.rating-star {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--primary-orange);
	transition: all 0.3s ease;
	animation: starTwinkle 2s ease-in-out infinite;
}

.rating-star:nth-child(1) { animation-delay: 0s; }
.rating-star:nth-child(2) { animation-delay: 0.2s; }
.rating-star:nth-child(3) { animation-delay: 0.4s; }
.rating-star:nth-child(4) { animation-delay: 0.6s; }
.rating-star:nth-child(5) { animation-delay: 0.8s; }

.rating-star-empty {
	color: var(--border-color);
	opacity: 0.3;
}

.reference-card-new:hover .rating-star {
	color: var(--primary-cyan);
	transform: scale(1.2);
}

.reference-card-new:hover .rating-star-empty {
	opacity: 0.5;
}

@keyframes starTwinkle {
	0%, 100% { 
		opacity: 1;
		transform: scale(1);
	}
	50% { 
		opacity: 0.7;
		transform: scale(0.95);
	}
}

/* ============================================
   VYHODY SECTION NEW - ПОЛНОСТЬЮ ПЕРЕДЕЛАНА
   ============================================ */

.vyhody-section-new {
	position: relative;
	padding: 8rem 0;
	overflow: hidden;
	background: var(--bg-white);
}

.vyhody-bg-wrapper {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.vyhody-bg-gradient {
	position: absolute;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.4;
	animation: float 22s ease-in-out infinite;
}

.vyhody-bg-gradient-1 {
	top: -25%;
	left: 15%;
	width: 55%;
	height: 55%;
	background: radial-gradient(circle, rgba(220, 38, 38, 0.3), transparent);
	animation-duration: 18s;
}

.vyhody-bg-gradient-2 {
	bottom: -25%;
	right: 15%;
	width: 60%;
	height: 60%;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.3), transparent);
	animation-duration: 20s;
	animation-delay: -7s;
}

.vyhody-bg-gradient-3 {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40%;
	height: 40%;
	background: radial-gradient(circle, rgba(168, 85, 247, 0.25), transparent);
	animation-duration: 26s;
	animation-delay: -14s;
}

.vyhody-bg-grid {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(220, 38, 38, 0.03) 1px, transparent 1px);
	background-size: 50px 50px;
	opacity: 0.5;
	animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
	0% { background-position: 0 0; }
	100% { background-position: 50px 50px; }
}

.vyhody-wrapper-new {
	max-width: 90rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	position: relative;
	z-index: 1;
}

@media (min-width: 768px) {
	.vyhody-wrapper-new {
		padding-left: 3rem;
		padding-right: 3rem;
	}
}

@media (min-width: 1024px) {
	.vyhody-wrapper-new {
		padding-left: 5rem;
		padding-right: 5rem;
	}
}

.vyhody-header-new {
	text-align: center;
	margin-bottom: 5rem;
	animation: fadeIn 0.8s ease-out;
}

.vyhody-badge-new {
	display: inline-flex;
	align-items: center;
	position: relative;
	border-radius: 9999px;
	padding: 0.75rem 1.5rem;
	background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(37, 99, 235, 0.1));
	border: 2px solid transparent;
	background-clip: padding-box;
	overflow: hidden;
	margin-bottom: 1.5rem;
}

.vyhody-badge-new::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 9999px;
	padding: 2px;
	background: linear-gradient(135deg, var(--primary-orange), var(--primary-cyan));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	animation: rotate 3s linear infinite;
}

.vyhody-badge-shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	animation: shine 3s infinite;
}

.vyhody-badge-text {
	position: relative;
	z-index: 1;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--primary-orange);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.vyhody-title-new {
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
}

.vyhody-title-new .title-line {
	display: block;
	animation: slideInUp 0.8s ease-out;
}

.vyhody-title-new .title-line:nth-child(2) {
	animation-delay: 0.2s;
}

.vyhody-title-new .title-highlight {
	background: linear-gradient(135deg, var(--primary-orange), var(--primary-cyan));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

@media (min-width: 640px) {
	.vyhody-title-new {
		font-size: 3.5rem;
	}
}

@media (min-width: 1024px) {
	.vyhody-title-new {
		font-size: 4.5rem;
	}
}

.vyhody-desc-new {
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.125rem;
	line-height: 1.8;
	color: var(--text-secondary);
	animation: fadeIn 1.2s ease-out;
}

.vyhody-cards-new {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.vyhody-cards-new {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.vyhody-cards-new {
		grid-template-columns: repeat(3, 1fr);
		gap: 3rem;
	}
}

.vyhody-card-new {
	position: relative;
	border-radius: 2rem;
	background: var(--bg-white);
	border: 1px solid var(--border-color);
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
}

.vyhody-card-border {
	position: absolute;
	inset: -1px;
	border-radius: 2rem;
	background: linear-gradient(135deg, var(--primary-orange), var(--primary-cyan), var(--accent-purple));
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 0;
}

.vyhody-card-new:hover .vyhody-card-border {
	opacity: 1;
}

.vyhody-card-shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
	opacity: 0;
	transform: translateX(-100%) skewX(-20deg);
	transition: all 0.6s ease;
	z-index: 2;
}

.vyhody-card-new:hover .vyhody-card-shine {
	opacity: 1;
	transform: translateX(200%) skewX(-20deg);
}

.vyhody-card-inner {
	position: relative;
	z-index: 1;
	padding: 2.5rem;
	background: var(--bg-white);
	margin: 1px;
	border-radius: calc(2rem - 1px);
}

.vyhody-card-new:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 40px rgba(220, 38, 38, 0.2);
}

.vyhody-icon-box {
	position: relative;
	width: 5rem;
	height: 5rem;
	margin-bottom: 1.5rem;
}

.vyhody-icon-glow {
	position: absolute;
	inset: -10px;
	border-radius: 1.5rem;
	background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(37, 99, 235, 0.2));
	opacity: 0;
	transition: opacity 0.4s ease;
	filter: blur(20px);
}

.vyhody-card-new:hover .vyhody-icon-glow {
	opacity: 1;
}

.vyhody-icon-box-alt .vyhody-icon-glow {
	background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(37, 99, 235, 0.2));
}

.vyhody-icon {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	color: var(--primary-orange);
	transition: all 0.4s ease;
}

.vyhody-icon-box-alt .vyhody-icon {
	color: var(--accent-purple);
}

.vyhody-card-new:hover .vyhody-icon {
	color: var(--primary-cyan);
	transform: scale(1.15) rotate(10deg);
}

.vyhody-card-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1rem;
	transition: color 0.3s ease;
}

.vyhody-card-new:hover .vyhody-card-title {
	color: var(--primary-orange);
}

.vyhody-card-text {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text-secondary);
	transition: color 0.3s ease;
}

.vyhody-card-new:hover .vyhody-card-text {
	color: var(--text-primary);
}

/* ============================================
   CONTACT SECTION NEW - ПОЛНОСТЬЮ ПЕРЕДЕЛАНА
   ============================================ */

.contact-section-new {
	position: relative;
	padding: 8rem 0;
	overflow: hidden;
	background: var(--bg-light);
}

.contact-bg-wrapper {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.contact-bg-gradient {
	position: absolute;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.4;
	animation: float 20s ease-in-out infinite;
}

.contact-bg-gradient-1 {
	top: -20%;
	left: 10%;
	width: 50%;
	height: 50%;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.3), transparent);
	animation-duration: 18s;
}

.contact-bg-gradient-2 {
	bottom: -20%;
	right: 10%;
	width: 55%;
	height: 55%;
	background: radial-gradient(circle, rgba(220, 38, 38, 0.3), transparent);
	animation-duration: 22s;
	animation-delay: -8s;
}

.contact-bg-gradient-3 {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40%;
	height: 40%;
	background: radial-gradient(circle, rgba(168, 85, 247, 0.25), transparent);
	animation-duration: 26s;
	animation-delay: -15s;
}

.contact-bg-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 70% 70%, rgba(220, 38, 38, 0.08) 0%, transparent 50%);
	opacity: 0.6;
}

.contact-wrapper-new {
	max-width: 90rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	position: relative;
	z-index: 1;
}

@media (min-width: 768px) {
	.contact-wrapper-new {
		padding-left: 3rem;
		padding-right: 3rem;
	}
}

@media (min-width: 1024px) {
	.contact-wrapper-new {
		padding-left: 5rem;
		padding-right: 5rem;
	}
}

.contact-header-new {
	text-align: center;
	margin-bottom: 5rem;
	animation: fadeIn 0.8s ease-out;
}

.contact-badge-new {
	display: inline-flex;
	align-items: center;
	position: relative;
	border-radius: 9999px;
	padding: 0.75rem 1.5rem;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(220, 38, 38, 0.1));
	border: 2px solid transparent;
	background-clip: padding-box;
	overflow: hidden;
	margin-bottom: 1.5rem;
}

.contact-badge-new::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 9999px;
	padding: 2px;
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	animation: rotate 3s linear infinite;
}

.contact-badge-shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	animation: shine 3s infinite;
}

.contact-badge-text {
	position: relative;
	z-index: 1;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--primary-cyan);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.contact-title-new {
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
}

.contact-title-new .title-line {
	display: block;
	animation: slideInUp 0.8s ease-out;
}

.contact-title-new .title-line:nth-child(2) {
	animation-delay: 0.2s;
}

.contact-title-new .title-highlight {
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

@media (min-width: 640px) {
	.contact-title-new {
		font-size: 3.5rem;
	}
}

@media (min-width: 1024px) {
	.contact-title-new {
		font-size: 4.5rem;
	}
}

.contact-desc-new {
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.125rem;
	line-height: 1.8;
	color: var(--text-secondary);
	animation: fadeIn 1.2s ease-out;
}

.contact-content-new {
	display: grid;
	gap: 3rem;
	grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
	.contact-content-new {
		grid-template-columns: 1fr 2fr;
		gap: 4rem;
	}
}

.contact-info-new {
	display: grid;
	gap: 2rem;
}

.contact-info-card {
	position: relative;
	border-radius: 1.5rem;
	background: var(--bg-white);
	border: 2px solid var(--border-color);
	padding: 2rem;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	overflow: hidden;
}

.contact-info-card::before {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: 1.5rem;
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 0;
}

.contact-info-card:hover::before {
	opacity: 1;
}

.contact-info-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 30px rgba(37, 99, 235, 0.2);
}

.contact-info-icon-box {
	position: relative;
	width: 4rem;
	height: 4rem;
	margin-bottom: 1.5rem;
}

.contact-info-icon-glow {
	position: absolute;
	inset: -10px;
	border-radius: 1rem;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(220, 38, 38, 0.2));
	opacity: 0;
	transition: opacity 0.4s ease;
	filter: blur(20px);
}

.contact-info-card:hover .contact-info-icon-glow {
	opacity: 1;
}

.contact-info-icon {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	color: var(--primary-cyan);
	transition: all 0.4s ease;
}

.contact-info-card:hover .contact-info-icon {
	color: var(--text-primary);
	transform: scale(1.1) rotate(5deg);
}

.contact-info-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.75rem;
	transition: color 0.3s ease;
	position: relative;
	z-index: 1;
}

.contact-info-card:hover .contact-info-title {
	color: var(--text-primary);
}

.contact-info-text {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text-secondary);
	transition: color 0.3s ease;
	position: relative;
	z-index: 1;
}

.contact-info-card:hover .contact-info-text {
	color: var(--text-primary);
}

.contact-info-link {
	color: var(--primary-cyan);
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
}

.contact-info-card:hover .contact-info-link {
	color: var(--text-primary);
	text-decoration: underline;
}

.contact-form-wrapper {
	display: grid;
	gap: 2rem;
}

.contact-form-card {
	position: relative;
	border-radius: 2rem;
	background: var(--bg-white);
	border: 1px solid var(--border-color);
	overflow: hidden;
	transition: all 0.5s ease;
}

.contact-form-border {
	position: absolute;
	inset: -1px;
	border-radius: 2rem;
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange), var(--accent-purple));
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 0;
}

.contact-form-card:hover .contact-form-border {
	opacity: 1;
}

.contact-form-glow {
	position: absolute;
	inset: -10px;
	border-radius: 2rem;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent);
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 0;
	filter: blur(30px);
}

.contact-form-card:hover .contact-form-glow {
	opacity: 1;
}

.contact-form-inner {
	position: relative;
	z-index: 1;
	padding: 2.5rem;
	background: var(--bg-white);
	margin: 1px;
	border-radius: calc(2rem - 1px);
}

.contact-form-group {
	margin-bottom: 1.5rem;
}

.contact-form-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--text-primary);
}

.contact-form-required {
	color: var(--primary-orange);
}

.contact-form-input,
.contact-form-textarea {
	width: 100%;
	border-radius: 0.75rem;
	border: 2px solid var(--border-color);
	background: var(--bg-white);
	padding: 0.875rem 1.25rem;
	font-size: 1rem;
	color: var(--text-primary);
	transition: all 0.3s ease;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
	outline: none;
	border-color: var(--primary-cyan);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form-textarea {
	resize: vertical;
	min-height: 8rem;
}

.contact-form-submit {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	position: relative;
	border-radius: 0.75rem;
	padding: 1rem 2rem;
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	color: var(--text-primary);
	font-size: 1rem;
	font-weight: 600;
	border: none;
	cursor: pointer;
	overflow: hidden;
	transition: all 0.4s ease;
	box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.contact-form-submit::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--primary-orange), var(--primary-cyan));
	opacity: 0;
	transition: opacity 0.4s ease;
}

.contact-form-submit:hover::before {
	opacity: 1;
}

.contact-form-submit:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.contact-form-submit-text {
	position: relative;
	z-index: 1;
}

.contact-form-submit-icon {
	position: relative;
	z-index: 1;
	width: 1.25rem;
	height: 1.25rem;
	transition: transform 0.4s ease;
}

.contact-form-submit:hover .contact-form-submit-icon {
	transform: translateX(5px);
}

.contact-form-submit-ripple {
	position: absolute;
	inset: 0;
	border-radius: 0.75rem;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
	opacity: 0;
	transform: scale(0);
	transition: all 0.6s ease;
}

.contact-form-submit:active .contact-form-submit-ripple {
	opacity: 1;
	transform: scale(2);
}

.contact-form-success {
	margin-top: 1rem;
	padding: 1rem;
	border-radius: 0.75rem;
	background: rgba(37, 99, 235, 0.1);
	border: 2px solid var(--primary-cyan);
	color: var(--primary-cyan);
	font-size: 0.9375rem;
	text-align: center;
	animation: fadeIn 0.5s ease-out;
}

.contact-map-wrapper {
	position: relative;
}

.contact-map-card {
	position: relative;
	border-radius: 2rem;
	background: var(--bg-white);
	border: 1px solid var(--border-color);
	overflow: hidden;
	transition: all 0.5s ease;
}

.contact-map-border {
	position: absolute;
	inset: -1px;
	border-radius: 2rem;
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 0;
}

.contact-map-card:hover .contact-map-border {
	opacity: 1;
}

.contact-map-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 30px rgba(37, 99, 235, 0.2);
}

.contact-map {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 25rem;
	border: none;
	border-radius: calc(2rem - 1px);
	margin: 1px;
}

@media (min-width: 768px) {
	.contact-map {
		height: 30rem;
	}
}

/* ============================================
   ABOUT SECTION NEW - ПОЛНОСТЬЮ ПЕРЕДЕЛАНА
   ============================================ */

.about-section-new {
	position: relative;
	padding: 8rem 0;
	overflow: hidden;
	background: var(--bg-white);
}

.about-bg-wrapper {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.about-bg-gradient {
	position: absolute;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.4;
	animation: float 20s ease-in-out infinite;
}

.about-bg-gradient-1 {
	top: -20%;
	left: 10%;
	width: 50%;
	height: 50%;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.3), transparent);
	animation-duration: 18s;
}

.about-bg-gradient-2 {
	bottom: -20%;
	right: 10%;
	width: 55%;
	height: 55%;
	background: radial-gradient(circle, rgba(220, 38, 38, 0.3), transparent);
	animation-duration: 22s;
	animation-delay: -8s;
}

.about-bg-gradient-3 {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40%;
	height: 40%;
	background: radial-gradient(circle, rgba(168, 85, 247, 0.25), transparent);
	animation-duration: 26s;
	animation-delay: -15s;
}

.about-bg-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 70% 70%, rgba(220, 38, 38, 0.08) 0%, transparent 50%);
	opacity: 0.6;
}

.about-wrapper-new {
	max-width: 90rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	position: relative;
	z-index: 1;
}

@media (min-width: 768px) {
	.about-wrapper-new {
		padding-left: 3rem;
		padding-right: 3rem;
	}
}

@media (min-width: 1024px) {
	.about-wrapper-new {
		padding-left: 5rem;
		padding-right: 5rem;
	}
}

.about-header-new {
	text-align: center;
	margin-bottom: 5rem;
	animation: fadeIn 0.8s ease-out;
}

.about-badge-new {
	display: inline-flex;
	align-items: center;
	position: relative;
	border-radius: 9999px;
	padding: 0.75rem 1.5rem;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(220, 38, 38, 0.1));
	border: 2px solid transparent;
	background-clip: padding-box;
	overflow: hidden;
	margin-bottom: 1.5rem;
}

.about-badge-new::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 9999px;
	padding: 2px;
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	animation: rotate 3s linear infinite;
}

.about-badge-shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	animation: shine 3s infinite;
}

.about-badge-text {
	position: relative;
	z-index: 1;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--primary-cyan);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.about-title-new {
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
}

.about-title-new .title-line {
	display: block;
	animation: slideInUp 0.8s ease-out;
}

.about-title-new .title-line:nth-child(2) {
	animation-delay: 0.2s;
}

.about-title-new .title-line:nth-child(3) {
	animation-delay: 0.4s;
}

.about-title-new .title-highlight {
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

@media (min-width: 640px) {
	.about-title-new {
		font-size: 3.5rem;
	}
}

@media (min-width: 1024px) {
	.about-title-new {
		font-size: 4.5rem;
	}
}

.about-desc-new {
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.125rem;
	line-height: 1.8;
	color: var(--text-secondary);
	animation: fadeIn 1.2s ease-out;
}

.about-content-new {
	display: grid;
	gap: 3rem;
}

.about-features-new {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.about-features-new {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.about-features-new {
		grid-template-columns: repeat(3, 1fr);
	}
}

.about-feature-card-new {
	position: relative;
	border-radius: 1.5rem;
	background: var(--bg-white);
	border: 1px solid var(--border-color);
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
}

.about-feature-border {
	position: absolute;
	inset: -1px;
	border-radius: 1.5rem;
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange), var(--accent-purple));
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 0;
}

.about-feature-card-new:hover .about-feature-border {
	opacity: 1;
}

.about-feature-glow {
	position: absolute;
	inset: -10px;
	border-radius: 1.5rem;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent);
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 0;
	filter: blur(30px);
}

.about-feature-card-new:hover .about-feature-glow {
	opacity: 1;
}

.about-feature-card-new:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 30px rgba(37, 99, 235, 0.2);
}

.about-feature-inner {
	position: relative;
	z-index: 1;
	padding: 2rem;
	background: var(--bg-white);
	margin: 1px;
	border-radius: calc(1.5rem - 1px);
}

.about-feature-icon-box {
	position: relative;
	width: 4rem;
	height: 4rem;
	margin-bottom: 1.5rem;
}

.about-feature-icon-glow {
	position: absolute;
	inset: -10px;
	border-radius: 1rem;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(220, 38, 38, 0.2));
	opacity: 0;
	transition: opacity 0.4s ease;
	filter: blur(20px);
}

.about-feature-card-new:hover .about-feature-icon-glow {
	opacity: 1;
}

.about-feature-icon {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	color: var(--primary-cyan);
	transition: all 0.4s ease;
}

.about-feature-card-new:hover .about-feature-icon {
	color: var(--primary-orange);
	transform: scale(1.1) rotate(5deg);
}

.about-feature-title-new {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.75rem;
	transition: color 0.3s ease;
}

.about-feature-card-new:hover .about-feature-title-new {
	color: var(--primary-cyan);
}

.about-feature-text-new {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text-secondary);
	transition: color 0.3s ease;
}

.about-stats-new {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	margin-top: 3rem;
}

.about-stat-card-new {
	position: relative;
	border-radius: 1.5rem;
	background: var(--bg-white);
	border: 1px solid var(--border-color);
	overflow: hidden;
	transition: all 0.5s ease;
	cursor: pointer;
}

.about-stat-border {
	position: absolute;
	inset: -1px;
	border-radius: 1.5rem;
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 0;
}

.about-stat-card-new:hover .about-stat-border {
	opacity: 1;
}

.about-stat-glow {
	position: absolute;
	inset: -10px;
	border-radius: 1.5rem;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent);
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 0;
	filter: blur(30px);
}

.about-stat-card-new:hover .about-stat-glow {
	opacity: 1;
}

.about-stat-card-new:hover {
	transform: translateY(-5px) scale(1.02);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 30px rgba(37, 99, 235, 0.2);
}

.about-stat-inner {
	position: relative;
	z-index: 1;
	padding: 2rem;
	background: var(--bg-white);
	margin: 1px;
	border-radius: calc(1.5rem - 1px);
	text-align: center;
}

.about-stat-number {
	font-size: 3rem;
	font-weight: 800;
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
	transition: all 0.4s ease;
}

.about-stat-card-new:hover .about-stat-number {
	transform: scale(1.1);
}

.about-stat-label {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-secondary);
	transition: color 0.3s ease;
}

.about-stat-card-new:hover .about-stat-label {
	color: var(--text-primary);
}

.about-info-cards-new {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	margin-top: 2rem;
}

.about-info-card-new {
	position: relative;
	border-radius: 1rem;
	background: var(--bg-white);
	border: 1px solid var(--border-color);
	overflow: hidden;
	transition: all 0.4s ease;
}

.about-info-border {
	position: absolute;
	inset: -1px;
	border-radius: 1rem;
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 0;
}

.about-info-card-new:hover .about-info-border {
	opacity: 1;
}

.about-info-card-new:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(37, 99, 235, 0.15);
}

.about-info-inner {
	position: relative;
	z-index: 1;
	padding: 1.5rem;
	background: var(--bg-white);
	margin: 1px;
	border-radius: calc(1rem - 1px);
}

.about-info-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text-secondary);
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: color 0.3s ease;
}

.about-info-card-new:hover .about-info-label {
	color: var(--primary-cyan);
}

.about-info-value {
	font-size: 1rem;
	font-weight: 700;
	color: var(--text-primary);
	transition: color 0.3s ease;
}

.about-info-card-new:hover .about-info-value {
	color: var(--primary-orange);
}

.about-cta-new {
	text-align: center;
	margin-top: 4rem;
}

.about-btn-new {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	position: relative;
	border-radius: 0.75rem;
	padding: 1rem 2rem;
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	color: var(--text-primary);
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	overflow: hidden;
	transition: all 0.4s ease;
	box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.about-btn-new::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--primary-orange), var(--primary-cyan));
	opacity: 0;
	transition: opacity 0.4s ease;
}

.about-btn-new:hover::before {
	opacity: 1;
}

.about-btn-new:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.about-btn-text {
	position: relative;
	z-index: 1;
}

.about-btn-icon {
	position: relative;
	z-index: 1;
	width: 1.25rem;
	height: 1.25rem;
	transition: transform 0.4s ease;
}

.about-btn-new:hover .about-btn-icon {
	transform: translateX(5px);
}

.about-btn-ripple {
	position: absolute;
	inset: 0;
	border-radius: 0.75rem;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
	opacity: 0;
	transform: scale(0);
	transition: all 0.6s ease;
}

.about-btn-new:active .about-btn-ripple {
	opacity: 1;
	transform: scale(2);
}

/* Анимация появления при скролле */
.about-feature-card-new,
.about-stat-card-new,
.about-info-card-new {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-feature-card-new.visible,
.about-stat-card-new.visible,
.about-info-card-new.visible {
	opacity: 1;
	transform: translateY(0);
}

.about-feature-card-new:nth-child(1) { transition-delay: 0.1s; }
.about-feature-card-new:nth-child(2) { transition-delay: 0.2s; }
.about-feature-card-new:nth-child(3) { transition-delay: 0.3s; }

.about-stat-card-new:nth-child(1) { transition-delay: 0.1s; }
.about-stat-card-new:nth-child(2) { transition-delay: 0.2s; }
.about-stat-card-new:nth-child(3) { transition-delay: 0.3s; }

.about-info-card-new:nth-child(1) { transition-delay: 0.1s; }
.about-info-card-new:nth-child(2) { transition-delay: 0.2s; }
.about-info-card-new:nth-child(3) { transition-delay: 0.3s; }

/* ============================================
   SERVICE SECTION NEW - ПОЛНОСТЬЮ ПЕРЕДЕЛАНА
   ============================================ */

.service-section-new {
	position: relative;
	padding: 8rem 0;
	overflow: hidden;
	background: var(--bg-white);
}

.service-bg-wrapper {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.service-bg-gradient {
	position: absolute;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.4;
	animation: float 20s ease-in-out infinite;
}

.service-bg-gradient-1 {
	top: -20%;
	left: 10%;
	width: 50%;
	height: 50%;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.3), transparent);
	animation-duration: 18s;
}

.service-bg-gradient-2 {
	bottom: -20%;
	right: 10%;
	width: 55%;
	height: 55%;
	background: radial-gradient(circle, rgba(220, 38, 38, 0.3), transparent);
	animation-duration: 22s;
	animation-delay: -8s;
}

.service-bg-gradient-3 {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40%;
	height: 40%;
	background: radial-gradient(circle, rgba(168, 85, 247, 0.25), transparent);
	animation-duration: 26s;
	animation-delay: -15s;
}

.service-bg-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 70% 70%, rgba(220, 38, 38, 0.08) 0%, transparent 50%);
	opacity: 0.6;
}

.service-wrapper-new {
	max-width: 90rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	position: relative;
	z-index: 1;
}

@media (min-width: 768px) {
	.service-wrapper-new {
		padding-left: 3rem;
		padding-right: 3rem;
	}
}

@media (min-width: 1024px) {
	.service-wrapper-new {
		padding-left: 5rem;
		padding-right: 5rem;
	}
}

.service-header-new {
	text-align: center;
	margin-bottom: 5rem;
	animation: fadeIn 0.8s ease-out;
}

.service-badge-new {
	display: inline-flex;
	align-items: center;
	position: relative;
	border-radius: 9999px;
	padding: 0.75rem 1.5rem;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(220, 38, 38, 0.1));
	border: 2px solid transparent;
	background-clip: padding-box;
	overflow: hidden;
	margin-bottom: 1.5rem;
}

.service-badge-new::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 9999px;
	padding: 2px;
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	animation: rotate 3s linear infinite;
}

.service-badge-shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	animation: shine 3s infinite;
}

.service-badge-text {
	position: relative;
	z-index: 1;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--primary-cyan);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.service-title-new {
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
}

.service-title-new .title-line {
	display: block;
	animation: slideInUp 0.8s ease-out;
}

.service-title-new .title-line:nth-child(2) {
	animation-delay: 0.2s;
}

.service-title-new .title-highlight {
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

@media (min-width: 640px) {
	.service-title-new {
		font-size: 3.5rem;
	}
}

@media (min-width: 1024px) {
	.service-title-new {
		font-size: 4.5rem;
	}
}

.service-desc-new {
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.125rem;
	line-height: 1.8;
	color: var(--text-secondary);
	animation: fadeIn 1.2s ease-out;
}

.service-cards-new {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
	margin-bottom: 4rem;
}

@media (min-width: 768px) {
	.service-cards-new {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.service-cards-new {
		grid-template-columns: repeat(3, 1fr);
	}
}

.service-card-new {
	position: relative;
	border-radius: 1.5rem;
	background: var(--bg-white);
	border: 1px solid var(--border-color);
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
}

.service-card-border {
	position: absolute;
	inset: -1px;
	border-radius: 1.5rem;
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange), var(--accent-purple));
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 0;
}

.service-card-new:hover .service-card-border {
	opacity: 1;
}

.service-card-shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 1;
	animation: shine 3s infinite;
}

.service-card-new:hover .service-card-shine {
	opacity: 1;
}

.service-card-new:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 30px rgba(37, 99, 235, 0.2);
}

.service-card-inner {
	position: relative;
	z-index: 2;
	padding: 2rem;
	background: var(--bg-white);
	margin: 1px;
	border-radius: calc(1.5rem - 1px);
}

.service-card-icon-box {
	position: relative;
	width: 4rem;
	height: 4rem;
	margin-bottom: 1.5rem;
}

.service-card-icon-glow {
	position: absolute;
	inset: -10px;
	border-radius: 1rem;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(220, 38, 38, 0.2));
	opacity: 0;
	transition: opacity 0.4s ease;
	filter: blur(20px);
}

.service-card-new:hover .service-card-icon-glow {
	opacity: 1;
}

.service-card-icon {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	color: var(--primary-cyan);
	transition: all 0.4s ease;
}

.service-card-new:hover .service-card-icon {
	color: var(--primary-orange);
	transform: scale(1.1) rotate(5deg);
}

.service-card-title-new {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1rem;
	transition: color 0.3s ease;
}

.service-card-new:hover .service-card-title-new {
	color: var(--primary-cyan);
}

.service-card-text-new {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	transition: color 0.3s ease;
}

.service-card-list-new {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.service-card-list-new li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.9375rem;
	color: var(--text-secondary);
	transition: all 0.3s ease;
}

.service-card-new:hover .service-card-list-new li {
	color: var(--text-primary);
	transform: translateX(5px);
}

.service-list-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(220, 38, 38, 0.1));
	color: var(--primary-cyan);
	font-weight: 700;
	font-size: 0.875rem;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.service-card-new:hover .service-list-icon {
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	color: var(--text-primary);
	transform: scale(1.1);
}

.service-cta-new {
	text-align: center;
	margin-top: 4rem;
}

.service-btn-new {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	position: relative;
	border-radius: 0.75rem;
	padding: 1rem 2rem;
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	color: var(--text-primary);
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	overflow: hidden;
	transition: all 0.4s ease;
	box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.service-btn-new::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--primary-orange), var(--primary-cyan));
	opacity: 0;
	transition: opacity 0.4s ease;
}

.service-btn-new:hover::before {
	opacity: 1;
}

.service-btn-new:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.service-btn-text {
	position: relative;
	z-index: 1;
}

.service-btn-icon {
	position: relative;
	z-index: 1;
	width: 1.25rem;
	height: 1.25rem;
	transition: transform 0.4s ease;
}

.service-btn-new:hover .service-btn-icon {
	transform: translateX(5px);
}

.service-btn-ripple {
	position: absolute;
	inset: 0;
	border-radius: 0.75rem;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
	opacity: 0;
	transform: scale(0);
	transition: all 0.6s ease;
}

.service-btn-new:active .service-btn-ripple {
	opacity: 1;
	transform: scale(2);
}

/* Анимация появления при скролле */
.service-card-new {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card-new.visible {
	opacity: 1;
	transform: translateY(0);
}

.service-card-new:nth-child(1) { transition-delay: 0.1s; }
.service-card-new:nth-child(2) { transition-delay: 0.2s; }
.service-card-new:nth-child(3) { transition-delay: 0.3s; }
.service-card-new:nth-child(4) { transition-delay: 0.4s; }
.service-card-new:nth-child(5) { transition-delay: 0.5s; }
.service-card-new:nth-child(6) { transition-delay: 0.6s; }

/* ============================================
   BACK TO TOP BUTTON - С АНИМАЦИЕЙ
   ============================================ */

.back-to-top {
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	z-index: 50;
	display: none;
	align-items: center;
	justify-content: center;
	border-radius: 9999px;
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
	color: var(--text-primary);
	padding: 0.75rem;
	box-shadow: var(--shadow-xl), var(--shadow-glow-cyan);
	transition: all 0.4s ease;
	border: none;
	cursor: pointer;
	width: 3rem;
	height: 3rem;
	animation: fadeIn 0.5s ease-out;
}

.back-to-top:hover {
	transform: translateY(-5px) scale(1.1);
	box-shadow: var(--shadow-2xl), var(--shadow-glow-cyan), var(--shadow-glow-orange);
	animation: pulse 1s infinite;
}

.back-to-top:active {
	transform: translateY(-2px) scale(1.05);
}

.back-to-top:focus {
	outline: 2px solid transparent;
	outline-offset: 2px;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.5);
}

/* ============================================
   COOKIE BANNER - С АНИМАЦИЯМИ
   ============================================ */

.cookie-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 50;
	display: none;
	animation: slideInLeft 0.5s ease-out;
}

.cookie-banner-content {
	max-width: 64rem;
	margin-left: auto;
	margin-right: auto;
	border-radius: 1rem 1rem 0 0;
	background: linear-gradient(135deg, var(--bg-white) 0%, rgba(37, 99, 235, 0.02) 100%);
	padding: 1.5rem;
	box-shadow: var(--shadow-2xl);
	border: 2px solid var(--primary-cyan);
	border-bottom: none;
	position: relative;
	overflow: hidden;
}

.cookie-banner-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-cyan), var(--primary-orange));
}

@media (min-width: 768px) {
	.cookie-banner-content {
		border-radius: 1rem;
		margin-bottom: 1.5rem;
		padding: 2rem;
		border-bottom: 2px solid var(--primary-cyan);
	}
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */

@media (min-width: 640px) {
	.sm\:grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.sm\:grid-cols-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.sm\:flex-row {
		flex-direction: row;
	}
	.sm\:justify-center {
		justify-content: center;
	}
	.sm\:text-4xl {
		font-size: 2.25rem;
		line-height: 2.5rem;
	}
	.sm\:text-xl {
		font-size: 1.25rem;
		line-height: 1.75rem;
	}
	.sm\:mt-0 {
		margin-top: 0;
	}
}

@media (min-width: 768px) {
	.md\:flex {
		display: flex;
	}
	.md\:hidden {
		display: none;
	}
	.md\:px-12 {
		padding-left: 3rem;
		padding-right: 3rem;
	}
	.md\:px-20 {
		padding-left: 5rem;
		padding-right: 5rem;
	}
	.md\:flex-row {
		flex-direction: row;
	}
	.md\:justify-start {
		justify-content: flex-start;
	}
	.md\:w-1\/2 {
		width: 50%;
	}
	.md\:w-64 {
		width: 16rem;
	}
	.md\:mt-0 {
		margin-top: 0;
	}
	.md\:items-start {
		align-items: flex-start;
	}
	.md\:gap-6 {
		gap: 1.5rem;
	}
	.md\:rounded-2xl {
		border-radius: 1rem;
	}
	.md\:mb-6 {
		margin-bottom: 1.5rem;
	}
	.md\:p-6 {
		padding: 1.5rem;
	}
	.md\:grid-cols-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.lg\:px-8 {
		padding-left: 2rem;
		padding-right: 2rem;
	}
	.lg\:px-20 {
		padding-left: 5rem;
		padding-right: 5rem;
	}
	.lg\:grid-cols-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.lg\:grid-cols-12 {
		grid-template-columns: repeat(12, minmax(0, 1fr));
	}
	.lg\:col-span-6 {
		grid-column: span 6 / span 6;
	}
	.lg\:items-center {
		align-items: center;
	}
	.lg\:grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* ============================================
   DARK MODE SUPPORT
   ============================================ */

@media (prefers-color-scheme: dark) {
	.section-bg-light {
		background-color: var(--bg-primary);
	}
	
	.section-bg-white {
		background-color: var(--bg-secondary);
	}
	
	.card {
		background-color: var(--bg-secondary);
		border-color: var(--border-dark);
	}
	
	.testimonial-card {
		background-color: var(--bg-secondary);
		border-color: var(--border-dark);
	}
	
	.solution-card {
		background-color: var(--bg-secondary);
		border-color: var(--border-dark);
	}
	
	.form-input,
	.form-textarea {
		background-color: var(--bg-secondary);
		border-color: var(--border-dark);
		color: var(--text-primary);
	}
	
	.content-text {
		color: var(--text-secondary);
	}
	
	.content-list {
		color: var(--text-secondary);
	}
}

/* ============================================
   ADDITIONAL ANIMATIONS
   ============================================ */

@keyframes shimmer {
	0% {
		background-position: -1000px 0;
	}
	100% {
		background-position: 1000px 0;
	}
}

.animate-shimmer {
	animation: shimmer 2s infinite;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	background-size: 1000px 100%;
}

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
	.card,
	.testimonial-card,
	.solution-card,
	.process-step {
		opacity: 0;
		transform: translateY(30px);
		transition: opacity 0.6s ease, transform 0.6s ease;
	}
	
	.card.visible,
	.testimonial-card.visible,
	.solution-card.visible,
	.process-step.visible {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Space utilities */
.space-y-2 > * + * {
	margin-top: 0.5rem;
}

.space-y-3 > * + * {
	margin-top: 0.75rem;
}

.space-y-6 > * + * {
	margin-top: 1.5rem;
}

/* List styles */
.list-disc {
	list-style-type: disc;
}

.pl-6 {
	padding-left: 1.5rem;
}

/* Toggle switch */
.toggle-switch {
	position: relative;
	display: inline-flex;
	cursor: pointer;
	align-items: center;
}

.toggle-track {
	height: 1.5rem;
	width: 2.75rem;
	border-radius: 9999px;
	background-color: #cbd5e1;
	transition: background-color 0.3s ease;
}

.toggle-thumb {
	pointer-events: none;
	position: absolute;
	left: 0.125rem;
	top: 0.125rem;
	height: 1.25rem;
	width: 1.25rem;
	border-radius: 9999px;
	background-color: #ffffff;
	transition: transform 0.3s ease;
}

.toggle-input:checked ~ .toggle-track {
	background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
}

.toggle-input:checked ~ .toggle-thumb {
	transform: translateX(1.25rem);
}

/* Focus states */
.focus\:outline-none:focus {
	outline: 2px solid transparent;
	outline-offset: 2px;
}

.focus\:ring-2:focus {
	box-shadow: 0 0 0 2px var(--primary-cyan);
}

.focus-visible\:ring-2:focus-visible {
	box-shadow: 0 0 0 2px var(--primary-cyan);
}



