:root {
	--bg: #0b1320;
	--card: #0f1a2c;
	--text: #ffffff;
	--muted: rgba(255, 255, 255, .75);
	--accent: #ff7a1a;
	--line: rgba(255, 255, 255, .12);
	--radius: 2px;
	--container: 1440px;
}
.home .site-main {
	max-width: unset;
	color: unset;
	margin: unset;
	padding-left: unset;
	padding-block: unset;
	padding-right: unset;
}

.site-main {
	max-width: 1440px;
	color: #0F172A;
	margin: 30px auto;
	padding-left: 20px;
	padding-block: 4rem;
	padding-right: 20px;
}
.site-main p {
	line-height: 1.4;

}
.wp-block-list li {
	line-height: 1.4;
}
@media (min-width: 980px) {
	.site-main h1 {
		font-size: 40px;

	}
}
@media (max-width: 980px) {
	.site-main h1 {
		font-size: 32px;

	}
}
@media (max-width: 600px) {
	.wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__content {
		grid-column: 1;
		grid-row: 2;
		padding: 0;
	}
}
* {
	box-sizing: border-box
}

body {
	margin: 0;
	color: var(--text);
	font-family: Arial, sans-serif;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
	font-family: Inter, Arial, sans-serif;
}

.container {
	max-width: var(--container);
	padding: 0 20px;
	margin: 0 auto;
}

/* Header */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: rgba(11, 19, 32, .85);
	backdrop-filter: blur(10px);
}

.header__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 100px;
	position: relative;
}

.header__logo img {
	height: 70px;
	padding: 10px;
	width: auto;
}

.header__nav {
	flex: 1 1 auto;
	display: flex;
	padding: 0 10px;
	justify-content: flex-end;
}

.header__menu {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 42px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.header__menu > li {
	position: relative;
}

.header__menu > li > a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	font-family: Inter, Arial, sans-serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 1;
	opacity: .95;
}

.header__menu > li > a:hover {
	opacity: 1
}

.header__menu > li.menu-item-has-children > a::after {
	content: none
}

.header__menu .menu-toggle {
	margin-left: 8px;
	width: 18px;
	height: 18px;
	border: 0;
	background: transparent;
	padding: 0;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.header__menu .menu-toggle::before {
	content: "";
	width: 6px;
	height: 6px;
	border-right: 2px solid rgba(255, 255, 255, .8);
	border-bottom: 2px solid rgba(255, 255, 255, .8);
	transform: rotate(45deg);
	transition: transform .2s ease, opacity .2s ease;
	opacity: .9;
}

.header__menu > li.menu-item-has-children::after {
	content: "";
	position: absolute;
	left: -10px;
	right: -10px;
	top: 100%;
	height: 12px;
}

.header__menu > li > .sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	min-width: 220px;
	margin-top: 10px;
	margin-left: 0;
	padding: 10px;
	list-style: none;
	background: rgba(11, 19, 32, .98);
	border: 1px solid var(--line);
	border-radius: 12px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
	display: none;
	z-index: 60;
}

.header__menu > li > .sub-menu li a {
	display: block;
	padding: 10px 12px;
	border-radius: 10px;
	font-size: 14px;
	opacity: .9;
	white-space: nowrap;
}

.header__menu > li > .sub-menu li a:hover {
	background: rgba(255, 255, 255, .06);
	opacity: 1;
}

.header__burger {
	display: none;
	position: relative;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 12px;
	background: transparent;
	cursor: pointer;
}

.header__burger span {
	position: absolute;
	left: 10px;
	height: 4px;
	border-radius: 4px;
	background: #F97316;
	transition: transform .25s ease, top .25s ease, opacity .2s ease, width .25s ease;
}

.header__burger span:nth-child(1) {
	top: 12px;
	width: 26px
}

.header__burger span:nth-child(2) {
	top: 22px;
	width: 26px
}

.header__burger span:nth-child(3) {
	top: 32px;
	width: 16px
}

body.nav-open .header__burger span:nth-child(1) {
	top: 22px;
	width: 26px;
	transform: rotate(45deg);
}

body.nav-open .header__burger span:nth-child(2) {
	opacity: 0
}

body.nav-open .header__burger span:nth-child(3) {
	top: 22px;
	width: 26px;
	transform: rotate(-45deg);
}

