@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap');

html, body {
	height: 100%;
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	background: #000;
	color: #fff;
	min-height: 100vh;
	letter-spacing: -0.01em;
	overflow-x: hidden;
}

a, a:hover {
	color: inherit;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

.underline {
	text-decoration: underline;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, .btn {
	font-weight: 600;
	letter-spacing: -0.02em;
	color: #ffffff;
}

h1 {
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 3.5rem;
	line-height: 1.1;
	background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

img.scheme {
	background: #ffffff;
	border-radius: 50%;
	padding: 16px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	margin-bottom: 2.5rem;
}

a[name] {
	display: inline-block;
	position: relative;
	top: -50px;
}

a[name="top"] {
	position: absolute;
	top: 0;
	left: 0;
}

a[href="#top"] {
	position: fixed;
	bottom: 20px;
	right: 20px;
	padding: 12px;
	font-size: 1.5rem;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.3s ease;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
}

a[href="#top"]:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

.color-red {
	color: #ef4444;
}

.big {
	font-size: 1.25rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.8);
}

header {
	background: linear-gradient(135deg, #0a0a0b 0%, #0d0d0e 15%, #111111 35%, #0f0f10 65%, #0d0d0e 85%, #0a0a0b 100%);
	background-image: url('/assets/img/header.tpl.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: visible;
}


header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(10, 10, 11, 0.88) 0%, rgba(13, 13, 14, 0.82) 15%, rgba(17, 17, 17, 0.78) 35%, rgba(15, 15, 16, 0.82) 65%, rgba(13, 13, 14, 0.85) 85%, rgba(10, 10, 11, 0.88) 100%);
	z-index: 1;
	pointer-events: none;
}

header::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 180px;
	background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 11, 0.1) 15%, rgba(10, 10, 11, 0.25) 30%, rgba(10, 10, 11, 0.45) 50%, rgba(10, 10, 11, 0.65) 70%, rgba(10, 10, 11, 0.85) 85%, #0a0a0b 100%);
	z-index: 2;
	pointer-events: none;
}

header > * {
	position: relative;
	z-index: 100;
}

/* Ensure content stays above fade overlay */
.hero-content,
.nav-container,
.other-pages-header > * {
	position: relative;
	z-index: 15;
}

/* Other Pages Header Styling */
.other-pages-header {
	padding: 2rem 0 3rem 0;
}



/* Navigation */
.nav {
	padding: 2rem 0;
	background: transparent;
	position: relative;
	width: 100%;
}

.nav-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	width: 100%;
	position: relative;
}

.logo-section {
	display: flex;
	align-items: center;
	gap: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.logo-section:hover .logo-text {
	opacity: 0.9;
}

/* Ensure logo link works properly */
a.logo-section {
	text-decoration: none !important;
	color: inherit;
}

a.logo-section:hover {
	text-decoration: none !important;
	color: inherit;
}

.logo-text {
	font-size: 1.75rem;
	font-weight: 700;
	color: white;
	letter-spacing: -0.02em;
	text-decoration: none;
	display: flex;
	align-items: center;
}

.nav-menu {
	display: flex;
	gap: 2rem;
	align-items: center;
	margin-left: auto;
}

.nav-link {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-weight: 500;
	font-size: 1rem;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.5rem 0;
	cursor: pointer;
	white-space: nowrap;
}

.nav-link:hover {
	color: white;
	text-decoration: none;
}

.nav-link[href$="/"]:hover {
	color: #60a5fa;
}

/* Hero Section */
.hero-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 4rem 2rem 4rem 2rem;
	position: relative;
	z-index: 100;
	max-width: 1200px;
	margin: 0 auto;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50px;
	padding: 0.875rem 1.75rem;
	margin-bottom: 2rem;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
	font-family: 'JetBrains Mono', monospace;
	letter-spacing: 0.02em;
}

.hero-badge-icon {
	width: 8px;
	height: 8px;
	background: #10b981;
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.7; transform: scale(1.05); }
}

.hero-title {
	font-family: 'Inter', sans-serif;
	font-size: 4rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.03em;
}

.hero-subtitle {
	font-size: 1.25rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.7);
	max-width: 650px;
	margin-bottom: 3rem;
	font-weight: 400;
}

.hero-cta {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
	z-index: 1001;
}

