:root {
	--primary-blue: #0500ff;
	--primary-green: #48ff91;
	--primary-orange: #ff9500;
	--white: #ffffff;
	--dark: #1b1b1c;

	/* Дополнительные оттенки на основе основных цветов */
	--blue-light: rgba(5, 0, 255, 0.1);
	--blue-medium: rgba(5, 0, 255, 0.8);
	--green-light: rgba(72, 255, 145, 0.1);
	--green-medium: rgba(72, 255, 145, 0.8);
	--dark-light: rgba(27, 27, 28, 0.1);
	--dark-medium: rgba(27, 27, 28, 0.8);

	--gradient-blue: linear-gradient(135deg, #0500ff 0%, #0500ff 100%);
	--gradient-green: linear-gradient(135deg, #48ff91 0%, #48ff91 100%);
	--gradient-mixed: linear-gradient(135deg, #0500ff 0%, #48ff91 100%);

	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
		0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
		0 10px 10px -5px rgba(0, 0, 0, 0.04);

	--border-radius-sm: 6px;
	--border-radius: 12px;
	--border-radius-lg: 16px;
	--border-radius-xl: 24px;

	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--dark);
	background-color: var(--white);
	overflow-x: hidden;
	width: 100%;
	max-width: 100vw;
}

#app {
	min-height: 100vh;
	width: 100%;
	max-width: 100vw;
	overflow-x: hidden;
	box-sizing: border-box;
}

/* Утилитарные классы */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
}

.container-lg {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

/* Типографика */
.h1 {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.h2 {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.h3 {
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.3;
}

.h4 {
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.4;
}

.h5 {
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.4;
}

.h6 {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5;
}

.text-lg {
	font-size: 1.125rem;
	line-height: 1.6;
}

.text-sm {
	font-size: 0.875rem;
	line-height: 1.5;
}

.text-xs {
	font-size: 0.75rem;
	line-height: 1.4;
}

/* Кнопки */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	border: none;
	border-radius: var(--border-radius);
	cursor: pointer;
	transition: var(--transition);
	white-space: nowrap;
	user-select: none;
}

.btn-primary {
	background: var(--gradient-blue);
	color: var(--white);
	box-shadow: var(--shadow-md);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.btn-secondary {
	background: var(--white);
	color: var(--primary-blue);
	border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
	background: var(--primary-blue);
	color: var(--white);
	transform: translateY(-2px);
}

.btn-lg {
	padding: 16px 32px;
	font-size: 1.125rem;
	border-radius: var(--border-radius-lg);
}

.btn-sm {
	padding: 8px 16px;
	font-size: 0.875rem;
	border-radius: var(--border-radius-sm);
}

/* Карточки */
.card {
	background: var(--white);
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow);
	transition: var(--transition);
	overflow: hidden;
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-xl);
}

.card-body {
	padding: 24px;
}

/* Анимации */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.animate-fade-in-up {
	animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in-left {
	animation: fadeInLeft 0.6s ease-out;
}

.animate-fade-in-right {
	animation: fadeInRight 0.6s ease-out;
}

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--dark-light);
	z-index: 1000;
	transition: var(--transition);
	width: 100%;
	max-width: 100vw;
	overflow: hidden;
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
	position: relative;
}

.logo {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.logo svg {
	transition: all 0.3s ease;
}

.logo:hover svg {
	transform: scale(1.05);
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 32px;
}

.nav-link {
	font-weight: 500;
	color: var(--dark-medium);
	text-decoration: none;
	transition: var(--transition);
}

.nav-link:hover {
	color: var(--primary-blue);
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

/* Hero Section */
.hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
	position: relative;
	overflow: hidden;
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	min-height: 600px;
}

.hero-visual {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position: relative;
	perspective: 1000px;
}

.hero-text h1 {
	color: var(--dark);
	margin-bottom: 24px;
}

.hero-description {
	color: var(--dark-medium);
	margin-bottom: 40px;
	max-width: 480px;
}

.hero-actions {
	display: flex;
	gap: 16px;
}

/* AML Dashboard Visualization */

.aml-dashboard {
	background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
	border-radius: 24px;
	box-shadow: 0 25px 50px rgba(5, 0, 255, 0.08), 0 10px 20px rgba(0, 0, 0, 0.05);
	padding: 28px;
	width: 100%;
	max-width: 420px;
	position: relative;
	transform-style: preserve-3d;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid rgba(5, 0, 255, 0.1);
	backdrop-filter: blur(10px);
	animation: dashboardAppear 0.8s ease-out;
	margin-bottom: 0;
}

@keyframes dashboardAppear {
	0% {
		opacity: 0;
		transform: translateY(30px) scale(0.95);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.aml-dashboard:hover,
.aml-dashboard:focus-within {
	transform: translateY(-8px);
	box-shadow: 0 35px 70px rgba(5, 0, 255, 0.12), 0 15px 30px rgba(0, 0, 0, 0.08);
	border-color: rgba(5, 0, 255, 0.2);
}

.aml-dashboard:focus-within {
	outline: 2px solid rgba(5, 0, 255, 0.3);
	outline-offset: 4px;
}

.dashboard-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(5, 0, 255, 0.1);
}

.dashboard-logo {
	display: flex;
	align-items: center;
	transition: all 0.3s ease;
}

.dashboard-logo:hover {
	transform: scale(1.02);
}

.dashboard-score {
	text-align: left;
	position: relative;
}

.score-bar {
	width: 100%;
}

.score-header {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.score-label {
	font-size: 0.875rem;
	color: #666;
	font-weight: 500;
	transition: all 0.3s ease;
}

.score-value {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--dark);
	transition: all 0.3s ease;
}

.score-progress {
	width: 100%;
	height: 12px;
	background: rgba(0, 0, 0, 0.05);
	border-radius: 6px;
	overflow: hidden;
	position: relative;
	transition: all 0.3s ease;
}

.score-progress-bar {
	height: 100%;
	background: linear-gradient(90deg, #48FF91, #00E676);
	border-radius: 6px;
	transition: all 0.3s ease;
	position: relative;
}

.score-progress:hover .score-progress-bar {
	background: linear-gradient(90deg, #00E676, #48FF91);
	transform: scaleY(1.1);
}

.score-progress:hover {
	box-shadow: 0 2px 8px rgba(72, 255, 145, 0.3);
}

.score-progress-bar::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	animation: shimmer 2s infinite;
}

@keyframes shimmer {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

.security-status {
	margin-bottom: 24px;
	padding: 16px;
	background: linear-gradient(135deg, rgba(72, 255, 145, 0.1), rgba(0, 230, 118, 0.05));
	border-radius: 16px;
	border: 1px solid rgba(72, 255, 145, 0.2);
	transition: all 0.3s ease;
}

.security-status:hover {
	background: linear-gradient(135deg, rgba(72, 255, 145, 0.15), rgba(0, 230, 118, 0.08));
	border-color: rgba(72, 255, 145, 0.3);
	transform: translateY(-2px);
}

.status-indicator {
	display: flex;
	align-items: center;
	gap: 12px;
}

.status-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	animation: pulse 2s infinite;
}

.status-dot.status-safe {
	background: #48FF91;
	box-shadow: 0 0 0 0 rgba(72, 255, 145, 0.7);
	transition: all 0.3s ease;
}

.status-dot.status-safe:hover {
	transform: scale(1.2);
	box-shadow: 0 0 0 4px rgba(72, 255, 145, 0.3);
}

.status-text {
	font-size: 0.875rem;
	font-weight: 600;
	color: #2E7D32;
	transition: all 0.3s ease;
}

.security-status:hover .status-text {
	color: #1B5E20;
	font-weight: 700;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(72, 255, 145, 0.7);
	}
	70% {
		box-shadow: 0 0 0 10px rgba(72, 255, 145, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(72, 255, 145, 0);
	}
}

.metrics-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 24px;
}

/* Анимация подпрыгивания при наведении на контейнер */
.metrics:hover .metric-item:nth-child(1) {
	animation: metricBounce 0.6s ease-out 0.1s;
}

.metrics:hover .metric-item:nth-child(2) {
	animation: metricBounce 0.6s ease-out 0.2s;
}

.metrics:hover .metric-item:nth-child(3) {
	animation: metricBounce 0.6s ease-out 0.3s;
}

.metrics:hover .metric-item:nth-child(4) {
	animation: metricBounce 0.6s ease-out 0.4s;
}

.metrics:hover .metric-item:nth-child(5) {
	animation: metricBounce 0.6s ease-out 0.5s;
}

.metrics:hover .metric-item:nth-child(6) {
	animation: metricBounce 0.6s ease-out 0.6s;
}

.metrics:hover .metric-item:nth-child(7) {
	animation: metricBounce 0.6s ease-out 0.7s;
}

@keyframes metricBounce {
	0%,
	100% {
		transform: translateY(0);
	}
	30% {
		transform: translateY(-8px);
	}
	60% {
		transform: translateY(-4px);
	}
}

.metric-card {
	background: rgba(255, 255, 255, 0.8);
	border-radius: 16px;
	padding: 16px;
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	backdrop-filter: blur(5px);
	animation: metricCardAppear 0.6s ease-out;
	animation-fill-mode: both;
}

.metric-card:nth-child(1) { animation-delay: 0.1s; }
.metric-card:nth-child(2) { animation-delay: 0.2s; }
.metric-card:nth-child(3) { animation-delay: 0.3s; }
.metric-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes metricCardAppear {
	0% {
		opacity: 0;
		transform: translateY(20px) scale(0.9);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.metric-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	border-color: rgba(5, 0, 255, 0.2);
}

.metric-card:hover .metric-icon {
	transform: scale(1.1) rotate(5deg);
}

.metric-card:hover .metric-progress::after {
	animation-duration: 1s;
}

.metric-card.metric-excellent {
	border-left: 4px solid #48FF91;
}

.metric-card.metric-good {
	border-left: 4px solid #0094FF;
}

.metric-card.metric-warning {
	border-left: 4px solid #FF9500;
}

.metric-card.metric-danger {
	border-left: 4px solid #FF4444;
}

.metric-header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
}

.metric-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.metric-name {
	font-size: 0.75rem;
	color: var(--dark);
	font-weight: 600;
	line-height: 1.3;
	transition: all 0.3s ease;
}

.metric-card:hover .metric-name {
	color: #0500FF;
	font-weight: 700;
}

.metric-bar {
	height: 8px;
	background: rgba(0, 0, 0, 0.05);
	border-radius: 4px;
	overflow: hidden;
	position: relative;
	transition: all 0.3s ease;
}

.metric-card:hover .metric-bar {
	background: rgba(0, 0, 0, 0.08);
	transform: scaleY(1.1);
}

.metric-progress {
	height: 100%;
	border-radius: 4px;
	transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
	animation: progressFill 2s ease-out;
	position: relative;
	overflow: hidden;
}

.metric-progress::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	animation: shimmer 2s infinite;
}

@keyframes shimmer {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

@keyframes progressFill {
	from {
		width: 0%;
	}
}

.metric-value {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 8px;
	text-align: center;
}



.risk-summary {
	margin-bottom: 16px;
	padding: 20px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 255, 0.8));
	border-radius: 16px;
	border: 1px solid rgba(0, 0, 0, 0.05);
	animation: riskSummaryAppear 0.8s ease-out 0.5s both;
	transition: all 0.3s ease;
}