.seo-block {
	padding-top: 52px
}

.seo__text p {
	font-size: 16px;
	font-family: Arial, sans-serif;
	font-weight: 400;
	color: #0F172A;
	line-height: 1.25;
}

.seo__text h2 {
	font-size: 28px;
	padding: 20px;
	font-family: Arial, sans-serif;
	font-weight: 700;
	color: #0F172A;
	line-height: 1.1;
	text-align: center;
	text-transform: uppercase;
}

.second-block .seo__text h2 {
	text-align: left;
	padding: 20px 0;
}

/* Hero */
.hero {
	padding: 0 0 28px;
	background: var(--bg);
}

.hero__row {
	display: grid;
	grid-template-columns:1.2fr .8fr;
	gap: 28px;
	align-items: center;
}

.hero__title {
	font-size: 40px;
	line-height: 1.10;
	font-weight: 400;
	margin: 0 0 18px;
	text-transform: uppercase;
	max-width: 718px;
}

.hero__buttons {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.btn {
    display: flex;
	align-items: center;
	justify-content: center;
	height: 46px;
	padding: 0 22px;
	border-radius: 999px;
	font-weight: 600;
	border: 1px solid transparent;
	background-color: #f97316;
	border-color: #f97316;
	color: #fff;
	font-family: inherit;
	max-width: 200px;
	margin: auto;
	line-height: 1em;
	font-size: 16px;
}

.btn:hover {
	background-color: #f97316ab
}

.btn--primary {
	background: var(--accent);
	color: #111;
}

.btn--secondary {
	background: transparent;
	border-color: rgba(255, 255, 255, .35);
	color: #fff;
}

/* Sections */
.two-cols {
	padding: 52px 0 0 0;
}

.two-cols__row {
	display: flex;
	gap: 26px;
	align-items: center;
}

.two-cols--reverse .two-cols__row {
	direction: rtl
}

.two-cols--reverse .two-cols__content,
.two-cols--reverse .two-cols__media {
	direction: ltr
}

.two-cols__title {
	margin: 0 0 10px;
	font-size: 28px;
	letter-spacing: .2px;
	font-weight: 700;
	line-height: 1.1;
	text-transform: uppercase;
	max-width: 867px;
	color: #0F172A;
}

.two-cols__text {
	padding-bottom: 5px;
	line-height: 1.25;
	max-width: 826px;
	color: #0F172A;
}

.two-cols__media {
	background: rgba(255, 255, 255, .04);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 16px;
	max-width: 350px;
	margin: auto;
}

/* About */
.about {
	position: relative;
	padding: 65px 0 70px;
	margin-top: 52px;
}

.about::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 460px;
	background: var(--bg);
	z-index: 0;
}

.about__inner {
	position: relative;
	z-index: 1;
	top: -30px;
	text-align: center;
}

.about__title {
	margin: 0 auto 14px;
	max-width: 718px;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.1;
	text-transform: uppercase;
	color: #fff;
}

.about__text {
	max-width: 966px;
	margin: 0 auto;
	color: #fff;
	font-size: 16px;
	line-height: 1.25;
}

.about__media {
	margin: 28px auto 0;
	padding-bottom: 20px;
	max-width: 1260px;
}

.about__media img {
	width: 100%;
	height: 460px;
	object-fit: cover;
	display: block;
}

/* Footer */
.site-footer {
	border-top: 1px solid var(--line);
	background: #0F172A;
}

.footer__list li a {
	font-size: 14px
}

.footer__top {
	display: grid;
	grid-template-columns:220px 1fr 220px;
	gap: 22px;
	align-items: start;
	padding: 80px 20px 100px;
}

.footer__cols {
	display: grid;
	grid-template-columns:repeat(4, minmax(120px, 1fr));
	gap: 18px;
}

.footer__title {
	font-weight: 700;
	margin-bottom: 10px;
}

.footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
}

.footer__list a {
	opacity: .85
}

.footer__list a:hover {
	opacity: 1
}

.footer__social-row {
	display: flex;
	gap: 10px;
	align-items: center;
}