.cta-primary {
	background: linear-gradient(90deg,rgb(0, 0, 0) 0%,rgb(2, 6, 12) 100%);
	color: white;
	border: none;
	padding: 1rem 2rem;
	border-radius: 32px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 
		0 10px 25px rgba(2, 6, 12, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
	z-index: 1001;
	cursor: pointer;
	min-width: 200px;
}

.cta-primary:hover {
	transform: translateY(-2px);
	box-shadow: 
		0 15px 35px rgba(9, 20, 37, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.15);
	color: white;
	text-decoration: none;
}

.cta-secondary {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 0.5rem 1rem;
	border-radius: 32px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	z-index: 1001;
	cursor: pointer;
	min-width: 150px;
}

.cta-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
	color: white;
	text-decoration: none;
}

.trust-indicators {
	display: flex;
	align-items: center;
	gap: 2rem;
	margin-top: 4rem;
	padding: 1.5rem 2rem;
	background: rgba(255, 255, 255, 0.02);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.875rem;
	font-weight: 500;
}

.trust-indicator {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.trust-icon {
	width: 16px;
	height: 16px;
	background: #10b981;
	border-radius: 50%;
	position: relative;
	flex-shrink: 0;
}

.trust-icon::after {
	content: '✓';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 10px;
	font-weight: bold;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 0.5rem;
	background: transparent;
	border: none;
	transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
	opacity: 0.7;
}

.mobile-menu-toggle span {
	width: 22px;
	height: 2px;
	background: white;
	margin: 2px 0;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav-menu {
	display: none;
	width: 100%;
	backdrop-filter: blur(20px);
	padding: 2rem;
	z-index: 1001;
}

.mobile-nav-menu.show {
	display: block;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.mobile-nav-links {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	align-items: center;
}

.mobile-nav-links .nav-link {
	font-size: 1.125rem;
	padding: 1rem 0;
	width: 100%;
	text-align: center;
	background: transparent;
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	cursor: pointer;
	margin-bottom: 0;
	transition: all 0.3s ease;
}

.mobile-nav-links .nav-link:hover {
	color: white;
}

.mobile-nav-links .nav-link:last-child {
	border-bottom: none;
}

/* Ensure all interactive elements are clickable */
a, button, .btn, .cta-primary, .cta-secondary, .nav-link, .mobile-menu-toggle {
	pointer-events: auto !important;
	position: relative;
	z-index: 1001 !important;
}

/* Force clickable buttons */
.btn-jam, .cta-primary, .cta-secondary {
	pointer-events: auto !important;
	position: relative !important;
	z-index: 1001 !important;
	cursor: pointer;
}

/* Prevent any overlay issues */
* {
	-webkit-touch-callout: default;
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	user-select: auto;
}

/* Ensure parent containers don't block clicks */
.hero-content, .nav-container, .hero-cta {
	overflow: visible !important;
	clip: auto !important;
	clip-path: none !important;
}

@media (max-width: 1024px) and (min-width: 768px) {
	.nav-menu {
		gap: 1.5rem;
		font-size: 0.9rem;
	}
	
	.hero-title {
		font-size: 3.5rem;
	}
	
	.hero-subtitle {
		font-size: 1.125rem;
	}
	
	.trust-indicators {
		flex-wrap: wrap;
		justify-content: center;
	}
}

@media (max-width: 900px) {
	.nav-menu {
		display: none;
	}
	
	.mobile-menu-toggle {
		display: flex;
	}
	
	.nav-container {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}

.btn-jam {
	color: #fff;
	background: linear-gradient(135deg,rgb(15, 16, 19) 0%,rgb(18, 19, 22) 100%);
	border: none;
	height: 48px;
	border-radius: 32px;
	padding: 0.75rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 
		0 10px 25px rgba(8, 9, 12, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
	z-index: 100;
	cursor: pointer;
	border: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.btn-jam:hover {
	transform: translateY(-2px);
	box-shadow: 
		0 15px 35px rgba(15, 16, 19, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.15);
	color: #fff;
}

.btn-jam-white {
	background: rgba(255, 255, 255, 0.9);
	color: #1f2937;
	box-shadow: 
		0 10px 25px rgba(255, 255, 255, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-jam-white:hover {
	background: rgba(255, 255, 255, 1);
	color: #111827;
	box-shadow: 
		0 15px 35px rgba(255, 255, 255, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
}

.btn-jam.btn-jam-white {
	color: #1f2937;
	background: rgba(255, 255, 255, 0.9);
}

.btn.btn-jam:hover {
	color: #fff;
}

.btn.btn-jam.btn-jam-white:hover {
	color: #111827;
}

section {
	padding: 6rem 0;
	position: relative;
	background: linear-gradient(180deg, #0a0a0b 0%, #0f0f10 100%);
}

section:nth-child(even) {
	background: linear-gradient(180deg, #0f0f10 0%, #0a0a0b 100%);
}

.bg-grey {
	background: linear-gradient(180deg, #111111 0%, #0f0f10 100%);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.text-14 {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.6);
}

.text-20 {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.8);
}


.border-bottom-light {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

svg.icon {
	display: inline-block;
	stroke-width: 0;
	stroke: currentColor;
	fill: currentColor;
}

/* Modern Contact Section Styling */
.contacts-section {
	background: rgba(255, 255, 255, 0.02);
	backdrop-filter: blur(20px);
	border-radius: 24px;
	box-shadow: 
		0 20px 40px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 3rem;
	margin: 2rem 0;
	position: relative;
	overflow: hidden;
}

.contacts-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.contacts-section p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 2rem;
}

.contacts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}

.contact-item {
	display: flex;
	align-items: center;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none;
	color: inherit;
	position: relative;
	overflow: hidden;
}

.contact-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
	transition: left 0.5s ease;
}

.contact-item:hover::before {
	left: 100%;
}

.contact-item:hover {
	transform: translateY(-4px);
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.1);
	box-shadow: 
		0 12px 24px rgba(0, 0, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 1.5rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.contact-icon::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.contact-item:hover .contact-icon::before {
	opacity: 1;
}

.contact-icon svg.icon {
	width: 1.75rem;
	height: 1.75rem;
	color: #ffffff;
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
}

.contact-item:hover .contact-icon svg.icon {
	transform: scale(1.1);
}

.contact-content {
	flex: 1;
}

.contact-label {
	font-weight: 600;
	font-size: 1.1rem;
	color: #ffffff;
	margin-bottom: 0.25rem;
	transition: all 0.3s ease;
}

.contact-value {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.7);
	transition: all 0.3s ease;
}

.contact-item:hover .contact-label {
	color: #ffffff;
}

.contact-item:hover .contact-value {
	color: rgba(255, 255, 255, 0.9);
}



.logo {
	display: inline-block;
	position: relative;
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 0.9;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: all 0.3s ease;
}

.logo:hover {
	text-decoration: none;
	transform: scale(1.05);
}

/* Ensure main content has proper styling */
main {
	min-height: calc(100vh - 200px);
	position: relative;
	z-index: 50;
}

/* Smooth transition between header and main content */
header + main {
	margin-top: 0;
}

section h2.h1, section h1, .h1 {
	font-family: 'Inter', sans-serif;
	font-size: 2.75rem;
	font-weight: 700;
	margin-bottom: 4rem;
	background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-align: center;
	letter-spacing: -0.02em;
}

/* Benefits Grid */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2.5rem;
	margin-top: 4rem;
}

.benefit-card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px);
	border-radius: 16px;
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.2),
		0 0 0 1px rgba(255, 255, 255, 0.08);
	transition: all 0.3s ease;
	padding: 2rem;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-card:hover {
	transform: translateY(-4px);
	box-shadow: 
		0 12px 40px rgba(0, 0, 0, 0.25),
		0 0 0 1px rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.08);
}

.benefit-card-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(59, 130, 246, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 2;
	border: 1px solid rgba(59, 130, 246, 0.2);
	transition: all 0.3s ease;
}

.benefit-card-icon svg {
	width: 24px;
	height: 24px;
	fill: #3b82f6;
}

.benefit-card h3 {
	color: #ffffff;
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	position: relative;
	z-index: 2;
	letter-spacing: -0.01em;
}

.benefit-card p {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	position: relative;
	z-index: 2;
	font-size: 0.95rem;
}

/* Individual card color variations */
.benefit-card:nth-child(1) .benefit-card-icon {
	background: rgba(59, 130, 246, 0.15);
	border-color: rgba(59, 130, 246, 0.2);
}

.benefit-card:nth-child(1) .benefit-card-icon svg {
	fill: #3b82f6;
}

.benefit-card:nth-child(2) .benefit-card-icon {
	background: rgba(16, 185, 129, 0.15);
	border-color: rgba(16, 185, 129, 0.2);
}

.benefit-card:nth-child(2) .benefit-card-icon svg {
	fill: #10b981;
}

.benefit-card:nth-child(3) .benefit-card-icon {
	background: rgba(245, 158, 11, 0.15);
	border-color: rgba(245, 158, 11, 0.2);
}

.benefit-card:nth-child(3) .benefit-card-icon svg {
	fill: #f59e0b;
}

.benefit-card:nth-child(4) .benefit-card-icon {
	background: rgba(139, 92, 246, 0.15);
	border-color: rgba(139, 92, 246, 0.2);
}

.benefit-card:nth-child(4) .benefit-card-icon svg {
	fill: #8b5cf6;
}

.benefit-card:nth-child(1)::before {
	background: #3b82f6;
}

.benefit-card:nth-child(2)::before {
	background: #10b981;
}

.benefit-card:nth-child(3)::before {
	background: #f59e0b;
}

.benefit-card:nth-child(4)::before {
	background: #8b5cf6;
}

footer {
	background: linear-gradient(135deg, #0a0a0b 0%, #111111 100%);
	padding: 5rem 0 3rem 0;
	color: #fff;
	position: relative;
	overflow: hidden;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px),
		linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px);
	background-size: 80px 80px;
	opacity: 0.3;
}

footer .container {
	position: relative;
	z-index: 2;
}

footer .logo {
	margin-bottom: 1.5rem;
	color: #fff !important;
	background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-size: 1.875rem;
	font-weight: 700;
	padding: 0;
}

footer a {
	color: rgba(255, 255, 255, 0.7);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none;
}

footer a:hover {
	color: #fff;
	text-decoration: none;
	transform: translateX(3px);
}

footer .icons {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
	flex-wrap: wrap;
}

footer .icons a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #fff;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	font-size: 1rem;
	transform: translateX(0);
}

footer .icons a:hover {
	background: rgba(59, 130, 246, 0.2);
	border-color: rgba(59, 130, 246, 0.3);
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
	text-decoration: none;
}

footer .icons a svg.icon {
	width: 1.125rem;
	height: 1.125rem;
}

footer a.fingerprint {
	color: rgba(255, 255, 255, 0.9);
	display: inline-block;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	padding: 1rem 1.5rem;
	font-weight: 500;
	font-size: 0.875rem;
	font-family: 'JetBrains Mono', monospace;
	background: rgba(255, 255, 255, 0.02);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	letter-spacing: 0.02em;
	transform: translateX(0);
}

footer a.fingerprint:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.3);
	color: #fff;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

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



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

.faq-item {
	background: rgba(255, 255, 255, 0.02);
	backdrop-filter: blur(20px);
	border-radius: 16px;
	box-shadow: 
		0 10px 30px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.05);
	padding: 2rem;
	margin-bottom: 1.5rem;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.faq-item:hover {
	transform: translateY(-5px);
	box-shadow: 
		0 20px 40px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.08);
}

.faq-item h5 {
	color: #fff;
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 2;
}

.faq-item p {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
	margin-bottom: 0;
	position: relative;
	z-index: 2;
}





@media (max-width: 991px) {
	.nav-container {
		padding: 0 1.5rem;
	}
	
	.nav-menu {
		gap: 1.5rem;
	}
	
	.hero-title {
		font-size: 3.25rem;
	}
	
	.hero-subtitle {
		font-size: 1.125rem;
		max-width: 90%;
	}
	
	.hero-cta {
		flex-direction: column;
		gap: 1rem;
		width: 100%;
	}
	
	.cta-primary,
	.cta-secondary {
		width: 100%;
		max-width: 320px;
		text-align: center;
	}
	
	.trust-indicators {
		flex-direction: column;
		gap: 1.5rem;
		margin-top: 3rem;
		padding: 1.5rem;
		align-items: start;
	}
	
	.trust-indicator {
		justify-content: center;
	}
	
	.benefits-grid {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 2rem;
	}
	
	.benefit-card {
		padding: 2rem;
	}
	
	.benefit-card-icon {
		width: 50px;
		height: 50px;
		margin-bottom: 1.5rem;
	}
	
	.benefit-card-icon svg {
		width: 24px;
		height: 24px;
	}
	
	.benefit-card h3 {
		font-size: 1.375rem;
	}
	
	.contacts-section {
		padding: 2rem;
		margin: 1.5rem 0;
	}
	
	.contacts-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 1.25rem;
	}
	
	.contact-item {
		padding: 1.25rem;
	}
	
	.contact-icon {
		width: 48px;
		height: 48px;
		margin-right: 1rem;
	}
	
	.contact-icon svg.icon {
		width: 1.5rem;
		height: 1.5rem;
	}
}

