/* ═══════════════════════════════════ GASPROIDS — HERO BLOCK ═══════════════════════════════════ */
@keyframes pillIn {
	from {
		opacity: 0;
		transform: translateX(12px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

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

@keyframes shimmer {
	0% {
		background-position: -200% center;
	}

	100% {
		background-position: 200% center;
	}
}

.gh-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #e0e0e0;
	min-height: 380px;
}

/* ── LEFT (orange) ── */
.gh-left {
	background: #E8650A;
	padding: 2.5rem 3.5rem 2.5rem 2.5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
	clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%);
	animation: fadeUp 0.5s ease both;
}

.gh-hex-dec {
	position: absolute;
	bottom: -30px;
	left: -30px;
	width: 170px;
	opacity: 0.1;
	pointer-events: none;
}

.gh-eyebrow {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.82);
	margin-bottom: 0.9rem;
	position: relative;
	z-index: 2;
}

.gh-h1 {
	font-size: 25px;
	font-weight: 900;
	color: #fff;
	line-height: 1.2;
	text-align: left !important;
	position: relative;
	z-index: 2;
	margin-bottom: 0.75rem;
}

.gh-tagline {
	font-size: 12.5px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.86);
	line-height: 1.65;
	position: relative;
	z-index: 2;
	margin-bottom: 1.5rem;
}

.gh-btns-l {
	display: flex;
	flex-direction: column;
	gap: 8px;
	position: relative;
	z-index: 2;
	max-width: 210px;
}

/* ── RIGHT (white) ── */
.gh-right {
	background: #fff;
	padding: 2.5rem 2.5rem 2.5rem 3.5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	animation: fadeUp 0.5s 0.1s ease both;
}

.gh-right-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #bbb;
	margin-bottom: 0.75rem;
}

.gh-pills-wrap {
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
	margin-bottom: 1.25rem;
}

.gh-pill {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #f8f8f8;
	border: 1px solid #ececec;
	border-radius: 8px;
	padding: 9px 14px;
	text-decoration: none;
	animation: pillIn 0.35s ease both;
	transition: border-color 0.18s, background 0.18s, transform 0.18s, box-shadow 0.18s;
}

.gh-pill:nth-child(1) {
	animation-delay: 0.08s;
}

.gh-pill:nth-child(2) {
	animation-delay: 0.13s;
}

.gh-pill:nth-child(3) {
	animation-delay: 0.18s;
}

.gh-pill:nth-child(4) {
	animation-delay: 0.23s;
}

.gh-pill:nth-child(5) {
	animation-delay: 0.28s;
}

.gh-pill:nth-child(6) {
	animation-delay: 0.33s;
}

.gh-pill:nth-child(7) {
	animation-delay: 0.38s;
}

.gh-pill:hover {
	border-color: #E8650A;
	background: #fff8f4;
	transform: translateX(4px);
	box-shadow: -3px 0 0 #E8650A;
}

.gh-pill i {
	font-size: 16px;
	color: #E8650A;
	flex-shrink: 0;
}

.gh-pill-name {
	font-size: 12.5px;
	font-weight: 600;
	color: #1a1a1a;
	flex: 1;
}

.gh-pill-arrow {
	font-size: 13px;
	color: #ccc;
	transition: transform 0.18s, color 0.18s;
}

.gh-pill:hover .gh-pill-arrow {
	transform: translateX(3px);
	color: #E8650A;
}

/* ── BOTTOM AUTH ── */
.gh-bottom-r {
	border-top: 1px solid #f0f0f0;
	padding-top: 1rem;
	display: flex;
	align-items: center;
	gap: 8px;
}

.gh-auth-label {
	font-size: 11px;
	color: #bbb;
	margin-right: 2px;
	white-space: nowrap;
}

/* ── BUTTONS (универсальные) ── */
.btn {
	display: inline-block;
	text-align: center;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 700;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: transform 0.18s, box-shadow 0.18s, background 0.18s, color 0.18s;
}

.btn::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.25) 50%, transparent 70%);
	background-size: 200% 100%;
	opacity: 0;
	transition: opacity 0.2s;
}

.btn:hover::after {
	opacity: 1;
	animation: shimmer 0.6s linear;
}

.btn:active {
	transform: scale(0.96);
}