.risk-summary:hover {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 255, 0.9));
	border-color: rgba(5, 0, 255, 0.1);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

@keyframes riskSummaryAppear {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.risk-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.risk-header h4 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--dark);
	margin: 0;
	transition: all 0.3s ease;
}

.risk-summary:hover .risk-header h4 {
	color: #0500FF;
}

.risk-level {
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.risk-level.risk-low {
	background: rgba(72, 255, 145, 0.2);
	color: #2E7D32;
	transition: all 0.3s ease;
}

.risk-level.risk-low:hover {
	background: rgba(72, 255, 145, 0.3);
	transform: scale(1.05);
}

.risk-details {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.risk-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.risk-item:last-child {
	border-bottom: none;
}

.risk-item:hover {
	background: rgba(5, 0, 255, 0.02);
	padding-left: 8px;
	padding-right: 8px;
	margin-left: -8px;
	margin-right: -8px;
	border-radius: 8px;
}

.risk-label {
	font-size: 0.875rem;
	color: #666;
	font-weight: 500;
}

.risk-value {
	font-size: 0.875rem;
	color: var(--dark);
	font-weight: 600;
}

@keyframes badgePulse {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(72, 255, 145, 0.4);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 0 0 10px rgba(72, 255, 145, 0);
	}
}

/* What are we doing Section */
.what-we-do {
	padding: 80px 0;
	background: var(--dark);
	color: var(--white);
}

.what-we-do-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.what-we-do-text h2 {
	color: var(--white);
	margin-bottom: 32px;
}

.what-we-do-description p {
	font-size: 1.125rem;
	line-height: 1.7;
	margin-bottom: 16px;
	opacity: 0.9;
}

.what-we-do-description p:last-child {
	margin-bottom: 0;
}

.danger-report {
	background: var(--white);
	border-radius: var(--border-radius-xl);
	padding: 20px;
	box-shadow: var(--shadow-xl);
	animation: dangerFloat 4s ease-in-out infinite;
}

@keyframes dangerFloat {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-8px);
	}
}

.danger-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--dark-light);
}

.danger-label {
	font-weight: 600;
	color: #ff4444;
	font-size: 0.9rem;
}

