:root {
	--primary-color: #5156be;
	--primary-hover: #3b3f94;
	--secondary-color: #6c757d;
	--success-color: #10b981;
	--warning-color: #f59e0b;
	--danger-color: #ef4444;
	--info-color: #5156be;
	
	--bg-primary: #fafbfc;
	--bg-secondary: #ffffff;
	--bg-tertiary: #f8f9fa;
	--bg-card: #ffffff;
	
	--text-primary: #212529;
	--text-secondary: #4a5568;
	--text-muted: #6c7293;
	--text-light: #a0aec0;
	--text-white: #ffffff;
	
	--border-color: #e2e8f0;
	--border-light: #f1f5f9;
	--border-radius: 6px;
	--border-radius-sm: 4px;
	--border-radius-lg: 8px;
	
	--shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
	--shadow: 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);
	
	--font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
	--font-family-mono: 'Space Mono', 'IBM Plex Mono', 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.text-muted {
	--bs-text-opacity: 1;
	color: var(--text-muted) !important;
}

body {
	font-family: var(--font-family);
	color: var(--text-primary);
	background: var(--bg-primary);
	font-size: 14px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-weight: 400;
}


.navbar {
	padding: 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	display: block !important;
	background: var(--bg-primary);
	box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.navbar-container {
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 60px;
}

.logo {
	font-size: 22px;
	font-weight: 600;
	color: var(--primary-color) !important;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	font-family: var(--font-family-mono);
}

.logo-txt {
	font-weight: 700;
	font-size: 22px;
	vertical-align: middle;
	font-family: var(--font-family);
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 35px;
	margin: 0;
	padding: 0;
	align-items: center;
	flex: 1;
	justify-content: center;
	max-width: 600px;
}

.nav-menu a {
	text-decoration: none;
	color: var(--text-primary);
	font-size: 15px;
	font-weight: 500;
	transition: color 0.2s;
	white-space: nowrap;
}

.nav-menu a:hover {
	color: var(--primary-color);
}

.header-buttons {
	display: flex;
	gap: 12px;
	align-items: center;
	flex-shrink: 0;
}

/* Buttons */
.btn {
	padding: 8px 18px;
	border-radius: var(--border-radius-sm);
	font-weight: 500;
	text-decoration: none;
	align-items: center;
	gap: 8px;
	transition: all 0.2s ease;
	border: 1px solid transparent;
	cursor: pointer;
	font-size: 14px;
	white-space: nowrap;
}

.btn-primary {
	background: var(--primary-color);
	color: var(--text-white);
	border-color: var(--primary-color);
}

.btn-primary:hover {
	background: var(--primary-hover);
	border-color: var(--primary-hover);
	transform: translateY(-1px);
	box-shadow: var(--shadow);
	color: var(--text-white);
}

.btn-outline-primary {
	background: transparent;
	color: var(--primary-color);
	border-color: var(--primary-color);
}

.btn-outline-primary:hover {
	background: var(--primary-color);
	color: var(--text-white);
}

/* Bootstrap navbar support */
.navbar-collapse {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: space-between;
}

.navbar-toggler {
	display: none;
	background: none;
	border: none;
	padding: 4px 12px;
	cursor: pointer;
}

.navbar-toggler:focus {
	box-shadow: none;
	outline: none;
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(33, 37, 41, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
	width: 24px;
	height: 24px;
	display: inline-block;
}


.hero-carousel {
	margin-top: 30px;
	position: relative;
	padding: 30px 30px;
	background: var(--bg-secondary);
}

.carousel-wrapper {
	margin: 0 auto;
	border-radius: 12px;
	overflow: hidden;
}

.carousel {
	height: 450px;
	border-radius: 12px;
	overflow: hidden;
}

.carousel-inner {
	height: 90%;
	border-radius: 12px;
}

.carousel-item {
	height: 100%;
}

.banner {
	height: 100%;
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #0a0e27;
}

.banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #0000002b;
}

.banner-content {
	position: relative;
	text-align: center;
	color: white;
	padding: 0 20px;
}

.banner-content h1 {
	font-size: 55px;
	font-weight: 700;
	margin-bottom: 20px;
	background: linear-gradient(135deg, #ffffff 100%, #a0b3ff 0%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: none;
	font-family: var(--font-family);
	letter-spacing: -0.02em;
}

.banner-content h3 {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 30px;
	opacity: 0.9;
}

.carousel-indicators {
	bottom: 30px;
}

.carousel-indicators button {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	margin: 0 5px;
	background-color: rgba(255, 255, 255, 0.5);
	border: none;
}

.carousel-indicators .active {
	background-color: white;
}

.carousel-control-prev,
.carousel-control-next {
	width: 60px;
}

.carousel-control-prev {
	left: 20px;
}

.carousel-control-next {
	right: 20px;
}


.platforms-section {
	padding: 0 0 40px;
}

.platforms-section h1 {
	font-size: 42px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 20px;
	letter-spacing: -0.02em;
}

.platforms-section .text-lg {
	font-size: 20px;
	color: var(--text-secondary);
}

.platform-logos {
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	gap: 40px;
	padding: 20px 0;
}

.logo-item {
	flex: 0 0 auto;
	width: 150px;
	text-align: center;
	opacity: 0.7;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-item:hover {
	opacity: 1;
	transform: translateY(-2px);
}

.platform-name {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-muted);
	display: inline-block;
	padding: 10px 20px;
	border: 2px solid var(--border-color);
	border-radius: var(--border-radius);
	transition: all 0.3s ease;
}

.logo-item:hover .platform-name {
	color: var(--primary-color);
	border-color: var(--primary-color);
}

#platformCarousel {
	position: relative;
	overflow: hidden;
}

#platformCarousel .carousel-inner {
	overflow: visible;
}