@media (max-width: 767px) {
	.nav-menu {
		display: none;
	}
	
	.mobile-menu-toggle {
		display: flex;
	}
	
	.hero-content {
		padding: 3rem 1rem 3rem 1rem;
		min-height: calc(100vh - 200px);
	}
	
	.hero-title {
		font-size: 2.75rem;
		margin-bottom: 1.25rem;
	}
	
	.hero-subtitle {
		font-size: 1.125rem;
		max-width: 95%;
		margin-bottom: 2.5rem;
	}
	
	.cta-primary,
	.cta-secondary {
		padding: 1rem 1.75rem;
		font-size: 1rem;
		min-width: 280px;
	}
	
	.trust-indicators {
		margin-top: 2rem;
		padding: 1.25rem;
		font-size: 0.8rem;
		gap: 1rem;
	}
	
	.benefits-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		margin-top: 3rem;
	}
	
	.benefit-card {
		padding: 2rem;
	}
	
	.benefit-card-icon {
		width: 45px;
		height: 45px;
		margin-bottom: 1.25rem;
	}
	
	.benefit-card-icon svg {
		width: 22px;
		height: 22px;
	}
	
	.benefit-card h3 {
		font-size: 1.25rem;
		margin-bottom: 1rem;
	}
	
	.benefit-card p {
		font-size: 0.95rem;
		line-height: 1.7;
	}
	
	.contacts-section {
		padding: 1.5rem;
		margin: 1rem 0;
	}
	
	.contacts-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.contact-item {
		padding: 1rem;
	}
	
	.contact-icon {
		width: 44px;
		height: 44px;
		margin-right: 0.875rem;
	}
	
	.contact-icon svg.icon {
		width: 1.375rem;
		height: 1.375rem;
	}
	
	.contact-label {
		font-size: 1rem;
	}
	
	.contact-value {
		font-size: 0.875rem;
	}
}