.btn-dark {
	background: #1a0800;
	color: #fff;
	font-size: 12.5px;
	padding: 10px 18px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.btn-dark:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
	transform: translateY(-1px);
}

.btn-outline-w {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 12px;
	padding: 9px 18px;
	border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.btn-outline-w:hover {
	background: rgba(255, 255, 255, 0.28);
	transform: translateY(-1px);
}

.btn-login {
	background: #fff;
	color: #E8650A;
	font-size: 12px;
	padding: 7px 15px;
	border: 1.5px solid #E8650A;
	box-shadow: 0 1px 4px rgba(232, 101, 10, 0.1);
}

.btn-login:hover {
	background: #E8650A;
	color: #fff;
	box-shadow: 0 3px 12px rgba(232, 101, 10, 0.35);
	transform: translateY(-1px);
}

.btn-register {
	background: #E8650A;
	color: #fff;
	font-size: 12px;
	padding: 7px 15px;
	box-shadow: 0 1px 4px rgba(232, 101, 10, 0.2);
}

.btn-register:hover {
	background: #d05a08;
	box-shadow: 0 3px 12px rgba(232, 101, 10, 0.4);
	transform: translateY(-1px);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
	.gh-wrap {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.gh-left {
		clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 50% 100%, 0 calc(100% - 20px));
		padding: 2rem 2rem 3rem;
	}

	.gh-right {
		padding: 2rem;
	}

	.gh-btns-l {
		max-width: 100%;
		flex-direction: row;
		flex-wrap: wrap;
	}
}

/* ═══════════════════════════════════
GASPROIDS — HOW IT WORKS BLOCK
═══════════════════════════════════ */

.hw-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-radius: 12px;
	min-height: 420px;
	position: relative;
	border: 1px solid #2a2a2a;
	overflow: hidden;
	font-family: sans-serif;
}

/* LEFT — white */
.hw-left {
	background: #fff;
	padding: 2.5rem 2.5rem 2.5rem 2.5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}

.hw-eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #E8650A;
	margin-bottom: 0.75rem;
}

.hw-h2 {
	font-size: 26px;
	font-weight: 900;
	color: #1a1a1a;
	line-height: 1.2;
	margin-bottom: 1rem;
	text-align: left !important;
}

.hw-h2 em {
	font-style: normal;
	color: #E8650A;
}

.hw-lead {
	font-size: 14px;
	color: #555;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.hw-steps {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hw-step {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 13px 16px;
	background: #fafafa;
	border: 1px solid #efefef;
	border-left: 3px solid #E8650A;
	border-radius: 0 8px 8px 0;
	transition: background 0.18s, transform 0.18s;
}

.hw-step:hover {
	background: #fff8f4;
	transform: translateX(3px);
}

.hw-step-num {
	font-size: 20px;
	font-weight: 900;
	color: #E8650A;
	line-height: 1;
	flex-shrink: 0;
	min-width: 22px;
}

.hw-step-title {
	font-size: 13px;
	font-weight: 700;
	color: #1a1a1a;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 3px;
}

.hw-step-text {
	font-size: 13px;
	color: #777;
	line-height: 1.55;
}

/* RIGHT — dark */
.hw-right {
	background: #1a1a1a;
	padding: 2rem 1.75rem 2rem 3.5rem;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	clip-path: polygon(30px 0, 100% 0, 100% 100%, 30px 100%, 0% 50%);
	z-index: 2;
}

.hw-hex-bg {
	position: absolute;
	top: -40px;
	right: -40px;
	width: 200px;
	opacity: 0.05;
	pointer-events: none;
}

.hw-nav {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 1;
	gap: 0;
}

.hw-nav-group {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hw-nav-group+.hw-nav-group {
	border-top: 1px solid #252525;
}

.hw-nav-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #E8650A;
	margin-bottom: 9px;
	padding-top: 14px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.hw-nav-label::after {
	content: '';
	flex: 1;
	height: 1px;
	background: rgba(232, 101, 10, 0.2);
}

.hw-nav-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding-bottom: 14px;
}

.hw-nav-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #222;
	border: 1px solid #2e2e2e;
	border-radius: 6px;
	padding: 9px 14px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	color: #ccc;
	transition: border-color 0.18s, background 0.18s, color 0.18s, transform 0.18s;
}

.hw-nav-pill:hover {
	border-color: #E8650A;
	background: #261a10;
	color: #E8650A;
	transform: translateY(-1px);
}