#platformCarousel .carousel-item {
	transition: transform 0.8s ease-in-out;
}

/* Protection Features Section */
.protection-section {
	padding: 60px 0 80px;
	background: var(--bg-secondary);
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-header h2 {
	font-size: 36px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 15px;
	letter-spacing: -0.02em;
}

.section-header p {
	font-size: 18px;
	color: var(--text-muted);
	max-width: 600px;
	margin: 0 auto;
}

.protection-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-bottom: 50px;
}

.protection-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	padding: 30px;
	transition: all 0.3s ease;
	position: relative;
}

.protection-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow);
	border-color: var(--primary-color);
}

.protection-icon {
	width: 60px;
	height: 60px;
	background: rgba(81, 86, 190, 0.1);
	border-radius: var(--border-radius);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.protection-icon i {
	font-size: 28px;
	color: var(--primary-color);
}

.protection-card h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 15px;
}

.protection-card p {
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 20px;
}

.protection-features {
	list-style: none;
	padding: 0;
	margin: 0;
}

.protection-features li {
	padding: 8px 0;
	color: var(--text-secondary);
	display: flex;
	align-items: start;
	gap: 10px;
	font-size: 14px;
}

.protection-features i {
	color: var(--success-color);
	margin-top: 2px;
	flex-shrink: 0;
}

/* Key Features Section */
.key-features-section {
	padding: 80px 0;
	background: var(--bg-tertiary);
}

.key-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 60px;
}

.key-feature-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	padding: 40px 30px;
	text-align: center;
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.key-feature-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary-color);
}

.feature-image {
	width: 100px;
	height: 100px;
	margin: 0 auto 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(81, 86, 190, 0.1);
	border-radius: 50%;
}

.feature-image i {
	font-size: 48px;
	color: var(--primary-color);
}

.key-feature-card h3 {
	font-size: 22px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 20px;
}

.key-feature-card p {
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 30px;
	flex-grow: 1;
	text-align: left;
}

.feature-links {
	margin-top: auto;
}

.feature-link {
	display: block;
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 500;
	margin-top: 15px;
	transition: all 0.2s ease;
}

.feature-link:hover {
	color: var(--primary-hover);
	transform: translateX(5px);
}

.feature-link i {
	margin-left: 5px;
	transition: transform 0.2s ease;
}

.feature-link:hover i {
	transform: translateX(3px);
}

.text-lg {
	font-size: 18px;
}

/* Core Features */
.features-section {
	padding: 80px 0;
	background: var(--bg-tertiary);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.feature-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	padding: 30px;
	text-align: center;
	transition: all 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}