@media (max-width: 575px) {
	img.scheme {
		width: 100%;
	}

	.hero-title {
		font-size: 2.5rem;
	}
	
	.hero-subtitle {
		font-size: 1rem;
		margin-bottom: 2rem;
	}
	
	.cta-primary,
	.cta-secondary {
		min-width: 260px;
		font-size: 0.95rem;
	}
	
	.trust-indicators {
		font-size: 0.75rem;
		padding: 1rem;
		gap: 0.75rem;
		align-items: start;
	}
	
	.contacts-section {
		padding: 1rem;
		margin: 0.75rem 0;
	}
	
	.contacts-section p {
		font-size: 1rem;
	}
	
	.contact-item {
		padding: 0.875rem;
	}
	
	.contact-icon {
		width: 40px;
		height: 40px;
		margin-right: 0.75rem;
	}
	
	.contact-icon svg.icon {
		width: 1.25rem;
		height: 1.25rem;
	}
	
	.contact-label {
		font-size: 0.95rem;
	}
	
	.contact-value {
		font-size: 0.8rem;
	}
}

@media (max-width: 400px) {
	header nav .menu {
		font-size: .75rem;
	}
	footer .menu {
		font-size: .75rem;
	}
}

#loader {
	width: 130px;
	height: 30px;
	display: block;
	position: relative;
	margin: auto;
}