.hw-nav-pill i {
	font-size: 18px;
	color: #E8650A;
}

.hw-cta {
	border-top: 1px solid #252525;
	padding-top: 14px;
	display: flex;
	align-items: center;
}

.hw-btn-cta {
	background: #E8650A;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	padding: 10px 22px;
	border-radius: 6px;
	text-decoration: none;
	transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
}

.hw-btn-cta:hover {
	background: #d05a08;
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(232, 101, 10, 0.4);
}

/* MOBILE */
@media (max-width: 768px) {
	.hw-wrap {
		grid-template-columns: 1fr;
		min-height: auto;
		overflow: hidden;
		border: 1px solid #2a2a2a;
	}

	.hw-left {
		clip-path: none;
		padding: 2rem 1.5rem 2rem;
		border-radius: 0;
		order: 2;
		position: relative;
		z-index: 1;
	}

	.hw-right {
		clip-path: none;
		padding: 2rem 1.5rem 4rem;
		border-radius: 0;
		margin-top: 0;
		border-top: none;
		position: relative;
		order: 1;
		z-index: 2;
	}

	.hw-right::before {
		display: none;
	}

	.hw-right::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		height: 40px;
		background: #fff;
		clip-path: polygon(0 100%, 50% 0, 100% 100%);
		z-index: 3;
	}

	.hw-nav-group {
		flex: none;
	}

	.hw-h2 {
		font-size: 22px;
	}

	.hw-nav-pill {
		font-size: 13px;
		padding: 8px 12px;
	}

	.hw-nav-pill i {
		font-size: 16px;
	}
}

/* ═══════════════════════════════════
GASPROIDS — ARTICLES BLOCK
═══════════════════════════════════ */

.ar-wrap {
	background: #1a1a1a;
	border-radius: 12px;
	border: 1px solid #2a2a2a;
	padding: 2.5rem 2.5rem 2rem;
}

.ar-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 1.75rem;
}

.ar-eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #E8650A;
	margin-bottom: 0.5rem;
}

.ar-h2 {
	font-size: 22px;
	font-weight: 900;
	color: #fff;
	line-height: 1.2;
	text-align: left !important;
}

.ar-h2 em {
	font-style: normal;
	color: #E8650A;
}

.ar-all {
	font-size: 13px;
	font-weight: 600;
	color: #E8650A;
	text-decoration: none;
	border-bottom: 1px solid rgba(232, 101, 10, 0.3);
	white-space: nowrap;
}

.ar-all:hover {
	border-color: #E8650A;
}

.ar-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.ar-card {
	background: #222;
	border: 1px solid #2e2e2e;
	border-radius: 10px;
	padding: 1.25rem 1.25rem 1rem;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: border-color 0.18s, background 0.18s, transform 0.18s;
	position: relative;
	overflow: hidden;
}

.ar-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: #E8650A;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}

.ar-card:hover {
	border-color: #E8650A;
	background: #1e1510;
	transform: translateY(-3px);
}

.ar-card:hover::before {
	transform: scaleX(1);
}

.ar-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	background: #E8650A;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 4px 9px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	gap: 4px;
}

.ar-badge i {
	font-size: 12px;
}

.ar-tag {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #E8650A;
	background: rgba(232, 101, 10, 0.1);
	border: 1px solid rgba(232, 101, 10, 0.2);
	border-radius: 4px;
	padding: 4px 10px;
	width: fit-content;
}

.ar-title {
	font-size: 15px;
	font-weight: 700;
	color: #E8650A;
	line-height: 1.35;
	padding-right: 50px;
}

.ar-desc {
	font-size: 14px;
	color: #bbb;
	line-height: 1.65;
	flex: 1;
}

.ar-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 10px;
	border-top: 1px solid #2a2a2a;
	margin-top: 4px;
}