.feature-icon {
	width: 60px;
	height: 60px;
	background: rgba(81, 86, 190, 0.1);
	border-radius: var(--border-radius);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.feature-icon i {
	font-size: 28px;
	color: var(--primary-color);
}

.feature-card h3 {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 15px;
}

.feature-card p {
	color: var(--text-secondary);
	line-height: 1.6;
}

/* Stats Section */
.stats-section {
	padding: 60px 0;
	background: var(--primary-color);
	color: white;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	max-width: 1000px;
	margin: 0 auto;
}

.stat-item {
	text-align: center;
}

.stat-item h3 {
	font-size: 42px;
	font-weight: 600;
	margin-bottom: 10px;
	font-family: var(--font-family-mono);
}

.stat-item p {
	font-size: 16px;
	opacity: 0.9;
}

/* Pricing Section */
.pricing-section {
	padding: 80px 0;
	background: var(--bg-secondary);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	max-width: 1000px;
	margin: 0 auto;
}

.pricing-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	padding: 40px 30px;
	text-align: center;
	position: relative;
	transition: all 0.3s ease;
}

.pricing-card.featured {
	border-color: var(--primary-color);
	transform: scale(1.05);
}

.pricing-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}

.pricing-card.featured:hover {
	transform: scale(1.05) translateY(-2px);
}

.pricing-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--primary-color);
	color: white;
	padding: 4px 20px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}

.pricing-card h3 {
	font-size: 24px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 10px;
}

.pricing-card .price {
	font-size: 48px;
	font-weight: 700;
	color: var(--primary-color);
	margin: 20px 0;
}

.pricing-card .price span {
	font-size: 18px;
	font-weight: 400;
	color: var(--text-muted);
}

.pricing-card .description {
	color: var(--text-secondary);
	margin-bottom: 30px;
	font-size: 14px;
}

.pricing-card ul {
	list-style: none;
	padding: 0;
	margin: 0 0 30px 0;
	text-align: left;
}

.pricing-card li {
	padding: 8px 0;
	color: var(--text-secondary);
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
}

.pricing-card li i {
	color: var(--success-color);
}

/* CTA Section */
.cta-section {
	padding: 80px 0;
	background: var(--bg-tertiary);
	text-align: center;
}

.cta-section h2 {
	font-size: 36px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 20px;
}

.cta-section p {
	font-size: 20px;
	color: var(--text-secondary);
	margin-bottom: 40px;
}