.loader-block {
	background-color: white;
	float: left;
	height: 23px;
	margin-left: 7px;
	width: 23px;
	opacity: 0.1;
	animation-name: bounceG;
	-o-animation-name: bounceG;
	-ms-animation-name: bounceG;
	-webkit-animation-name: bounceG;
	-moz-animation-name: bounceG;
	animation-duration: 1.5s;
	-o-animation-duration: 1.5s;
	-ms-animation-duration: 1.5s;
	-webkit-animation-duration: 1.5s;
	-moz-animation-duration: 1.5s;
	animation-iteration-count: infinite;
	-o-animation-iteration-count: infinite;
	-ms-animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	animation-direction: normal;
	-o-animation-direction: normal;
	-ms-animation-direction: normal;
	-webkit-animation-direction: normal;
	-moz-animation-direction: normal;
	transform: scale(0.7);
	-o-transform: scale(0.7);
	-ms-transform: scale(0.7);
	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7);
}

#block-1 {
	animation-delay: 0.45s;
	-o-animation-delay: 0.45s;
	-ms-animation-delay: 0.45s;
	-webkit-animation-delay: 0.45s;
	-moz-animation-delay: 0.45s;
}

#block-2 {
	animation-delay: 0.6s;
	-o-animation-delay: 0.6s;
	-ms-animation-delay: 0.6s;
	-webkit-animation-delay: 0.6s;
	-moz-animation-delay: 0.6s;
}