.ar-meta {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ar-meta-item {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	color: #888;
}

.ar-meta-item i {
	font-size: 13px;
	color: #E8650A;
}

.ar-read {
	font-size: 12px;
	font-weight: 600;
	color: #999;
	display: flex;
	align-items: center;
	gap: 4px;
}

.ar-read i {
	font-size: 14px;
	color: #E8650A;
	transition: transform 0.18s;
}

.ar-card:hover .ar-read i {
	transform: translateX(3px);
}

.ar-card:hover .ar-read {
	color: #E8650A;
}

@media (max-width: 768px) {
	.ar-grid {
		grid-template-columns: 1fr;
	}

	.ar-wrap {
		padding: 1.75rem 1.25rem;
	}

	.ar-header {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.75rem;
	}
}

/* ═══════════════════════════════════
GASPROIDS — FOOTER BLOCK
═══════════════════════════════════ */

.site-footer__copyright {
	display: none !important;
}

.site-footer__bottom,
.site-footer__bottom-row,
.site-footer__bottom .container {
	height: auto !important;
	min-height: 0 !important;
	overflow: visible !important;
	display: block !important;
	width: 100% !important;
}

.site-footer__payments {
	height: auto !important;
	min-height: 0 !important;
	overflow: visible !important;
	display: block !important;
	width: 100% !important;
	flex: 1 !important;
}

.site-footer__bottom-row {
	display: block !important;
	flex-wrap: unset !important;
}

.gfooter-scroll {
	display: flex;
	justify-content: center;
	width: 100%;
	margin-bottom: 0;
}

.gfooter-up {
	width: 52px;
	height: 52px;
	background: #E8650A;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 4px 16px rgba(232, 101, 10, 0.5);
	transition: transform 0.18s, box-shadow 0.18s;
	font-size: 24px;
	font-weight: 900;
	color: #fff;
	line-height: 1;
}

.gfooter-up:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(232, 101, 10, 0.6);
}

.gfooter-wrap {
	background: #1a1a1a;
	border-radius: 12px;
	border: 1px solid #2a2a2a;
	padding: 2.5rem 2.5rem 3.5rem;
	width: 100%;
	overflow: visible !important;
	height: auto !important;
}

.gfooter-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 2.5rem;
	align-items: start;
}

.gfooter-title {
	font-size: 22px;
	font-weight: 900;
	color: #fff;
	line-height: 1.25;
	margin-bottom: 0.75rem;
	font-family: sans-serif;
}

.gfooter-title em {
	font-style: normal;
	color: #E8650A;
}

.gfooter-text {
	font-size: 15px;
	color: #777;
	line-height: 1.7;
	margin-bottom: 1.25rem;
	font-family: sans-serif;
}

.gfooter-btns {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 0.25rem;
}

.gfooter-btn {
	background: #E8650A;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	padding: 12px 24px;
	border-radius: 6px;
	text-decoration: none;
	font-family: sans-serif;
	transition: background 0.18s, transform 0.18s;
}

.gfooter-btn:hover {
	background: #d05a08;
	transform: translateY(-1px);
}

.gfooter-btn-ghost {
	background: transparent;
	color: #aaa;
	font-size: 15px;
	font-weight: 600;
	padding: 12px 24px;
	border-radius: 6px;
	text-decoration: none;
	border: 1px solid #333;
	font-family: sans-serif;
	transition: border-color 0.18s, color 0.18s;
}

.gfooter-btn-ghost:hover {
	border-color: #E8650A;
	color: #E8650A;
}

.gfooter-label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #E8650A;
	margin-bottom: 1.1rem;
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: sans-serif;
}

.gfooter-label::after {
	content: '';
	flex: 1;
	height: 1px;
	background: rgba(232, 101, 10, 0.2);
}

.gfooter-links {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.gfooter-link {
	font-size: 16px;
	color: #888;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: sans-serif;
	transition: color 0.18s, transform 0.18s;
}

.gfooter-link i {
	font-size: 17px;
	color: #3a3a3a;
	transition: color 0.18s;
}

.gfooter-link:hover {
	color: #fff;
	transform: translateX(3px);
}

.gfooter-link:hover i {
	color: #E8650A;
}

.gfooter-copy {
	font-size: 13px;
	color: #444;
	margin-top: 1.5rem;
	line-height: 1.7;
	font-family: sans-serif;
}

.gfooter-copy em {
	font-style: normal;
	color: #E8650A;
}

@media (max-width: 768px) {
	.gfooter-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.gfooter-wrap {
		padding: 1.75rem 1.25rem 2.5rem;
	}
}


/* ═══════════════════════════════════
GASPROIDS — TRUST BAR
═══════════════════════════════════ */

@keyframes checkDraw {
	0% {
		stroke-dashoffset: 40;
	}

	100% {
		stroke-dashoffset: 0;
	}
}

@keyframes shieldPulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.08);
	}

	100% {
		transform: scale(1);
	}
}