.footer__social-link {
	width: 36px;
	height: 36px;
	border: и1px solid var(--line);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer__social-link img {
	width: 16px;
	height: 16px;
}

.footer__bottom {
	padding-bottom: 100px;
	padding-top: 30px;
	border-top: 1px solid var(--line);
}

.footer__copy {
	opacity: .75;
	text-align: center;
	font-size: 14px;
}

.faq {
	position: relative;
	padding: 72px 0 90px;
	margin: 0;
	color: #fff;
	background:
			radial-gradient(1200px 600px at 70% 0%, rgba(140, 0, 255, .16), rgba(0,0,0,0) 55%),
			radial-gradient(900px 500px at 85% 20%, rgba(255, 0, 120, .18), rgba(0,0,0,0) 55%),
			linear-gradient(180deg, #0b1320 0%, #0b1320 100%);
	overflow: hidden;
}

.faq.section {
	margin-bottom: 30px;
}

.faq__container {
	max-width: 980px;
	margin: 0 auto;
	padding: 0 20px;
}

.faq__title {
	margin: 0;
	text-align: center;
	font-weight: 800;
	letter-spacing: .2px;
	text-transform: none;
	font-size: clamp(34px, 4.2vw, 64px);
	line-height: 1.05;
	color: #fff;
}

.title {
	margin: 0;
}

.faq__subtitle {
	margin: 18px auto 0;
	max-width: 780px;
	text-align: center;
	color: rgba(255,255,255,.78);
	font-size: 16px;
	line-height: 1.7;
}

.faq__items {
	margin-top: 46px;
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
	display: grid;
	gap: 0;
	border-top: 1px solid rgba(255,255,255,.16);
}


.faq__item {
	background: transparent;
	border-bottom: 1px solid rgba(255,255,255,.14);
	padding: 0;
}


.faq__q {
	list-style: none;
	cursor: pointer;
	padding: 26px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	color: #fff;
	user-select: none;
}

.faq__q::-webkit-details-marker { display: none; }
.faq__q::marker { content: ""; }

.faq__q-text {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: .2px;
	line-height: 1.2;
}


.faq__pm {
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	position: relative;
	opacity: .95;
}

.faq__pm::before,
.faq__pm::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	background: rgba(255,255,255,.92);
	transform: translate(-50%, -50%);
	border-radius: 2px;
	transition: opacity .22s ease, transform .22s ease;
}

.faq__pm::before {
	width: 18px;
	height: 2px;
}

.faq__pm::after {
	width: 2px;
	height: 18px;
}

.faq__item[open] .faq__pm::after {
	opacity: 0;
	transform: translate(-50%, -50%) scaleY(0);
}

.faq__a {
	overflow: hidden;
	height: 0;
	transition: height .28s ease;
}

.faq__a-inner {
	padding: 0 0 26px;
	max-width: 620px;
	color: rgba(255,255,255,.75);
	font-size: 14px;
	line-height: 1.75;
}

.faq__a p {
	margin: 0;
	color: inherit;
	font-size: inherit;
	line-height: inherit;
}


@media (hover: hover) {
	.faq__q:hover .faq__pm { opacity: 1; }
	.faq__q:hover .faq__q-text { color: rgba(255,255,255,.95); }
}


@media (max-width: 640px) {
	.faq {
		padding: 56px 0 70px;
	}
	.faq__q {
		padding: 22px 0;
	}
	.faq__pm {
		width: 30px;
		height: 30px;
	}
	.faq__a-inner {
		padding-bottom: 22px;
	}
}


/* Desktop hover dropdown ✅ FIX: hover + focus-within */
@media (min-width: 981px) {
	.header__menu > li:hover > .sub-menu,
	.header__menu > li:focus-within > .sub-menu {
		display: block;
	}

	.header__menu > li:hover > a .menu-toggle::before,
	.header__menu > li:focus-within > a .menu-toggle::before {
		transform: rotate(225deg);
	}
}

/* Mobile */
@media (max-width: 980px) {
	.hero__row {
		display: flex;
		flex-direction: column;
		position: relative;
		padding-top: 71px;
		margin-top: 0;
		padding-bottom: 71px;
	}

	.footer__copy {
		opacity: 1
	}

	.about {
		padding: 100px 0 0
	}

	.footer__social .footer__title {
		display: none
	}

	.footer__social-row {
		align-items: center;
		justify-content: center
	}

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

	.about__title {
		font-size: 18px;
		max-width: 560px;
		padding: 0 10px;
	}

	.about__media {
		max-width: calc(100% - 40px)
	}

	.about::before {
		height: 760px
	}

	.footer__bottom {
		border-top: unset;
		padding-bottom: 35px;
		padding-top: 0;
	}

	.site-header {
		border-bottom: unset
	}

	.two-cols .two-cols__row {
		flex-direction: column-reverse
	}

	.two-cols__row {
		gap: 10px
	}

	.two-cols__media {
		background: rgba(255, 255, 255, .04);
		border: 1px solid var(--line);
		border-radius: var(--radius);
		padding: 0;
		max-width: 100%;
		margin: auto;
	}

	.seo-block {
		padding-top: 32px
	}

	.two-cols {
		padding: 32px 0 0 0
	}

	.seo__text h2,
	.two-cols__title {
		font-size: 24px;
		padding: 0;
		text-align: left;
	}
	.hero__media {
		opacity: 0.4;
	}

	.hero__title {
		font-size: 32px;
		position: absolute;
		z-index: 9;
		top: 29%;
		left: 0;
		right: 0;
		padding: 0 20px;
	}
	.header__row {
		justify-content: flex-start
	}

	.header__logo {
		position: absolute;
		left: 0;
		right: 0;
		z-index: 1;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.footer__top {
		grid-template-columns:1fr;
		gap: 18px;
		padding: 52px 20px 20px;
	}

	.footer__cols {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.site-footer .footer__col {
		padding: 0 20px 0;
		border-bottom: 1px solid #ffffff;
	}

	.footer__social {
		margin-top: 42px
	}

	.site-footer .footer__title {
		margin: 0;
		padding: 18px 44px 18px 0;
		font-size: 14px;
		font-weight: 700;
		position: relative;
		cursor: pointer;
		user-select: none;
	}

	.site-footer .footer__col.is-collapsible .footer__title::before,
	.site-footer .footer__col.is-collapsible .footer__title::after {
		content: "";
		position: absolute;
		right: 14px;
		top: 50%;
		width: 16px;
		height: 2px;
		background: #fff;
		transform: translateY(-50%);
		opacity: .95;
	}

	.site-footer .footer__col.is-collapsible .footer__title::after {
		transform: translateY(-50%) rotate(90deg);
		transition: transform .2s ease;
	}

	.site-footer .footer__col.is-open .footer__title::after {
		transform: translateY(-50%) rotate(0deg);
	}

	.site-footer .footer__col.is-collapsible .footer__list {
		margin: 0;
		padding: 0 0 16px 0;
	}

	.site-footer .footer__col.is-collapsible .footer__list.is-grid {
		display: grid;
		gap: 12px;
	}

	.header__burger {
		display: inline-block;
		z-index: 9;
	}

	.header__nav {
		display: none
	}

	body.nav-open .header__nav {
		display: block;
		position: fixed;
		top: 74px;
		left: 0;
		right: 0;
		background: rgba(11, 19, 32, .96);
		padding: 14px 20px 22px;
		z-index: 8;
	}

	.header__nav {
		flex: 0 0 auto;
		justify-content: flex-start;
	}

	.header__menu {
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
	}

	.header__menu > li {
		border-bottom: 1px solid rgba(255, 255, 255, .12);
		padding-bottom: 0;
	}

	.header__menu > li.menu-item-has-children::after {
		content: none
	}

	.header__menu > li > a {
		width: 100%;
		padding: 14px 0;
		justify-content: space-between;
		gap: 12px;
		height: 70px;
	}

	.header__menu .menu-toggle {
		width: 34px;
		height: 34px;
		border-radius: 10px;
	}

	.header__menu > li > .sub-menu {
		position: static;
		top: auto;
		left: auto;
		transform: none;
		min-width: 0;
		margin: 0;
		padding: 0 0 12px 0;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		background: transparent;
		display: none;
	}

	.header__menu > li.is-open > .sub-menu {
		display: block
	}

	.header__menu > li > .sub-menu li a {
		padding: 10px 0 10px 0;
		border-radius: 0;
		opacity: .9;
	}

	.header__menu > li.is-open > a .menu-toggle::before {
		transform: rotate(225deg);
	}
}

.crypto {
	padding-top: 30px;
}





.brokers-list {
	display: flex;
	flex-direction: column;
	gap: 16px
}

.brokers-archive__head {
	margin: 20px 0
}

.brokers-archive__title {
	margin: 0 0 10px;
	font-size: 32px;
	letter-spacing: -.02em
}

.brokers-archive__filters {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	color: #6b7280;
	font-size: 14px
}

.brokers-archive__filter {
	background: #f3f4f6;
	border: 1px solid #e5e7eb;
	padding: 6px 10px;
	border-radius: 999px
}

.broker-row {
	position: relative;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 18px;
	padding: 18px;
	box-shadow: 0 10px 30px rgba(17, 24, 39, .06);
	display: grid;
	grid-template-columns:240px 1fr 320px;
	gap: 18px;
	overflow: hidden;
}

.broker-row.is-featured {
	border-color: rgba(124, 58, 237, .55);
	box-shadow: 0 18px 44px rgba(124, 58, 237, .18);
	background: linear-gradient(180deg, #f5f3ff 0%, #ffffff 55%);
}

.broker-row__badge {
	position: absolute;
	top: 14px;
	left: 14px;
	background: #f59e0b;
	color: #fff;
	font-weight: 900;
	font-size: 12px;
	padding: 6px 10px;
	border-radius: 999px;
}

.broker-row__badge-sub {
	position: absolute;
	top: 78px;
	left: 26px;
	color: #fff;
	font-weight: 800;
	font-size: 12px;
}

.broker-row__logo img {
	max-width: 100%;
	height: 100%;
	display: block;
	margin: 0 0 12px
}

.broker-row__title {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 900
}

.broker-row__rating {
	display: flex;
	gap: 8px;
	align-items: center;
	color: #6b7280;
	font-size: 13px
}

.broker-row__rating strong {
	color: #111827
}

.broker-row__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 12px
}

.broker-row__chips .chip {
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border-radius: 999px;
	background: #eef2ff;
	color: #3730a3;
	font-weight: 800;
	font-size: 12px;
	border: 1px solid rgba(55, 48, 163, .14);
}

.broker-row__excerpt {
	color: #374151;
	font-size: 14px;
	line-height: 1.55;
	margin: 0 0 12px
}

.broker-row__bullets {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 8px
}

.broker-row__bullets li {
	position: relative;
	padding-left: 22px;
	color: #111827;
	font-size: 14px
}

.broker-row__bullets li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 3px;
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: #f59e0b;
}

.broker-row__right {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: stretch
}

.broker-row__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-weight: 900;
	color: #111827;
	background: #f59e0b;
	border-radius: 12px;
	padding: 14px 14px;
	transition: transform .12s ease, filter .15s ease;
}

.broker-row__cta:hover {
	transform: translateY(-1px);
	filter: brightness(1.03)
}

.broker-row__note {
	font-size: 11px;
	line-height: 1.35;
	color: #6b7280
}

@media (max-width: 980px) {
	.broker-row {
		grid-template-columns:220px 1fr
	}

	.broker-row__right {
		grid-column: 1/-1;
		flex-direction: row;
		gap: 12px;
		align-items: center
	}

	.broker-row__note {
		flex: 1
	}
	.broker-row__logo img {
		max-width: 100%;
	}
}

@media (max-width: 640px) {
	.broker-row {
		grid-template-columns:1fr
	}

	.broker-row__right {
		flex-direction: column;
		align-items: stretch
	}

	.broker-row__badge-sub {
		display: none
	}
}


.broker-row__rating {
	display: flex;
	gap: 8px;
	align-items: center;
	color: #6b7280;
	font-size: 13px
}

.broker-row__rating strong {
	color: #111827
}

.rating-stars {
	--star-size: 16px;
	--star-gap: 2px;
	--fill: #f59e0b;
	--empty: #e5e7eb;

	position: relative;
	display: inline-block;
	line-height: 1;
	font-size: var(--star-size);
	letter-spacing: var(--star-gap);
	white-space: nowrap;
}

.rating-stars::before {
	content: "★★★★★";
	color: var(--empty);
}

.rating-stars::after {
	content: "★★★★★";
	color: var(--fill);
	position: absolute;
	left: 0;
	top: 0;
	width: var(--percent, 0%);
	overflow: hidden;
	white-space: nowrap;
}