#block-3 {
	animation-delay: 0.75s;
	-o-animation-delay: 0.75s;
	-ms-animation-delay: 0.75s;
	-webkit-animation-delay: 0.75s;
	-moz-animation-delay: 0.75s;
}

#block-4 {
	animation-delay: 0.9s;
	-o-animation-delay: 0.9s;
	-ms-animation-delay: 0.9s;
	-webkit-animation-delay: 0.9s;
	-moz-animation-delay: 0.9s;
}

@keyframes bounceG {
	0% {
		transform: scale(1.2);
		opacity: 1;
	}
	100% {
		transform: scale(0.7);
		opacity: 0.1;
	}
}

@-o-keyframes bounceG {
	0% {
		-o-transform: scale(1.2);
		opacity: 1;
	}
	100% {
		-o-transform: scale(0.7);
		opacity: 0.1;
	}
}

@-ms-keyframes bounceG {
	0% {
		-ms-transform: scale(1.2);
		opacity: 1;
	}
	100% {
		-ms-transform: scale(0.7);
		opacity: 0.1;
	}
}

@-webkit-keyframes bounceG {
	0% {
		-webkit-transform: scale(1.2);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(0.7);
		opacity: 0.1;
	}
}

@-moz-keyframes bounceG {
	0% {
		-moz-transform: scale(1.2);
		opacity: 1;
	}
	100% {
		-moz-transform: scale(0.7);
		opacity: 0.1;
	}
}

/* Mix Page Styles */
.mix-page-section {
	padding: 4rem 0 6rem;
	position: relative;
}

/* Mix Hero Section */
.mix-hero {
	text-align: center;
	margin-bottom: 4rem;
	position: relative;
	z-index: 2;
}

.mix-hero-content {
	max-width: 800px;
	margin: 0 auto;
}

.mix-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: rgba(59, 130, 246, 0.1);
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 50px;
	padding: 0.75rem 1.5rem;
	margin-bottom: 2rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: #60a5fa;
	backdrop-filter: blur(10px);
	animation: fadeInUp 0.8s ease-out;
}

.mix-hero-icon {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.mix-hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: fadeInUp 0.8s ease-out 0.1s both;
}

.mix-hero-subtitle {
	font-size: 1.25rem;
	line-height: 1.6;
	color: #9ca3af;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	animation: fadeInUp 0.8s ease-out 0.2s both;
}

.mix-free-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
	border: 1px solid rgba(34, 197, 94, 0.3);
	border-radius: 50px;
	padding: 1rem 1.5rem;
	font-size: 1rem;
	font-weight: 600;
	color: #22c55e;
	backdrop-filter: blur(10px);
	animation: fadeInUp 0.8s ease-out 0.3s both;
	box-shadow: 0 4px 20px rgba(34, 197, 94, 0.2);
}

.mix-free-icon {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

/* Mix Form Container */
.mix-form-container {
	max-width: 600px;
	margin: 0 auto 4rem;
	position: relative;
	z-index: 2;
}

.mix-form-card {
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	padding: 3rem;
	box-shadow: 
		0 25px 50px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	animation: fadeInUp 0.8s ease-out 0.4s both;
}

.mix-form-card:hover {
	transform: translateY(-4px);
	box-shadow: 
		0 35px 70px rgba(0, 0, 0, 0.5),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.12);
}

.mix-form-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.mix-form-header h2 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: #ffffff;
}

.mix-form-header p {
	font-size: 1.125rem;
	color: #9ca3af;
	line-height: 1.6;
}

/* Mix Form Content */
.mix-form-content {
	position: relative;
}

.mix-error-alert {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	background: rgba(239, 68, 68, 0.1);
	border: 1px solid rgba(239, 68, 68, 0.3);
	border-radius: 12px;
	padding: 1rem 1.25rem;
	margin-bottom: 2rem;
	color: #f87171;
	font-size: 0.875rem;
	font-weight: 500;
}

.mix-error-icon {
	width: 20px;
	height: 20px;
	fill: currentColor;
	flex-shrink: 0;
}