.danger-items {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.danger-item {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 8px 0;
}

.danger-percent {
	font-weight: 700;
	color: #ff4444;
	font-size: 0.8rem;
}

.danger-type {
	font-size: 0.8rem;
	color: var(--dark);
}

.danger-amount {
	font-weight: 600;
	color: var(--dark);
	font-size: 0.8rem;
}

.danger-item-header {
	display: grid;
	grid-template-columns: 60px 1fr auto;
	gap: 12px;
	align-items: center;
}

.danger-progress {
	width: 100%;
	height: 4px;
	background: rgba(255, 68, 68, 0.1);
	border-radius: 2px;
	overflow: hidden;
	position: relative;
}

.danger-progress-bar {
	height: 100%;
	background: linear-gradient(90deg, #FF4444, #FF6B6B);
	border-radius: 3px;
	transition: all 0.3s ease;
	position: relative;
}

.danger-progress-bar::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	animation: dangerShimmer 2s infinite;
}

@keyframes dangerShimmer {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

.danger-progress:hover .danger-progress-bar {
	background: linear-gradient(90deg, #FF6B6B, #FF4444);
	transform: scaleY(1.2);
}

.danger-progress:hover {
	box-shadow: 0 2px 8px rgba(255, 68, 68, 0.3);
}

/* Pricing Section */
.pricing-section {
	padding: 80px 0;
	background: var(--white);
}

.pricing-content {
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.pricing-header {
	margin-bottom: 80px;
	width: 100%;
	text-align: center;
}

.pricing-header h2 {
	color: var(--dark);
	margin: 0 0 24px 0;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.2;
}

.pricing-description {
	font-size: 1.25rem;
	color: var(--dark-medium);
	line-height: 1.6;
	margin: 0;
	max-width: 600px;
	margin: 0 auto;
}

.pricing-cards {
	display: flex;
	justify-content: center;
	gap: 40px;
}

.pricing-card {
	background: linear-gradient(135deg, rgba(255, 68, 68, 0.03) 0%, rgba(255, 68, 68, 0.08) 100%);
	border: 1px solid rgba(255, 68, 68, 0.15);
	border-radius: 24px;
	padding: 40px;
	width: 420px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(255, 68, 68, 0.1);
}

.pricing-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #FF4444, #FF6B6B);
}

.pricing-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: 0 25px 60px rgba(255, 68, 68, 0.2);
	border-color: rgba(255, 68, 68, 0.3);
	background: linear-gradient(135deg, rgba(255, 68, 68, 0.05) 0%, rgba(255, 68, 68, 0.12) 100%);
}

.crypto-info {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 32px;
}

.crypto-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, #FF4444, #FF6B6B);
	border-radius: 12px;
	padding: 8px;
	box-shadow: 0 4px 16px rgba(255, 68, 68, 0.3);
}

.crypto-name {
	font-size: 1.5rem;
	color: #666;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.price-info {
	margin-bottom: 40px;
	display: flex;
	align-items: baseline;
	gap: 8px;
}

.price-amount {
	font-size: 3.5rem;
	font-weight: 800;
	color: var(--dark);
	line-height: 1;
}

.price-unit {
	font-size: 1rem;
	color: #666;
	font-weight: 500;
}

.pricing-actions {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.pricing-actions .action-btn {
	width: 100%;
	padding: 20px 28px;
	border: none;
	border-radius: 18px;
	font-weight: 700;
	font-size: 1.1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	position: relative;
	overflow: hidden;
	text-decoration: none;
}

.pricing-actions .action-btn.primary {
	background: linear-gradient(135deg, #FF4444, #FF6B6B);
	color: white;
	box-shadow: 0 4px 16px rgba(255, 68, 68, 0.3);
}

.pricing-actions .action-btn.primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.pricing-actions .action-btn.primary:hover {
	background: linear-gradient(135deg, #E63939, #FF4444);
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(255, 68, 68, 0.4);
}

.pricing-actions .action-btn.primary:hover::before {
	left: 100%;
}

.pricing-actions .action-btn.secondary {
	background: linear-gradient(135deg, rgba(255, 68, 68, 0.08), rgba(255, 68, 68, 0.15));
	color: #FF4444;
	border: 2px solid rgba(255, 68, 68, 0.25);
	backdrop-filter: blur(10px);
}

.pricing-actions .action-btn.secondary:hover {
	background: rgba(255, 68, 68, 0.2);
	border-color: rgba(255, 68, 68, 0.4);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(255, 68, 68, 0.2);
}

/* Why Section */
.why-section {
	padding: 80px 0;
	background: var(--white);
}

.why-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: stretch;
}

.why-text-card {
	background: var(--white);
	border-radius: var(--border-radius-xl);
	padding: 32px;
	border: 1px solid var(--dark-light);
}

.why-header {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 28px;
}

.why-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, #0500ff 0%, #4169ff 100%);
	border-radius: 16px;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(5, 0, 255, 0.2);
}

.why-icon svg {
	width: 28px;
	height: 28px;
}

.why-text-card h2 {
	color: var(--dark);
	margin: 0;
	font-size: 2rem;
	font-weight: 600;
}

.why-points p {
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--dark-medium);
	margin-bottom: 24px;
	font-weight: 400;
}

.why-points p:last-child {
	margin-bottom: 0;
}

.free-inspection-card {
	background: var(--gradient-blue);
	border-radius: var(--border-radius-xl);
	padding: 40px;
	color: var(--white);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.free-inspection-card h3 {
	color: var(--white);
	margin-bottom: 40px;
	text-align: left;
}

.free-visual {
	position: relative;
	margin: 0 -40px 0 -40px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 200px;
	width: calc(100% + 80px);
}

.number-one {
	font-size: 8rem;
	font-weight: 800;
	color: rgba(255, 255, 255, 0.2);
	line-height: 1;
}

.free-badge {
	position: absolute;
	background: var(--dark);
	color: var(--white);
	padding: 12px 24px;
	border-radius: var(--border-radius-lg);
	font-weight: 700;
	font-size: 1.25rem;
	transform: rotate(-5deg);
	box-shadow: var(--shadow-lg);
}

.free-wallet-image {
	width: 100%;
	height: 100%;
	min-width: 300px;
	min-height: 550px;
	object-fit: cover;
	transform: translateX(60px);
}

.check-website-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--white);
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
}

.check-website-link:hover {
	transform: translateX(5px);
}

/* Stats Section */
.stats-section {
	padding: 60px 0;
	background: var(--primary-blue);
	color: var(--white);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px;
	text-align: center;
}

.stat-item {
	animation: statSlideUp 0.8s ease-out;
}

.stat-item:nth-child(1) {
	animation-delay: 0.1s;
}
.stat-item:nth-child(2) {
	animation-delay: 0.2s;
}
.stat-item:nth-child(3) {
	animation-delay: 0.3s;
}

@keyframes statSlideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.stat-number {
	font-size: 3rem;
	font-weight: 800;
	color: var(--white);
	margin-bottom: 16px;
	line-height: 1;
}

.stat-description {
	font-size: 1rem;
	line-height: 1.5;
	opacity: 0.9;
}

/* Pricing Section */
.pricing-section {
	padding: 80px 0;
	background: var(--white);
}

.pricing-card {
	background: var(--white);
	border-radius: var(--border-radius-xl);
	padding: 60px;
	border: 1px solid var(--dark-light);
	margin-bottom: 40px;
}

.pricing-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.pricing-content {
	text-align: left;
}

.pricing-card h2 {
	color: var(--dark);
	margin-bottom: 24px;
}

.pricing-badge {
	display: inline-block;
	background: var(--primary-green);
	color: var(--dark);
	padding: 8px 16px;
	border-radius: var(--border-radius);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 32px;
}

.pricing-info {
	margin-bottom: 40px;
}

.pricing-label {
	display: block;
	font-size: 1.25rem;
	color: var(--dark);
	margin-bottom: 16px;
}

.pricing-amount {
	display: flex;
	align-items: baseline;
	justify-content: flex-start;
	gap: 8px;
}

.price-main {
	font-size: 4rem;
	font-weight: 800;
	background: var(--gradient-mixed);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
}

.price-period {
	font-size: 1.25rem;
	color: var(--dark-medium);
}

.pricing-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.pricing-illustration {
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.pricing-image {
	max-width: 200%;
	max-height: 600px;
	width: auto;
	height: auto;
	object-fit: contain;
	transform: scale(2);
	animation: pricingFloat 4s ease-in-out infinite;
}

@keyframes pricingFloat {
	0%,
	100% {
		transform: scale(2) translateY(0px);
	}
	50% {
		transform: scale(2) translateY(-10px);
	}
}

.pricing-footer {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.pricing-footer p {
	font-size: 1.125rem;
	line-height: 1.6;
	color: var(--dark-medium);
	margin-bottom: 12px;
}

.pricing-footer p:last-child {
	margin-bottom: 0;
}

.pricing-footer strong {
	color: var(--dark);
}

/* What Else Section */
.what-else-section {
	padding: 80px 0;
	background: var(--white);
}

.section-title {
	color: var(--dark);
	margin-bottom: 40px;
}

.what-else-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.sanctions-card {
	background: var(--dark);
	color: var(--white);
	border-radius: var(--border-radius-xl);
	padding: 60px;
	text-align: left;
	position: relative;
	overflow: hidden;
}

.sanctions-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-mixed);
}