/* Footer */
footer {
	background: var(--text-primary);
	color: white;
	padding: 60px 0 30px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-brand h3 {
	font-size: 24px;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-brand p {
	color: #a0aec0;
	line-height: 1.8;
	margin-bottom: 20px;
}

.footer-column h4 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 20px;
}

.footer-column ul {
	list-style: none;
	padding: 0;
}

.footer-column li {
	margin-bottom: 12px;
}

.footer-column a {
	color: #a0aec0;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s;
}

.footer-column a:hover {
	color: white;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 30px;
	text-align: center;
	color: #a0aec0;
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-links a {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: var(--border-radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #a0aec0;
	text-decoration: none;
	transition: all 0.2s;
}

.social-links a:hover {
	background: var(--primary-color);
	color: white;
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Mobile Menu */
.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 24px;
	color: var(--text-primary);
	cursor: pointer;
}

/* Responsive */
@media (max-width: 1200px) {
	.navbar-container {
		gap: 30px;
	}
	
	.nav-menu {
		gap: 25px;
	}
}

@media (max-width: 1024px) {
	.protection-grid,
	.stats-grid,
	.key-features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.platform-logos {
		gap: 30px;
	}
}

@media (max-width: 768px) {
	.mobile-menu-toggle,
	.navbar-toggler {
		display: block;
	}
	
	.navbar-collapse {
		position: fixed;
		top: 60px;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: calc(100vh - 60px);
		background: var(--bg-primary);
		padding: 30px 20px;
		box-shadow: var(--shadow-lg);
		border-top: 1px solid var(--border-color);
		z-index: 998;
		overflow-y: auto;
		display: flex;
		flex-direction: column;
		overflow: hidden;
	}
	
	.navbar-collapse.collapse:not(.show) {
		display: none;
	}
	
	.nav-menu {
		flex-direction: column;
		
		gap: 5px;
		width: 100%;
		margin-bottom: auto;
		padding-bottom: 30px;
		justify-content: flex-start;
	}
	
	.nav-menu a {
		padding: 15px 20px;
		text-align: center;
		display: block;
		border-radius: var(--border-radius);
		transition: all 0.2s ease;
		font-size: 18px;
		font-weight: 500;
	}
	
	.nav-menu a:hover {
		background: rgba(81, 86, 190, 0.1);
		color: var(--primary-color);
	}
	
	.header-buttons {
		flex-direction: column;
		gap: 15px;
		width: 100%;
		padding-top: 30px;
		margin-top: auto;
		border-top: 1px solid var(--border-light);
		padding-bottom: 250px;
	}
	
	.header-buttons .btn {
		width: 100%;
		justify-content: center;
		padding: 15px 24px;
		font-size: 16px;
		font-weight: 600;
	}
	
	/* Fix Bootstrap utility classes */
	.w-25 {
		width: 100% !important;
	}
	
	/* Section buttons */
	.d-flex .btn {
		width: 100% !important;
		max-width: 300px;
		margin: 8px auto !important;
	}
	
	.navbar-container {
		padding: 0 16px;
	}
	
	.hero-carousel {
		margin-top: 80px;
		padding: 20px 15px;
	}
	
	.carousel {
		height: 320px;
	}
	
	.carousel-wrapper {
		border-radius: 10px;
	}
	
	.banner-content h1 {
		font-size: 32px;
	}
	
	.banner-content h3 {
		font-size: 16px;
	}
	
	.carousel-control-prev,
	.carousel-control-next {
		width: 40px;
	}
	
	.carousel-control-prev {
		left: 10px;
	}
	
	.carousel-control-next {
		right: 10px;
	}
	
	.platforms-section h1 {
		font-size: 28px;
	}
	
	.platform-logos {
		gap: 20px;
		justify-content: center;
	}
	
	.logo-item {
		width: 45%;
		max-width: 130px;
	}
	
	.platform-name {
		font-size: 14px;
		padding: 6px 12px;
	}
	
	.section-header h2 {
		font-size: 28px;
	}
	
	.section-header p {
		font-size: 16px;
		padding: 0 20px;
	}
	
	.protection-grid,
	.features-grid,
	.pricing-grid,
	.stats-grid,
	.key-features-grid {
		grid-template-columns: 1fr;
	}
	
	.pricing-card.featured {
		transform: scale(1);
	}
	
	.stat-item h3 {
		font-size: 36px;
	}
	
	.cta-section h2 {
		font-size: 28px;
	}
	
	.cta-section p {
		font-size: 16px;
	}
	
	.footer-grid {
		grid-template-columns: 1fr;
		text-align: left;
	}
	
	.social-links {
		justify-content: flex-start;
		margin-top: 20px;
	}
	
	/* Telegram button on mobile */
	.telegram {
		bottom: 20px;
		right: 20px;
		width: 45px;
		height: 45px;
	}
}

@media (max-width: 480px) {
	.logo {
		font-size: 18px;
		gap: 6px;
	}
	
	.logo-txt {
		font-size: 18px;
	}
	
	.banner-content h1 {
		font-size: 26px;
	}
	
	.platforms-section h1 {
		font-size: 24px;
	}
	
	.section-header h2 {
		font-size: 24px;
	}
}

/* Ensure Bootstrap navbar works on desktop */
@media (min-width: 769px) {
	.navbar-collapse {
		display: flex !important;
	}
}


.telegram {
	position: fixed;
	bottom: 60px;
	right: 60px;
	width: 50px;
	height: 50px;
	z-index: 99999;
}
.telegram svg {
	border: 3px solid #fff;
	border-radius: 50%;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}
.telegram:hover svg #circle {
	fill: url(#bg) !important;
}

.crypto img {
	width: 56px;
	border: 3px solid #fff;
	border-radius: 50%;
}
.crypto img + img {
	margin-left: -16px;
}