/* Mix Form */
.mix-form {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.mix-input-group {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.mix-input-group label {
	font-size: 0.875rem;
	font-weight: 600;
	color: #e5e7eb;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.mix-optional {
	color: #6b7280;
	font-weight: 400;
	text-transform: none;
}

.mix-input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.mix-input {
	width: 100%;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 32px;
	padding: 1rem 1rem 1rem 1rem;
	font-size: 1rem;
	color: #ffffff;
	font-family: 'JetBrains Mono', monospace;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.mix-input::placeholder {
	color: #6b7280;
	font-family: 'Inter', sans-serif;
}

.mix-input:focus {
	outline: none;
	border-color: rgba(59, 130, 246, 0.5);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.mix-input:focus + .mix-input-icon {
	fill: #60a5fa;
}

.mix-input-error {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #f87171;
	font-size: 0.875rem;
	font-weight: 500;
	margin-top: 0.5rem;
}

.mix-error-icon-small {
	width: 16px;
	height: 16px;
	fill: currentColor;
	flex-shrink: 0;
}



/* Mix Service Info */
.mix-service-info {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.mix-service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.mix-service-item {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
	border-radius: 16px;
	padding: 2rem;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	animation: fadeInUp 0.8s ease-out 0.5s both;
}

.mix-service-item:nth-child(2) {
	animation-delay: 0.6s;
}

.mix-service-item:nth-child(3) {
	animation-delay: 0.7s;
}




.mix-service-content h3 {
	font-size: 1.125rem;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 0.5rem;
}

.mix-service-content p {
	font-size: 1rem;
	color: #9ca3af;
	font-weight: 500;
}

/* Mix Info Note */
.mix-info-note {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	background: rgba(59, 130, 246, 0.05);
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 16px;
	padding: 1.5rem;
	animation: fadeInUp 0.8s ease-out 0.8s both;
}

.mix-info-icon {
	width: 24px;
	height: 24px;
	fill: #60a5fa;
	flex-shrink: 0;
	margin-top: 0.125rem;
}

.mix-info-note p {
	font-size: 1rem;
	color: #d1d5db;
	line-height: 1.6;
	margin: 0;
}

.mix-link {
	color: #60a5fa;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.mix-link:hover {
	color: #93c5fd;
	text-decoration: underline;
}

/* Responsive Design for Mix Page */
@media (max-width: 768px) {
	.mix-page-section {
		padding: 2rem 0 4rem;
	}
	
	.mix-hero-title {
		font-size: 2.5rem;
	}
	
	.mix-hero-subtitle {
		font-size: 1.125rem;
	}
	
	.mix-form-card {
		padding: 2rem;
		margin: 0 1rem;
	}
	
	.mix-form-header h2 {
		font-size: 1.75rem;
	}
	
	.mix-service-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.mix-service-item {
		padding: 1.5rem;
	}
	

}

@media (max-width: 480px) {
	.mix-hero-title {
		font-size: 2rem;
	}
	
	.mix-hero-badge,
	.mix-free-badge {
		gap: 0.5rem;
		padding: 1rem;
	}
	
	.mix-form-card {
		padding: 1.5rem;
	}
	
	.mix-service-item {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}
	
	.mix-info-note {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

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

/* Result Page Styles */
.result-hero-section {
	padding: 4rem 0 2rem;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
	position: relative;
	overflow: hidden;
}

.result-hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
				radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
	pointer-events: none;
}

.result-hero-content {
	text-align: center;
	position: relative;
	z-index: 2;
}

.result-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50px;
	padding: 0.75rem 1.5rem;
	margin-bottom: 2rem;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #10b981;
	backdrop-filter: blur(10px);
}

.result-hero-icon {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.result-hero-title {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.result-hero-subtitle {
	font-size: 1.125rem;
	color: #9ca3af;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Deposit Section */
.deposit-section {
	padding: 2rem 0 4rem;
}

.deposit-card {
	background: rgba(255, 255, 255, 0.02);
	backdrop-filter: blur(20px);
	border-radius: 24px;
	box-shadow: 
		0 20px 40px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.05);
	padding: 3rem;
	max-width: 800px;
	margin: 0 auto;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.deposit-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.deposit-header h2 {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #ffffff;
}

.deposit-header p {
	color: #9ca3af;
	font-size: 1rem;
}

/* Address Container */
.address-container {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	align-items: center;
	margin-bottom: 2.5rem;
}

.address-display {
	position: relative;
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.address-text {
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.875rem;
	color: #ffffff;
	word-break: break-all;
	line-height: 1.4;
	flex: 1;
}

.copy-btn {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	padding: 0.75rem;
	cursor: pointer;
	transition: all 0.3s ease;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.copy-btn:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-1px);
}

.copy-icon {
	width: 20px;
	height: 20px;
	fill: #ffffff;
}

/* QR Container */
.qr-container {
	position: relative;
	background: #ffffff;
	border-radius: 16px;
	padding: 1.5rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
}

.qr-code {
	max-width: 200px;
	height: auto;
	border-radius: 8px;
}

.qr-icon {
	width: 30px;
	height: 30px;
	fill: #ffffff;
}

/* Transaction Status */
.transaction-status {
	margin-bottom: 2.5rem;
}

.status-item {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 1.5rem;
	border-radius: 32px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.status-loading {
	border-color: rgba(59, 130, 246, 0.3);
	background: rgba(59, 130, 246, 0.05);
}

.status-success {
	border-color: rgba(34, 197, 94, 0.3);
	background: rgba(34, 197, 94, 0.05);
}

.status-error {
	border-color: rgba(239, 68, 68, 0.3);
	background: rgba(239, 68, 68, 0.05);
}

.status-spinner {
	position: relative;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
}

.spinner-ring {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 3px solid rgba(59, 130, 246, 0.2);
	border-top: 3px solid #3b82f6;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.status-icon {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.status-loading .status-icon {
	background: rgba(59, 130, 246, 0.1);
}

.status-success .status-icon {
	background: rgba(34, 197, 94, 0.1);
}

.status-success .status-icon svg {
	fill: #22c55e;
	width: 24px;
	height: 24px;
}

.status-error .status-icon {
	background: rgba(239, 68, 68, 0.1);
}

.status-error .status-icon svg {
	fill: #ef4444;
	width: 24px;
	height: 24px;
}

.status-content h3 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
	color: #ffffff;
}

.status-content p {
	color: #9ca3af;
	margin-bottom: 0.25rem;
}

.status-note {
	font-size: 0.875rem;
	color: #6b7280;
}

/* Deposit Actions */
.deposit-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-guarantee {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2rem;
	border-radius: 32px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}

.btn-guarantee {
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
	color: #ffffff;
	box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.btn-guarantee:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
	color: #ffffff;
}



.btn-icon {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

/* Calculator Section */
.calculator-section {
	padding: 2rem 0 4rem;
	background: rgba(255, 255, 255, 0.01);
}



.calculator-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.calculator-header h2 {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #ffffff;
}

.calculator-header p {
	color: #9ca3af;
	font-size: 1rem;
}

.calculator-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-bottom: 2rem;
}

.calculator-input-group,
.calculator-result-group {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.calculator-input-group label,
.calculator-result-group label {
	font-weight: 500;
	color: #ffffff;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.calculator-input {
	width: 100%;
	padding: 1rem 1rem 1rem 1.5rem;
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	color: #ffffff;
	font-size: 1.125rem;
	font-weight: 500;
	transition: all 0.3s ease;
}

.calculator-input:focus {
	outline: none;
	border-color: #3b82f6;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.input-suffix {
	position: absolute;
	right: 2.5rem;
	color: #9ca3af;
	font-weight: 500;
	pointer-events: none;
}

.input-help {
	font-size: 0.875rem;
	color: #6b7280;
	margin: 0;
}

.result-display {
	background: rgba(34, 197, 94, 0.1);
	border: 1px solid rgba(34, 197, 94, 0.2);
	border-radius: 12px;
	padding: 1rem 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.result-amount {
	font-size: 1.5rem;
	font-weight: 700;
	color: #22c55e;
	font-family: 'JetBrains Mono', monospace;
}

.result-currency {
	font-size: 1rem;
	color: #9ca3af;
	font-weight: 500;
}

.result-note {
	font-size: 0.875rem;
	color: #6b7280;
	margin: 0;
}

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

.btn-calculate {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2.5rem;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: #ffffff;
	border: none;
	border-radius: 12px;
	font-weight: 500;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.btn-calculate:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
	.result-hero-title {
		font-size: 2rem;
	}
	
	.result-hero-subtitle {
		font-size: 1rem;
	}
	
	.deposit-card {
		padding: 2rem;
		margin: 0 1rem;
	}
	
	.address-container {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.address-display {
		padding: 1rem;
	}
	
	.address-text {
		font-size: 0.75rem;
	}
	
	.qr-container {
		padding: 1rem;
	}
	
	.qr-code {
		max-width: 150px;
	}
	
	.calculator-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.deposit-actions {
		flex-direction: column;
		align-items: center;
	}
	
	.btn-guarantee {
		width: 100%;
		max-width: 300px;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.result-hero-badge {
		font-size: 0.75rem;
		padding: 0.5rem 1rem;
	}
	
	.deposit-card {
		padding: 1.5rem;
	}
	
	.deposit-header h2 {
		font-size: 1.5rem;
	}
	
	.status-item {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}
	
	.status-content h3 {
		font-size: 1rem;
	}
}