.sanctions-card h3 {
	color: var(--white);
	margin-bottom: 24px;
}

.sanctions-card p {
	font-size: 1.125rem;
	line-height: 1.7;
	opacity: 0.9;
}

.what-else-illustration {
	display: flex;
	justify-content: center;
	align-items: center;
}

.what-else-image {
	max-width: 100%;
	height: auto;
	border-radius: var(--border-radius-lg);
}

/* Trust Section */
.trust-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.trust-content {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.trust-text {
	text-align: center;
}

.trust-subtitle {
	font-size: 1.125rem;
	color: var(--dark-medium);
	margin-bottom: 16px;
	font-weight: 500;
}

.trust-title {
	font-size: 3.5rem;
	font-weight: 800;
	color: var(--dark);
	line-height: 1.1;
	margin: 0;
}

.trust-card {
	background: var(--white);
	border-radius: var(--border-radius-xl);
	padding: 40px;
	border: 1px solid var(--dark-light);
}

.trust-card-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.trust-illustration {
	display: flex;
	justify-content: center;
	align-items: center;
}

.trust-globe-image {
	max-width: 100%;
	height: auto;
	max-height: 300px;
}

.trust-card-title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 20px;
	line-height: 1.2;
}

.trust-card-description {
	font-size: 1.125rem;
	line-height: 1.6;
	color: var(--dark-medium);
	margin-bottom: 32px;
}

.trust-btn {
	background: var(--primary-blue);
	padding: 16px 32px;
	font-size: 1.125rem;
	font-weight: 600;
}

/* Our Team Section */
.team-section {
	padding: 80px 0;
	background: var(--white);
}

.team-header {
	text-align: center;
	margin-bottom: 60px;
}

.team-header h2 {
	color: var(--dark);
	margin-bottom: 16px;
}

.team-subtitle {
	font-size: 1.125rem;
	color: var(--dark-medium);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 32px;
	margin-top: 60px;
}

.team-card {
	background: var(--white);
	border: 1px solid var(--dark-light);
	border-radius: var(--border-radius-lg);
	padding: 32px 24px;
	text-align: center;
	position: relative;
	transition: var(--transition);
	opacity: 0;
	transform: translateY(30px);
	animation: teamCardSlideUp 0.6s ease-out forwards;
}

.team-card[data-delay='0.1'] {
	animation-delay: 0.1s;
}

.team-card[data-delay='0.2'] {
	animation-delay: 0.2s;
}

.team-card[data-delay='0.3'] {
	animation-delay: 0.3s;
}

.team-card[data-delay='0.4'] {
	animation-delay: 0.4s;
}

.team-card[data-delay='0.5'] {
	animation-delay: 0.5s;
}

.team-card[data-delay='0.6'] {
	animation-delay: 0.6s;
}

@keyframes teamCardSlideUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.team-card:hover {
	transform: translateY(-8px);
	border-color: var(--primary-blue);
}

.team-card:hover .team-avatar {
	transform: scale(1.1);
}

.team-avatar {
	margin-bottom: 24px;
	transition: var(--transition);
}

.team-photo {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto;
	display: block;
	transition: var(--transition);
	border: 3px solid var(--blue-light);
}

.team-card:hover .team-photo {
	border-color: var(--primary-blue);
	transform: scale(1.05);
}

.team-info {
	margin-bottom: 0;
}

.team-name {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 8px;
	transition: var(--transition);
}

.team-role {
	font-size: 1rem;
	font-weight: 500;
	color: var(--primary-blue);
	margin-bottom: 16px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 0.875rem;
}

.team-description {
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--dark-medium);
}

/* Testimonials Section */
.testimonials-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.testimonials-header {
	text-align: center;
	margin-bottom: 60px;
}

.testimonials-header h2 {
	color: var(--dark);
	margin-bottom: 16px;
}

.testimonials-subtitle {
	font-size: 1.125rem;
	color: var(--dark-medium);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.testimonials-container {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
}

.testimonials-navigation {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	z-index: 10;
}

.testimonial-nav-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid var(--dark-light);
	background: var(--white);
	color: var(--dark-medium);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--transition);
	pointer-events: all;
}

.testimonial-nav-btn:hover {
	border-color: var(--primary-blue);
	color: var(--primary-blue);
	transform: scale(1.05);
}

.testimonials-slider {
	position: relative;
	overflow: hidden;
	border-radius: var(--border-radius-xl);
}

.testimonial-card {
	display: none;
	background: var(--white);
	border: 1px solid var(--dark-light);
	border-radius: var(--border-radius-xl);
	padding: 0;
	overflow: hidden;
	opacity: 0;
	transform: translateX(30px);
	transition: all 0.6s ease;
}

.testimonial-card.active {
	display: grid;
	grid-template-columns: 300px 1fr;
	opacity: 1;
	transform: translateX(0);
}

.testimonial-visual {
	background: linear-gradient(135deg, var(--dark) 0%, #2a2a2b 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 40px;
	position: relative;
}

.testimonial-visual::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	opacity: 0.3;
}

.metric-circle {
	position: relative;
	width: 120px;
	height: 120px;
	border: 3px solid var(--primary-blue);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(5, 0, 255, 0.1);
	animation: metricPulse 3s ease-in-out infinite;
}

@keyframes metricPulse {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(5, 0, 255, 0.4);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 0 0 20px rgba(5, 0, 255, 0);
	}
}

.metric-number {
	font-size: 2rem;
	font-weight: 800;
	color: var(--white);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
	padding: 60px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.testimonial-text {
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--dark);
	margin: 0 0 32px 0;
	font-style: italic;
	position: relative;
}

.testimonial-text::before {
	content: '"';
	font-size: 4rem;
	color: var(--primary-blue);
	position: absolute;
	top: -20px;
	left: -20px;
	font-family: serif;
	opacity: 0.3;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 16px;
}

.author-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--blue-light);
}

.author-info {
	display: flex;
	flex-direction: column;
}

.author-name {
	font-weight: 600;
	color: var(--dark);
	font-size: 1rem;
}

.author-company {
	font-size: 0.875rem;
	color: var(--primary-blue);
	font-weight: 500;
}

.testimonials-dots {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 40px;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: none;
	background: var(--dark-light);
	cursor: pointer;
	transition: var(--transition);
}

.dot.active {
	background: var(--primary-blue);
	transform: scale(1.2);
}

.dot:hover {
	background: var(--primary-blue);
	opacity: 0.7;
}