@keyframes boxFly {
	0% {
		transform: translateX(0) rotate(0deg);
	}

	25% {
		transform: translateX(6px) rotate(3deg);
	}

	75% {
		transform: translateX(-2px) rotate(-1deg);
	}

	100% {
		transform: translateX(3px) rotate(2deg);
	}
}

@keyframes wind1 {
	0% {
		opacity: 0;
		transform: translateX(0);
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		transform: translateX(-20px);
	}
}

@keyframes wind2 {
	0% {
		opacity: 0;
		transform: translateX(0);
	}

	50% {
		opacity: 0.7;
	}

	100% {
		opacity: 0;
		transform: translateX(-18px);
	}
}

@keyframes wind3 {
	0% {
		opacity: 0;
		transform: translateX(0);
	}

	50% {
		opacity: 0.5;
	}

	100% {
		opacity: 0;
		transform: translateX(-22px);
	}
}

@keyframes btcSpin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes cardFlip {
	0% {
		transform: perspective(200px) rotateY(0deg);
	}

	50% {
		transform: perspective(200px) rotateY(90deg);
	}

	100% {
		transform: perspective(200px) rotateY(0deg);
	}
}

.tb-wrap {
	background: #2a2a2a !important;
	border-top: 3px solid #E8650A !important;
	border-bottom: 1px solid #333 !important;
	display: block !important;
	width: 100% !important;
}

.tb-grid {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important;
	width: 100% !important;
}

.tb-item {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 10px !important;
	padding: 20px 16px !important;
	border-right: 1px solid #333 !important;
	cursor: pointer !important;
	transition: background 0.2s !important;
	position: relative !important;
	overflow: hidden !important;
}

.tb-item:last-child {
	border-right: none !important;
}

.tb-item:hover {
	background: #333 !important;
}

.tb-svg-wrap {
	width: 60px !important;
	height: 52px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	position: relative !important;
}

.tb-title {
	font-size: 13px !important;
	font-weight: 700 !important;
	color: #fff !important;
	text-align: center !important;
	transition: color 0.2s !important;
	font-family: sans-serif !important;
}

.tb-sub {
	font-size: 11px !important;
	color: #666 !important;
	text-align: center !important;
	font-family: sans-serif !important;
}

.tb-item:hover .tb-title {
	color: #E8650A !important;
}

/* SHIELD — оранжевый в статике */
.shield-path {
	fill: #E8650A;
	transition: fill 0.25s;
}

.shield-check {
	stroke: #fff;
	stroke-width: 3;
	fill: none;
	stroke-dasharray: 40;
	stroke-dashoffset: 0;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.tb-item:nth-child(1):hover .shield-path {
	fill: #fff;
	animation: shieldPulse 0.4s ease;
}

.tb-item:nth-child(1):hover .shield-check {
	stroke: #E8650A;
	animation: checkDraw 0.4s 0.15s ease forwards;
}

/* BOX — оранжевый всегда */
.box-group {
	transform-origin: center;
}

.box-body {
	fill: #E8650A;
}

.box-top {
	fill: #d05a08;
}

.box-side {
	fill: #c04e07;
}

.box-tape {
	fill: #fff;
	opacity: 0.3;
}

.box-label {
	fill: #fff;
	font-family: sans-serif;
	font-weight: 900;
	font-size: 9px;
}

.wind-line {
	opacity: 0;
	stroke: #aaa;
	stroke-width: 2;
	stroke-linecap: round;
}

.tb-item:nth-child(2):hover .box-group {
	animation: boxFly 0.4s ease forwards;
}

.tb-item:nth-child(2):hover .wind1 {
	animation: wind1 0.5s 0s ease infinite;
}

.tb-item:nth-child(2):hover .wind2 {
	animation: wind2 0.5s 0.1s ease infinite;
}

.tb-item:nth-child(2):hover .wind3 {
	animation: wind3 0.5s 0.2s ease infinite;
}

/* BITCOIN — оранжевый в статике */
.btc-circle {
	fill: #E8650A;
	transition: fill 0.2s;
}

.btc-text {
	fill: #fff;
	transition: fill 0.2s;
}

.tb-item:nth-child(3):hover .btc-circle {
	fill: #fff;
}

.tb-item:nth-child(3):hover .btc-text {
	fill: #E8650A;
}

.tb-item:nth-child(3):hover .tb-svg-wrap svg {
	animation: btcSpin 0.6s ease;
}

/* CARD — оранжевый в статике */
.card-body {
	fill: #E8650A;
	transition: fill 0.2s;
}

.card-stripe {
	fill: #d05a08;
}

.card-chip {
	fill: #fff;
	transition: fill 0.2s;
}

.tb-item:nth-child(4):hover .card-body {
	fill: #fff;
}

.tb-item:nth-child(4):hover .card-chip {
	fill: #E8650A;
}

.tb-item:nth-child(4):hover .tb-svg-wrap svg {
	animation: cardFlip 0.5s ease;
}

@media (max-width: 768px) {
	.tb-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	.tb-item:nth-child(2) {
		border-right: none !important;
	}

	.tb-item:nth-child(3) {
		border-top: 1px solid #333 !important;
	}

	.tb-item:nth-child(4) {
		border-top: 1px solid #333 !important;
		border-right: none !important;
	}
}

/* ═══════════════════════════════════
GASPROIDS — FAQ BLOCK
═══════════════════════════════════ */

.faq-wrap {
	background: #fff;
	border-radius: 12px;
	border: 1px solid #efefef;
	overflow: hidden;
}

.faq-header {
	background: #1a1a1a;
	padding: 2rem 2.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.faq-eyebrow {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #E8650A;
	margin-bottom: 0.5rem;
}

.faq-h2 {
	font-size: 22px;
	font-weight: 900;
	color: #fff;
	line-height: 1.2;
	text-align: left !important;
}

.faq-h2 em {
	font-style: normal;
	color: #E8650A;
}

.faq-link {
	font-size: 12px;
	font-weight: 600;
	color: #E8650A;
	text-decoration: none;
	border-bottom: 1px solid rgba(232, 101, 10, 0.3);
	white-space: nowrap;
	flex-shrink: 0;
}

.faq-link:hover {
	border-color: #E8650A;
}

.faq-list {
	padding: 0.5rem 0;
}

.faq-item {
	border-bottom: 1px solid #f5f5f5;
}

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

.faq-q {
	width: 100%;
	background: none;
	border: none;
	padding: 1.25rem 2.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	cursor: pointer;
	text-align: left;
	transition: background 0.18s;
}

.faq-q:hover {
	background: #fafafa;
}

.faq-item.open .faq-q {
	background: #fff8f4;
}

.faq-q-left {
	display: flex;
	align-items: center;
	gap: 14px;
}

.faq-num {
	font-size: 11px;
	font-weight: 700;
	color: #E8650A;
	background: rgba(232, 101, 10, 0.08);
	border: 1px solid rgba(232, 101, 10, 0.2);
	border-radius: 4px;
	padding: 2px 8px;
	flex-shrink: 0;
	font-family: sans-serif;
}

.faq-q-text {
	font-size: 15px;
	font-weight: 700;
	color: #1a1a1a;
	font-family: sans-serif;
	line-height: 1.35;
}

.faq-icon {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	background: #f5f5f5;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.18s, transform 0.25s;
	font-size: 16px;
	color: #999;
	font-weight: 700;
	font-family: sans-serif;
}

.faq-item.open .faq-icon {
	background: #E8650A;
	color: #fff;
	transform: rotate(45deg);
}

.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease, padding 0.25s ease;
	padding: 0 2.5rem;
}

.faq-item.open .faq-a {
	max-height: 300px;
	padding: 0 2.5rem 1.25rem;
}

.faq-a-inner {
	font-size: 14px;
	color: #666;
	line-height: 1.7;
	font-family: sans-serif;
	padding-left: 60px;
}

.faq-a-inner a {
	color: #E8650A;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid rgba(232, 101, 10, 0.3);
}

.faq-a-inner a:hover {
	border-color: #E8650A;
}

@media (max-width: 768px) {
	.faq-header {
		flex-direction: column;
		align-items: flex-start;
		padding: 1.5rem;
	}

	.faq-q {
		padding: 1rem 1.25rem;
	}

	.faq-a {
		padding: 0 1.25rem;
	}

	.faq-item.open .faq-a {
		padding: 0 1.25rem 1rem;
	}

	.faq-a-inner {
		padding-left: 0;
	}

	.faq-q-text {
		font-size: 14px;
	}
}