/* Адаптивность */
@media (max-width: 768px) {
	.h1 {
		font-size: 2.5rem;
	}

	.h2 {
		font-size: 2rem;
	}

	.h3 {
		font-size: 1.5rem;
	}

	.container {
		padding: 0 20px;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		overflow: hidden;
	}

	.btn {
		padding: 10px 20px;
		font-size: 0.875rem;
	}

	.btn-lg {
		padding: 14px 28px;
		font-size: 1rem;
	}

	/* Исправляем навигацию для мобильных устройств */
	.nav {
		padding: 16px 0;
		position: relative;
		display: flex;
		width: 100%;
		max-width: 100%;
		overflow: hidden;
		box-sizing: border-box;
	}

	.nav-menu {
		display: none;
	}

	.nav-actions {
		display: flex;
		position: static;
		transform: none;
		z-index: auto;
		margin-left: auto;
		visibility: visible;
		opacity: 1;
		max-width: 40%;
		flex-shrink: 0;
	}

	.nav-actions .btn {
		white-space: nowrap;
		min-width: auto;
		display: inline-flex;
		visibility: visible;
		opacity: 1;
		max-width: 100%;
		font-size: 0.875rem;
		padding: 8px 16px;
		flex-shrink: 0;
	}

	.logo svg {
		width: 120px;
		height: 24px;
	}

	.hero {
		padding: 100px 0 60px;
	}

	.hero-content {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.hero-text h1 {
		font-size: 2.5rem;
	}

	.hero-actions {
		justify-content: center;
	}

	/* Исправляем плашку с ценой для мобильных устройств */
	.pricing-section {
		padding: 60px 0;
		width: 100%;
		max-width: 100%;
		overflow: hidden;
		box-sizing: border-box;
	}

	.pricing-content {
		padding: 0 20px;
		width: 100%;
		max-width: 100%;
		margin: 0;
		box-sizing: border-box;
		overflow: hidden;
	}

	.pricing-cards {
		width: 100%;
		justify-content: center;
	}

	.pricing-card {
		width: 100%;
		max-width: none;
		margin: 0;
		padding: 32px 20px;
		border-radius: 16px;
		box-sizing: border-box;
	}

	.aml-dashboard {
		max-width: 100%;
		padding: 20px;
		margin: 0 20px;
		transform: none !important;
		animation: none !important;
	}

	.aml-dashboard:hover {
		transform: translateY(-4px) !important;
		box-shadow: 0 20px 40px -12px rgba(5, 0, 255, 0.25),
			0 0 0 1px rgba(255, 255, 255, 0.8) !important;
	}

	.dashboard-header {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}

	.dashboard-logo {
		justify-content: center;
	}

	.dashboard-logo svg {
		width: 160px;
		height: 32px;
		image-rendering: -webkit-optimize-contrast;
		image-rendering: crisp-edges;
	}

	.score-bar {
		margin-bottom: 8px;
	}

	.score-progress {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.metrics-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.metric-card {
		padding: 14px;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		animation: none;
	}

	.metric-header {
		justify-content: center;
	}

	.metric-value {
		font-size: 1.125rem;
	}

	.risk-summary {
		padding: 16px;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		animation: none;
	}

	.risk-header {
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}

	/* Исправляем FAQ секцию для мобильных устройств */
	.faq-section {
		padding: 60px 0;
		display: block !important;
		width: 100%;
		max-width: 100%;
		overflow: hidden;
		box-sizing: border-box;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.faq-content {
		grid-template-columns: 1fr !important;
		gap: 40px;
		padding: 0 20px;
		width: 100%;
		max-width: 100%;
		margin: 0;
		display: grid !important;
		box-sizing: border-box;
		overflow: hidden;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.faq-left {
		justify-content: center;
		display: flex !important;
		visibility: visible !important;
		opacity: 1 !important;
		order: 1;
	}

	.faq-right {
		display: block !important;
		width: 100%;
		max-width: 100%;
		margin: 0;
		overflow: visible;
		visibility: visible !important;
		opacity: 1 !important;
		order: 2;
	}

	.faq-header {
		text-align: center;
		margin-bottom: 32px;
	}

	.faq-header h2 {
		text-align: center;
		font-size: 2.5rem;
	}

	.faq-list {
		width: 100%;
		display: block !important;
		max-width: 100%;
		margin: 0;
		overflow: hidden;
		box-sizing: border-box;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.faq-item {
		width: 100%;
		display: block !important;
		max-width: 100%;
		margin: 0;
		overflow: hidden;
		box-sizing: border-box;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.faq-question {
		display: flex !important;
		width: 100%;
		max-width: 100%;
		margin: 0;
		overflow: hidden;
		box-sizing: border-box;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.faq-header h2 {
		font-size: 2.5rem;
		text-align: center;
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.faq-contact-box {
		max-width: 100%;
		padding: 32px 20px;
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.faq-question {
		display: flex !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.faq-item {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.faq-list {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.faq-section {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.faq-content {
		grid-template-columns: 1fr !important;
		gap: 32px;
		padding: 0 20px;
		display: grid !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.faq-right {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.messenger-btn {
		justify-content: center;
		display: flex !important;
	}

	.pricing-actions .action-btn {
		padding: 16px 24px;
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.aml-dashboard {
		padding: 16px;
		margin: 0 16px;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		text-rendering: optimizeLegibility;
	}

	.security-status {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.dashboard-header {
		gap: 12px;
	}

	.dashboard-logo svg {
		width: 140px;
		height: 28px;
		image-rendering: -webkit-optimize-contrast;
		image-rendering: crisp-edges;
	}

	.score-progress {
		height: 10px;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.score-value {
		font-size: 1rem;
	}

	.metrics-grid {
		gap: 8px;
	}

	.metric-card {
		padding: 12px;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		animation: none;
	}

	.metric-name {
		font-size: 0.7rem;
	}

	.metric-value {
		font-size: 1rem;
	}

	.risk-summary {
		padding: 12px;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		animation: none;
	}

	.risk-header h4 {
		font-size: 0.9rem;
	}

	.risk-level {
		font-size: 0.7rem;
		padding: 3px 8px;
	}

	.risk-label,
	.risk-value {
		font-size: 0.8rem;
	}

	.danger-progress {
		height: 4px;
	}

	.danger-item-header {
		gap: 10px;
	}

	/* Pricing Section - Very Small Screens */
	.pricing-header h2 {
		font-size: 2rem;
	}

	.pricing-description {
		font-size: 1rem;
	}

	.pricing-content {
		width: 100%;
		padding: 0 16px;
		max-width: 100%;
		margin: 0;
		box-sizing: border-box;
		overflow: hidden;
	}

	.pricing-card {
		padding: 24px 16px;
		width: 100%;
		max-width: none;
		margin: 0;
		border-radius: 12px;
		box-sizing: border-box;
	}

	/* FAQ Section - Very Small Screens */
	.faq-section {
		padding: 40px 0;
		display: block !important;
		width: 100%;
		max-width: 100%;
		overflow: hidden;
		box-sizing: border-box;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.faq-content {
		grid-template-columns: 1fr !important;
		padding: 0 20px;
		gap: 32px;
		width: 100%;
		max-width: 100%;
		margin: 0;
		display: grid !important;
		box-sizing: border-box;
		overflow: hidden;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.faq-right {
		width: 100%;
		display: block !important;
		max-width: 100%;
		margin: 0;
		overflow: visible;
		box-sizing: border-box;
		visibility: visible !important;
		opacity: 1 !important;
		order: 2;
	}

	.faq-header {
		text-align: center;
		margin-bottom: 24px;
	}

	.faq-header h2 {
		text-align: center;
		font-size: 2rem;
	}

	.faq-list {
		width: 100%;
		display: block;
		max-width: 100%;
		margin: 0;
		overflow: hidden;
		box-sizing: border-box;
	}

	.faq-item {
		width: 100%;
		display: block;
		max-width: 100%;
		margin: 0;
		overflow: hidden;
	}

	.faq-question {
		display: flex;
		width: 100%;
		max-width: 100%;
		margin: 0;
		overflow: hidden;
		box-sizing: border-box;
	}

	.faq-header h2 {
		font-size: 2rem;
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.faq-contact-box {
		padding: 24px 16px;
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.faq-question {
		padding: 20px 0;
		display: flex !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.faq-question span {
		font-size: 1rem;
		display: block !important;
		visibility: visible !important;
	}

	.faq-item {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.faq-list {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.faq-section {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.faq-content {
		grid-template-columns: 1fr !important;
		gap: 24px;
		padding: 0 20px;
		display: grid !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.faq-right {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	/* Navigation - Very Small Screens */
	.nav {
		padding: 12px 0;
		display: flex;
		width: 100%;
		overflow: hidden;
	}

	.container {
		padding: 0 16px;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		overflow: hidden;
		position: relative;
	}

	.nav-actions {
		display: flex;
		position: static;
		transform: none;
		z-index: auto;
		margin-left: auto;
		visibility: visible;
		opacity: 1;
		max-width: 50%;
	}

	.nav-actions .btn {
		padding: 8px 16px;
		font-size: 0.875rem;
		white-space: nowrap;
		min-width: auto;
	}

	.logo svg {
		width: 100px;
		height: 20px;
	}

	.price-amount {
		font-size: 2.5rem;
	}

	.crypto-logo {
		width: 40px;
		height: 40px;
		padding: 6px;
	}

	.pricing-actions .action-btn {
		padding: 16px 20px;
		font-size: 0.9rem;
	}

	/* Pricing Section - Mobile */
	.pricing-header h2 {
		font-size: 2.5rem;
	}

	.pricing-description {
		font-size: 1.125rem;
	}

	.pricing-cards {
		flex-direction: column;
		gap: 24px;
		width: 100%;
	}

	.pricing-card {
		width: 100%;
		max-width: none;
		margin: 0;
		padding: 32px 20px;
		box-sizing: border-box;
	}

	.price-amount {
		font-size: 3rem;
	}



	/* Отключаем сложные анимации на мобильных */
	.aml-dashboard {
		animation: none;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		text-rendering: optimizeLegibility;
	}

	.security-status {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.metric-card {
		animation: none;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.risk-summary {
		animation: none;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}



	.logo svg {
		width: 100px;
		height: 20px;
	}

	/* What are we doing Section - Mobile */
	.what-we-do-content {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.what-we-do-text h2 {
		font-size: 2rem;
	}

	.danger-report {
		max-width: 350px;
		margin: 0 auto;
	}

	.danger-progress {
		height: 5px;
	}

	.danger-item-header {
		gap: 12px;
	}

	/* Why Section - Mobile */
	.why-content {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.why-text-card {
		padding: 28px;
	}

	.free-inspection-card {
		padding: 24px;
	}

	.why-text-card h2 {
		font-size: 1.375rem;
	}

	.free-inspection-card h3 {
		font-size: 1.5rem;
	}

	.why-header {
		gap: 16px;
		margin-bottom: 20px;
	}

	.why-icon {
		width: 48px;
		height: 48px;
	}

	.why-icon svg {
		width: 24px;
		height: 24px;
	}

	.number-one {
		font-size: 6rem;
	}

	.free-wallet-image {
		width: 100%;
		height: 100%;
		min-width: 200px;
		min-height: 600px;
		transform: translateX(10px);
	}

	.free-visual {
		height: 150px;
		margin: 0 -24px 0 -24px;
		width: calc(100% + 48px);
	}

	/* Stats Section - Mobile */
	.stats-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.stat-number {
		font-size: 2.5rem;
	}

	/* Pricing Section - Mobile */
	.pricing-card {
		padding: 32px 24px;
	}

	.pricing-layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.pricing-content {
		text-align: center;
	}

	.pricing-amount {
		justify-content: center;
	}

	.pricing-card h2 {
		font-size: 1.75rem;
	}

	.price-main {
		font-size: 3rem;
	}

	.pricing-footer p {
		font-size: 1rem;
	}

	.pricing-illustration {
		min-height: 400px;
	}

	.pricing-image {
		transform: scale(1.5);
		max-height: 400px;
	}

	/* What Else Section - Mobile */
	.what-else-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.sanctions-card {
		padding: 32px 24px;
	}

	.sanctions-card h3 {
		font-size: 1.5rem;
	}

	.sanctions-card p {
		font-size: 1rem;
	}

	/* Trust Section - Mobile */
	.trust-title {
		font-size: 2.5rem;
	}

	.trust-card {
		padding: 32px 24px;
	}

	.trust-card-content {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.trust-card-title {
		font-size: 1.75rem;
	}

	.trust-card-description {
		font-size: 1rem;
	}

	.trust-globe-image {
		max-height: 200px;
	}

	/* Our Team Section - Mobile */
	.team-section {
		padding: 60px 0;
	}

	.team-header {
		margin-bottom: 40px;
	}

	.team-header h2 {
		font-size: 2rem;
	}

	.team-subtitle {
		font-size: 1rem;
	}

	.team-grid {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-top: 40px;
	}

	.team-card {
		padding: 24px 20px;
	}

	.team-photo {
		width: 70px;
		height: 70px;
	}

	.team-name {
		font-size: 1.125rem;
	}

	.team-description {
		font-size: 0.8rem;
	}

	/* Testimonials Section - Mobile */
	.testimonials-section {
		padding: 60px 0;
	}

	.testimonials-header {
		margin-bottom: 40px;
	}

	.testimonials-header h2 {
		font-size: 2rem;
	}

	.testimonials-subtitle {
		font-size: 1rem;
	}

	.testimonials-navigation {
		display: none;
	}

	.testimonial-card.active {
		grid-template-columns: 1fr;
	}

	.testimonial-visual {
		padding: 40px 20px;
	}

	.metric-circle {
		width: 100px;
		height: 100px;
	}

	.metric-number {
		font-size: 1.5rem;
	}

	.testimonial-content {
		padding: 40px 24px;
	}

	.testimonial-text {
		font-size: 1rem;
	}

	.testimonial-text::before {
		font-size: 3rem;
		top: -15px;
		left: -15px;
	}

	.author-avatar {
		width: 40px;
		height: 40px;
	}

	.author-name {
		font-size: 0.9rem;
	}

	.author-company {
		font-size: 0.8rem;
	}

	/* Why AMLBot Section - Mobile */
	.why-amlbot-section {
		padding: 60px 0;
	}

	.why-amlbot-header {
		margin-bottom: 40px;
	}

	.why-amlbot-header h2 {
		font-size: 2rem;
	}

	.why-amlbot-grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		gap: 16px;
	}

	.why-card {
		padding: 24px;
		min-height: auto !important;
		grid-column: auto !important;
		grid-row: auto !important;
	}

	.why-card-title {
		font-size: 1.5rem;
		margin-bottom: 12px;
	}

	.why-card-description {
		font-size: 0.875rem;
	}

	.why-illustration-image {
		width: 90px;
		height: 90px;
	}
}

/* Why AMLBot Section */
.why-amlbot-section {
	padding: 80px 0;
	background: linear-gradient(
		135deg,
		rgba(5, 0, 255, 0.02) 0%,
		rgba(72, 255, 145, 0.02) 100%
	);
	position: relative;
	overflow: hidden;
}

.why-amlbot-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 20% 80%,
			rgba(5, 0, 255, 0.05) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 20%,
			rgba(72, 255, 145, 0.05) 0%,
			transparent 50%
		);
	pointer-events: none;
}

.why-amlbot-header {
	text-align: center;
	margin-bottom: 60px;
	position: relative;
	z-index: 1;
}

.why-amlbot-header h2 {
	color: var(--dark);
	margin-bottom: 16px;
	position: relative;
}

.why-amlbot-header h2::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: var(--gradient-mixed);
	border-radius: 2px;
}

.why-amlbot-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 16px;
	position: relative;
	z-index: 1;
	max-width: 100%;
	margin: 0 auto;
}

.why-card {
	border-radius: 24px;
	padding: 32px;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* Safety Card */
.safety-card {
	background: white;
	grid-column: 1;
	grid-row: 1;
	min-height: 300px;
}

/* Reliability Card */
.reliability-card {
	background: white;
	grid-column: 2;
	grid-row: 1;
	min-height: 300px;
}

/* Support Card */
.support-card {
	background: white;
	grid-column: 1;
	grid-row: 2;
	min-height: 300px;
}

/* Experience Card */
.experience-card {
	background: white;
	grid-column: 2;
	grid-row: 2;
	min-height: 200px;
}

.why-card-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.why-card-illustration {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 20px;
	position: relative;
	overflow: visible;
	border-radius: 12px;
	width: 140px;
	height: 140px;
}

.why-illustration-image {
	width: 120px;
	height: 120px;
	object-fit: contain;
	transition: var(--transition);
}

.why-card-illustration::before {
	content: '';
	position: absolute;
	top: 10px;
	left: -120px;
	width: 120px;
	height: 120px;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(255, 255, 255, 0.6) 50%,
		transparent 100%
	);
	transition: left 0.6s ease-in-out;
	z-index: 1;
	border-radius: 12px;
}

.why-card:hover .why-card-illustration::before {
	left: 140px;
}

.why-card:hover .why-illustration-image {
	transform: scale(1.05);
}

.why-card-title {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 16px;
	line-height: 1.2;
}

.why-card-description {
	line-height: 1.5;
	margin-bottom: 0;
	font-size: 1rem;
}

.safety-card .why-card-title,
.support-card .why-card-title,
.experience-card .why-card-title,
.reliability-card .why-card-title {
	color: #000;
}

.safety-card .why-card-description,
.support-card .why-card-description,
.experience-card .why-card-description,
.reliability-card .why-card-description {
	color: rgba(0, 0, 0, 0.8);
}

.why-card-description strong {
	font-weight: 700;
}

/* Footer */
.footer {
	background: #f8fafc;
	padding: 60px 0 20px;
	margin-top: 80px;
}

.footer-container {
	background: white;
	border: 1px solid #e2e8f0;
	border-radius: 24px;
	padding: 48px;
	max-width: 1200px;
	margin: 0 auto;
}

/* Logo Section */
.footer-logo-section {
	margin-bottom: 40px;
}

.footer-brand {
	display: flex;
	align-items: center;
	margin-bottom: 16px;
}

.footer-brand svg {
	width: 200px;
	height: 40px;
	transition: all 0.3s ease;
}

.footer-brand:hover svg {
	transform: scale(1.02);
}

.footer-description {
	color: #64748b;
	font-size: 0.875rem;
	line-height: 1.6;
	margin: 0;
	max-width: 300px;
}

/* Navigation Section */
.footer-nav-section {
	margin-bottom: 40px;
}

.footer-nav-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 32px;
}

.footer-nav-column {
	min-width: 0;
}

.footer-nav-title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 16px;
	font-family: 'Inter', sans-serif;
}

.footer-nav-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-nav-link {
	font-size: 0.875rem;
	color: #64748b;
	text-decoration: none;
	transition: all 0.2s ease;
	font-family: 'Inter', sans-serif;
	line-height: 1.5;
	display: block;
}

.footer-nav-link:hover {
	color: var(--primary-blue);
	transform: translateX(4px);
}

/* Contact Section */
.footer-contact-section {
	margin-bottom: 40px;
}

.footer-section-title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 20px;
	font-family: 'Inter', sans-serif;
}

.footer-contact-info {
	margin-bottom: 24px;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	font-size: 0.875rem;
	color: #64748b;
}

.contact-item i {
	width: 16px;
	color: var(--primary-blue);
}

.footer-social {
	margin-top: 24px;
}

.social-title {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 12px;
	font-family: 'Inter', sans-serif;
}

.social-links {
	display: flex;
	gap: 12px;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: #f1f5f9;
	border-radius: 8px;
	color: #64748b;
	text-decoration: none;
	transition: all 0.2s ease;
}

.social-link:hover {
	background: var(--primary-blue);
	color: white;
	transform: translateY(-2px);
}

.social-link i {
	font-size: 16px;
}

/* Footer Bottom */
.footer-bottom {
	border-top: 1px solid #e2e8f0;
	padding-top: 24px;
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}

.footer-copyright {
	color: #64748b;
	font-size: 0.875rem;
}

.footer-copyright p {
	margin: 0;
}

.footer-certificates {
	display: flex;
	gap: 16px;
	align-items: center;
}

.certificate-item {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	background: #f1f5f9;
	border-radius: 6px;
	font-size: 0.75rem;
	font-weight: 500;
	color: #475569;
}

.certificate-item i {
	color: var(--primary-blue);
	font-size: 12px;
}

/* Mobile Styles */
@media (max-width: 768px) {
	.footer {
		padding: 40px 0 20px;
		margin-top: 60px;
	}

	.footer-container {
		padding: 32px 24px;
		border-radius: 16px;
	}

	.footer-logo-section {
		text-align: center;
		margin-bottom: 32px;
	}

	.footer-brand {
		justify-content: center;
	}

	.footer-brand svg {
		width: 150px;
		height: 30px;
	}

	.footer-description {
		text-align: center;
		max-width: none;
	}

	.footer-nav-section {
		margin-bottom: 32px;
	}

	.footer-nav-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.footer-contact-section {
		text-align: center;
		margin-bottom: 32px;
	}

	.footer-contact-info {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 8px;
	}

	.contact-item {
		justify-content: center;
		margin-bottom: 8px;
	}

	.social-links {
		justify-content: center;
	}

	.footer-bottom-content {
		flex-direction: column;
		text-align: center;
		gap: 12px;
	}

	.footer-certificates {
		justify-content: center;
	}

	/* Pricing section mobile styles */
	.pricing-header h2 {
		font-size: 2.5rem;
	}

	/* Partners section mobile styles */
	.partners-section {
		padding: 80px 0;
	}

	.partners-header h2 {
		font-size: 2.5rem;
	}

	.partners-track {
		gap: 16px;
	}

	.partner-card {
		padding: 20px 24px;
		min-width: 160px;
	}

	.pricing-cards {
		justify-content: center;
	}

	.pricing-card {
		width: calc(100% - 40px);
		max-width: none;
		margin: 0 20px;
		padding: 32px;
	}

	.crypto-name {
		font-size: 1.3rem;
	}
}

@media (max-width: 480px) {
	.footer-brand svg {
		width: 120px;
		height: 24px;
	}

	/* Pricing section small mobile styles */
	.pricing-header h2 {
		font-size: 2rem;
	}

	.pricing-card {
		padding: 24px;
		max-width: 400px;
	}

	.crypto-name {
		font-size: 1.1rem;
	}

	/* FAQ mobile styles */
	.faq-content {
		grid-template-columns: 1fr !important;
		gap: 40px;
		padding: 0 20px;
		display: grid !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.faq-left {
		justify-content: center;
		display: flex !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.faq-header {
		text-align: center;
		margin-bottom: 32px;
	}

	.faq-header h2 {
		font-size: 2.5rem;
		text-align: center;
	}

	.faq-contact-box {
		max-width: 100%;
		padding: 32px;
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.messenger-btn {
		justify-content: center;
		display: flex;
	}

	.pricing-actions .action-btn {
		padding: 16px 24px;
		font-size: 1rem;
	}

	/* FAQ small mobile styles */
	.faq-header h2 {
		font-size: 2rem;
		text-align: center;
		display: block;
	}

	.faq-contact-box {
		padding: 24px;
		max-width: 100%;
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.faq-question {
		padding: 20px 0;
	}

	.faq-question span {
		font-size: 1rem;
	}

	.faq-content {
		padding: 0 20px;
		display: grid;
	}
}

/* Partners Section Styles */
.partners-section {
	padding: 80px 0 100px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	overflow: hidden;
}

.partners-content {
	width: 100%;
	margin: 0;
	padding: 0;
}

.partners-header {
	text-align: center;
	margin-bottom: 80px;
	width: 100%;
}

.partners-header h2 {
	font-size: 3rem;
	font-weight: 800;
	color: var(--dark);
	line-height: 1.2;
	margin: 0;
}

.partners-container {
	position: relative;
	overflow: hidden;
	padding: 20px 0 40px 0;
	width: 100%;
}

.partners-track {
	display: flex;
	gap: 24px;
	animation: scrollPartners 45s linear infinite;
	width: max-content;
}

.partner-card {
	background: white;
	border-radius: 16px;
	padding: 28px 36px;
	box-shadow: 0 8px 32px rgba(0, 123, 255, 0.08);
	border: 1px solid rgba(0, 123, 255, 0.1);
	min-width: 200px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	overflow: hidden;
}

.partner-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 48px rgba(0, 123, 255, 0.15);
	border-color: rgba(0, 123, 255, 0.3);
}

.partner-logo {
	display: flex;
	align-items: center;
	justify-content: center;
}

.partner-image {
	max-width: 100%;
	max-height: 80px;
	height: 80px;
	width: auto;
	object-fit: contain;
	object-position: center;
	transition: all 0.3s ease;
}

.partner-name {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--dark);
	text-align: center;
	letter-spacing: 0.5px;
}

@keyframes scrollPartners {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* FAQ Section Styles */
.faq-section {
	padding: 120px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	display: block;
	visibility: visible;
	opacity: 1;
}

.faq-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
	visibility: visible;
	opacity: 1;
}

.faq-left {
	display: flex;
	justify-content: flex-start;
}

.faq-contact-box {
	background: rgb(230, 240, 245);
	border-radius: 16px;
	padding: 40px;
	max-width: 380px;
	margin-left: 0;
	visibility: visible;
	opacity: 1;
}

.faq-contact-box h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--dark);
	margin: 0 0 16px 0;
	line-height: 1.3;
	visibility: visible;
	opacity: 1;
}

.faq-contact-box p {
	font-size: 1rem;
	color: #555;
	line-height: 1.6;
	margin: 0 0 24px 0;
	visibility: visible;
	opacity: 1;
}

.messenger-btn {
	background: white;
	color: rgb(0, 150, 220);
	border: none;
	border-radius: 16px;
	padding: 20px 24px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: flex-start;
	gap: 16px;
	width: 100%;
	justify-content: flex-start;
	position: relative;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	visibility: visible;
	opacity: 1;
}

.messenger-btn .btn-content span:first-child {
	font-weight: 600;
	color: rgb(0, 150, 220);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 100%;
	visibility: visible;
	opacity: 1;
}

.messenger-btn .btn-content span {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 100%;
	visibility: visible;
	opacity: 1;
}

.messenger-btn .btn-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	width: 100%;
	overflow: hidden;
	justify-content: flex-start;
	visibility: visible;
	opacity: 1;
}

.messenger-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(33, 150, 243, 0.3);
}

.messenger-btn svg {
	width: 32px;
	height: 32px;
	background: rgb(0, 150, 220);
	border-radius: 50%;
	padding: 10px;
	color: white;
	flex-shrink: 0;
	visibility: visible;
	opacity: 1;
}

.response-time {
	font-size: 0.85rem;
	font-weight: 400;
	color: rgb(100, 120, 140);
	white-space: nowrap;
	visibility: visible;
	opacity: 1;
}

.night-note {
	font-size: 0.85rem;
	color: rgb(100, 120, 140);
	margin: 20px 0 0 0;
	text-align: center;
}

.faq-right {
	display: flex;
	flex-direction: column;
	visibility: visible;
	opacity: 1;
}

.faq-header {
	margin-bottom: 40px;
	visibility: visible;
	opacity: 1;
}

.faq-header h2 {
	font-size: 3rem;
	font-weight: 800;
	color: var(--dark);
	line-height: 1.2;
	margin: 0;
	visibility: visible;
	opacity: 1;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	visibility: visible;
	opacity: 1;
}

.faq-item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	visibility: visible;
	opacity: 1;
}

	.faq-question {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 24px 0;
		cursor: pointer;
		transition: all 0.3s ease;
		visibility: visible;
		opacity: 1;
	}

	.faq-answer {
		display: none;
		padding: 0 0 24px 0;
		color: var(--dark-medium);
		line-height: 1.6;
		visibility: visible;
		opacity: 1;
	}

	.faq-answer p {
		margin: 0;
		font-size: 1rem;
		visibility: visible;
		opacity: 1;
	}

.faq-question:hover {
	background: rgba(0, 0, 0, 0.02);
}

.faq-question span {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--dark);
	line-height: 1.4;
	flex: 1;
	visibility: visible;
	opacity: 1;
}

	.faq-icon {
		color: #666;
		transition: all 0.3s ease;
		flex-shrink: 0;
		margin-left: 16px;
		transform: rotate(0deg);
		visibility: visible;
		opacity: 1;
	}

.faq-question:hover .faq-icon {
	color: var(--dark);
	transform: rotate(45deg);
}

/* GSAP Animation Styles */
.animate-section,
.animate-text,
.animate-visual,
.animate-card,
.animate-header,
.animate-stat {
	opacity: 1;
}

/* Smooth transitions for animated elements */
.hero-text,
.hero-visual,
.aml-dashboard {
	opacity: 1;
}

/* Header animation styles - обновляем существующий стиль */

/* Ensure smooth scrolling */
html {
	scroll-behavior: smooth;
}

/* Performance optimizations for animations */
.animate-section,
.animate-text,
.animate-visual,
.animate-card,
.animate-header,
.animate-stat,
.hero-text,
.hero-visual,
.aml-dashboard,
.danger-report,
.team-card {
	will-change: transform, opacity;
	backface-visibility: hidden;
	perspective: 1000px;
}

/* Prevent layout shifts during animations */
.metric-progress {
	transform-origin: left center;
}

/* Smooth hover transitions */
.btn,
.social-link,
.footer-nav-link {
	will-change: transform;
}

/* Mobile animation adjustments */
@media (max-width: 768px) {
	.header {
		backdrop-filter: blur(8px);
	}

	/* Reduce motion for mobile devices */
	@media (prefers-reduced-motion: reduce) {
		.animate-section,
		.animate-text,
		.animate-visual,
		.animate-card,
		.animate-header,
		.animate-stat,
		.hero-text,
		.hero-visual {
			opacity: 1;
		}
	}
}
