/* ==========================================================================
   White Money — стили темы
   Цвета/шрифты/размеры приходят из настроек как CSS-переменные (inline).
   ========================================================================== */

:root {
	--wm-primary: #2563EB;
	--wm-primary-hover: #1D4ED8;
	--wm-accent: #FACC15;
	--wm-success: #16A34A;
	--wm-danger: #DC2626;
	--wm-header-bg: #111214;
	--wm-header-link: #C7CBD1;
	--wm-footer-bg: #18191B;
	--wm-footer-text: #9CA3AF;
	--wm-container: 1160px;
	--wm-r-btn: 8px;
	--wm-r-card: 16px;
	--wm-logo-w: 40px;
	--wm-font: Manrope, ui-sans-serif, system-ui, sans-serif;
	--wm-mono: "Overpass Mono", ui-monospace, monospace;
	--wm-bg: #F7F7F9;
	--wm-surface: #FFFFFF;
	--wm-ink: #1B2440;
	--wm-body: #4B5563;
	--wm-muted: #6B7280;
	--wm-border: #E5E7EB;
	--wm-border-strong: #D1D5DB;
	--wm-hover: #F3F4F6;
	--wm-inset: #F9FAFB;
	--wm-tint: #EFF6FF;
	--wm-cur-ink: var(--wm-primary-hover);
	--wm-show-light: block;
	--wm-show-dark: none;
	--wm-gutter: 24px;
	--wm-section: 112px;
	--wm-header-h: 78px;
	--wm-shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);
	--wm-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, .08), 0 4px 6px -4px rgba(0, 0, 0, .08);
	--wm-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
	--wm-ease: cubic-bezier(.4, 0, .2, 1);
	color-scheme: light;
}

html.wm-dark {
	--wm-bg: #0B0F17;
	--wm-surface: #141A24;
	--wm-ink: #F2F5FA;
	--wm-body: #B4BCCB;
	--wm-muted: #8B95A7;
	--wm-border: #242C3A;
	--wm-border-strong: #334155;
	--wm-hover: #1C2330;
	--wm-inset: #0F141D;
	--wm-tint: rgba(59, 130, 246, .14);
	--wm-cur-ink: #93C5FD;
	--wm-show-light: none;
	--wm-show-dark: block;
	color-scheme: dark;
}

/* ---------- База ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background: var(--wm-bg);
	color: var(--wm-ink);
	font-family: var(--wm-font);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	transition: background .2s, color .2s;
	overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { color: inherit; }
img, svg, video { max-width: 100%; }
img { height: auto; }
a { color: var(--wm-primary); text-decoration: none; transition: color .15s, background .15s, border-color .15s, box-shadow .15s; }
a:hover { color: var(--wm-primary-hover); }
input, select, textarea, button { font-family: inherit; font-size: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 2px solid #3B82F6; outline-offset: 2px; }
[hidden] { display: none !important; }
.wm-icon { flex: none; display: inline-block; vertical-align: middle; }
.wm-mono { font-family: var(--wm-mono); }
.wm-only-light { display: var(--wm-show-light) !important; }
.wm-only-dark { display: var(--wm-show-dark) !important; }
.screen-reader-text, .wm-hp {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.wm-skip {
	position: absolute; left: 12px; top: -60px; z-index: 100; padding: 10px 16px;
	border-radius: var(--wm-r-btn); background: var(--wm-primary); color: #fff; font-weight: 600;
}
.wm-skip:focus { top: 12px; color: #fff; }

@keyframes wm-eye { 0%, 100% { opacity: .15; filter: blur(1px); } 50% { opacity: 1; filter: blur(0); } }
@keyframes wm-tail { 0%, 100% { transform: rotate(-5deg); } 50% { transform: rotate(-2.5deg); } }
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation: none !important; transition: none !important; }
	html { scroll-behavior: auto; }
}

.wm-container {
	width: 100%;
	max-width: var(--wm-container);
	margin: 0 auto;
	padding-left: var(--wm-gutter);
	padding-right: var(--wm-gutter);
}
.wm-main { display: block; min-height: 40vh; }
[id] { scroll-margin-top: calc(var(--wm-header-h) + 16px); }

/* ---------- Типографика секций ---------- */
.wm-eyebrow {
	margin: 0;
	font-family: var(--wm-mono);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: var(--wm-primary);
}
.wm-hl { color: var(--wm-primary); }
.wm-h2 {
	margin: 16px 0 0;
	font-size: clamp(32px, 3.6vw, 44px);
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -.025em;
	text-wrap: balance;
}
.wm-h2--split { font-size: clamp(30px, 3.4vw, 42px); }
.wm-section { padding-top: var(--wm-section); }
.wm-section__head { text-align: center; max-width: 720px; margin: 0 auto; }
.wm-section__head--wide { max-width: 760px; }
.wm-section__text { margin: 16px 0 0; font-size: 17px; line-height: 1.6; color: var(--wm-body); }
.wm-section__btn { margin-top: 28px; display: flex; justify-content: center; }
.wm-section__more { margin-top: 36px; display: flex; justify-content: center; }

/* ---------- Кнопки ---------- */
.wm-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 15px 30px;
	border: 1px solid var(--wm-primary);
	border-radius: var(--wm-r-btn);
	background: var(--wm-primary);
	color: #fff;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	transition: background .15s, border-color .15s, color .15s, box-shadow .15s;
}
.wm-btn:hover { background: var(--wm-primary-hover); border-color: var(--wm-primary-hover); color: #fff; }
.wm-btn--sm { padding: 10px 18px; font-size: 15px; }
.wm-btn--md { padding: 14px 28px; font-size: 16px; }
.wm-btn--block { display: flex; width: 100%; }
.wm-btn--outline { background: transparent; color: var(--wm-primary); }
.wm-btn--outline:hover { background: var(--wm-primary); color: #fff; }
.wm-btn--ghost { background: var(--wm-surface); border-color: var(--wm-border-strong); color: var(--wm-ink); }
.wm-btn--ghost:hover { background: var(--wm-hover); border-color: var(--wm-border-strong); color: var(--wm-ink); }
.wm-btn--white { background: #fff; border-color: #fff; color: var(--wm-primary-hover); font-weight: 700; }
.wm-btn--white:hover { background: #EFF6FF; border-color: #EFF6FF; color: var(--wm-primary-hover); }

/* ---------- Карточки ---------- */
.wm-card {
	background: var(--wm-surface);
	border: 1px solid var(--wm-border);
	border-radius: var(--wm-r-card);
	box-shadow: var(--wm-shadow-sm);
}
.wm-card--hover { transition: box-shadow .2s var(--wm-ease); }
.wm-card--hover:hover { box-shadow: var(--wm-shadow-md); }
.wm-iconbox {
	width: 44px; height: 44px; display: grid; place-items: center;
	border-radius: 10px; background: var(--wm-tint); color: var(--wm-primary);
}
.wm-iconbox--lg { width: 48px; height: 48px; border-radius: 12px; }

/* ==========================================================================
   Шапка
   ========================================================================== */
.wm-header {
	position: relative;
	z-index: 40;
	background: var(--wm-header-bg);
	color: #F2F5FA;
}
.wm-sticky .wm-header { position: sticky; top: 0; }
.admin-bar.wm-sticky .wm-header { top: 32px; }
@media (max-width: 782px) { .admin-bar.wm-sticky .wm-header { top: 0; } }
.wm-header__in {
	height: var(--wm-header-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.wm-logo { display: flex; align-items: center; color: #fff; flex: none; }
.wm-logo img { display: block; width: var(--wm-logo-w); height: auto; }
.wm-logo__text { font-size: 22px; font-weight: 700; letter-spacing: -.02em; }
.wm-logo:hover { color: #fff; }

.wm-nav { display: flex; align-items: center; gap: 4px; height: 100%; }
.wm-nav__list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 4px; height: 100%; }
.wm-nav__item { position: relative; height: 100%; display: flex; align-items: center; }
.wm-nav__link {
	height: 100%;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 0 18px;
	border: 0;
	background: transparent;
	font-size: 15px;
	font-weight: 600;
	color: var(--wm-header-link);
	box-shadow: inset 0 -3px 0 transparent;
	white-space: nowrap;
	transition: color .15s, box-shadow .15s;
}
.wm-nav__link:hover, .wm-nav__link[aria-expanded="true"] { color: #fff; }
.wm-nav__item.is-active > .wm-nav__link,
.wm-nav__item.is-active > .wm-nav__split > .wm-nav__link { color: #fff; box-shadow: inset 0 -3px 0 var(--wm-primary); }
.wm-nav__split { display: flex; align-items: center; height: 100%; }
.wm-nav__split .wm-nav__link { padding-right: 6px; }
.wm-nav__caret { height: 100%; padding: 0 12px 0 2px; border: 0; background: transparent; color: var(--wm-header-link); display: flex; align-items: center; }
.wm-nav__caret:hover { color: #fff; }
.wm-caret { transition: transform .2s var(--wm-ease); }
[aria-expanded="true"] > .wm-caret, [aria-expanded="true"] .wm-caret { transform: rotate(180deg); }

.wm-dropdown {
	list-style: none;
	margin: 0;
	position: absolute;
	top: calc(100% - 6px);
	left: 0;
	z-index: 50;
	min-width: 260px;
	padding: 8px;
	background: var(--wm-surface);
	border: 1px solid var(--wm-border);
	border-radius: 12px;
	box-shadow: var(--wm-shadow-lg);
	opacity: 0;
	visibility: hidden;
	transform: translateY(4px);
	transition: opacity .15s, transform .15s, visibility .15s;
}
.wm-dropdown--right { left: auto; right: 0; min-width: 160px; padding: 6px; }
.is-open > .wm-dropdown { opacity: 1; visibility: visible; transform: none; }
@media (hover: hover) and (min-width: 961px) {
	.wm-nav__item.has-sub:hover > .wm-dropdown { opacity: 1; visibility: visible; transform: none; }
}
.wm-dropdown__link {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 12px;
	border-radius: 8px;
	font-size: 15px;
	color: var(--wm-ink);
}
.wm-dropdown__link:hover, .wm-dropdown__link.is-active { background: var(--wm-hover); color: var(--wm-ink); }
.wm-dropdown__link.is-active { font-weight: 600; }
.wm-lang { position: relative; height: 100%; display: flex; align-items: center; }
.wm-lang__btn { color: #fff; }
.wm-lang__item { font-size: 14px; font-weight: 600; padding: 9px 10px; }
.wm-lang__item span { color: var(--wm-muted); font-weight: 500; }

.wm-header__actions { display: flex; align-items: center; gap: 14px; flex: none; }
.wm-nav__login { display: none; }

.wm-theme-toggle {
	position: relative;
	display: flex;
	align-items: center;
	width: 68px;
	height: 34px;
	padding: 3px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .12);
	background: rgba(255, 255, 255, .06);
	transition: border-color .2s;
}
.wm-theme-toggle:hover { border-color: rgba(255, 255, 255, .28); }
.wm-theme-toggle__knob {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 26px;
	height: 26px;
	border-radius: 999px;
	background: #FDF3E7;
	box-shadow: 0 0 0 1px rgba(232, 133, 60, .4), 0 0 12px rgba(232, 133, 60, .45);
	transition: transform .3s var(--wm-ease), background .3s, box-shadow .3s;
}
.wm-theme-toggle__sun, .wm-theme-toggle__moon {
	position: relative; z-index: 1; width: 26px; height: 26px; display: grid; place-items: center; transition: color .3s;
}
.wm-theme-toggle__sun { color: #E8853C; }
.wm-theme-toggle__moon { margin-left: auto; color: #6B7280; }
html.wm-dark .wm-theme-toggle__knob {
	transform: translateX(34px);
	background: #1E2A44;
	box-shadow: 0 0 0 1px rgba(59, 130, 246, .5), 0 0 12px rgba(59, 130, 246, .45);
}
html.wm-dark .wm-theme-toggle__sun { color: #6B7280; }
html.wm-dark .wm-theme-toggle__moon { color: #93C5FD; }

.wm-burger {
	display: none;
	width: 44px;
	height: 44px;
	padding: 11px 10px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 10px;
	background: transparent;
	flex-direction: column;
	justify-content: space-between;
}
.wm-burger span { display: block; height: 2px; border-radius: 2px; background: #fff; transition: transform .25s var(--wm-ease), opacity .2s; }
.wm-header.is-open .wm-burger span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.wm-header.is-open .wm-burger span:nth-child(2) { opacity: 0; }
.wm-header.is-open .wm-burger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 1080px) {
	.wm-nav__link { padding: 0 12px; }
}
@media (max-width: 960px) {
	:root { --wm-header-h: 68px; }
	.wm-burger { display: flex; }
	.wm-header__login { display: none; }
	.wm-nav {
		position: fixed;
		left: 0;
		right: 0;
		top: var(--wm-header-h);
		bottom: 0;
		z-index: 39;
		height: auto;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 12px var(--wm-gutter) 32px;
		background: var(--wm-header-bg);
		border-top: 1px solid rgba(255, 255, 255, .08);
		overflow-y: auto;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		transition: opacity .2s, transform .2s, visibility .2s;
	}
	.admin-bar .wm-nav { top: calc(var(--wm-header-h) + 46px); }
	.wm-header.is-open .wm-nav { opacity: 1; visibility: visible; transform: none; }
	.wm-nav__list { flex-direction: column; align-items: stretch; height: auto; gap: 0; }
	.wm-nav__item { height: auto; flex-direction: column; align-items: stretch; border-bottom: 1px solid rgba(255, 255, 255, .06); }
	.wm-nav__link { height: auto; padding: 16px 4px; font-size: 17px; justify-content: space-between; box-shadow: none !important; }
	.wm-nav__item.is-active > .wm-nav__link, .wm-nav__item.is-active > .wm-nav__split > .wm-nav__link { color: #fff; }
	.wm-nav__split { height: auto; justify-content: space-between; }
	.wm-nav__caret { padding: 16px 4px; }
	.wm-dropdown, .wm-dropdown--right {
		position: static;
		min-width: 0;
		margin: 0 0 12px;
		padding: 4px;
		background: rgba(255, 255, 255, .04);
		border-color: rgba(255, 255, 255, .08);
		box-shadow: none;
		transform: none;
		display: none;
		opacity: 1;
		visibility: visible;
	}
	.is-open > .wm-dropdown { display: block; }
	.wm-dropdown__link { color: #E5E7EB; }
	.wm-dropdown__link:hover, .wm-dropdown__link.is-active { background: rgba(255, 255, 255, .08); color: #fff; }
	.wm-lang { height: auto; flex-direction: column; align-items: stretch; border-bottom: 1px solid rgba(255, 255, 255, .06); }
	.wm-lang__item span { color: #9CA3AF; }
	.wm-nav__login { display: inline-flex; margin-top: 24px; align-self: flex-start; }
	body.wm-menu-open { overflow: hidden; }
}

/* ==========================================================================
   Главная: первый экран
   ========================================================================== */
.wm-hero {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 460px), 1fr));
	gap: 40px;
	align-items: center;
	padding-top: 88px;
	padding-bottom: 64px;
	background: var(--wm-hero-bg, none) 20% center / contain no-repeat;
}
.wm-hero__title {
	margin: 24px 0 0;
	font-size: clamp(38px, 5.2vw, 62px);
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: -.03em;
	color: var(--wm-ink);
	text-wrap: balance;
}
.wm-hero__lead { margin: 28px 0 0; max-width: 520px; font-size: 18px; line-height: 1.6; color: var(--wm-body); text-wrap: pretty; }
.wm-hero__btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.wm-hero__art { display: flex; justify-content: center; }
.wm-lion { position: relative; width: 100%; max-width: 604px; aspect-ratio: 604 / 458; }
.wm-lion__main { position: absolute; inset: 0; width: 100%; height: 100%; }
.wm-lion__eye {
	position: absolute;
	left: 15.2%;
	top: 22.9%;
	width: 4.5%;
	aspect-ratio: 1;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(61, 255, 161, .95) 0%, rgba(61, 255, 161, .55) 30%, rgba(61, 255, 161, 0) 70%);
	mix-blend-mode: screen;
	pointer-events: none;
	animation: wm-eye 2.6s ease-in-out infinite;
}
.wm-lion__tail {
	position: absolute;
	right: 0;
	bottom: 22.3%;
	width: 27.6%;
	height: auto;
	z-index: 1;
	transform-origin: left top;
	animation: wm-tail 3s var(--wm-ease) infinite;
}

/* ---------- Баннер ---------- */
.wm-banner {
	position: relative;
	display: grid;
	align-items: center;
	overflow: hidden;
	min-height: 220px;
	border-radius: var(--wm-r-card);
	background: #0E1A33 var(--wm-banner-bg, none) right center / cover no-repeat;
	color: #fff;
}
.wm-banner:hover { color: #fff; }
.wm-banner__in { position: relative; z-index: 1; max-width: 560px; padding: 32px 36px; display: grid; gap: 16px; }
.wm-banner__brand { font-size: 22px; font-weight: 700; letter-spacing: -.01em; }
.wm-banner__title { margin: 0; font-size: clamp(24px, 2.6vw, 30px); line-height: 1.2; font-weight: 700; text-wrap: balance; }
.wm-banner__hl { color: var(--wm-accent); }
.wm-banner__find { margin: 0; display: flex; gap: 12px; align-items: flex-start; font-size: 17px; line-height: 1.5; color: #E5E7EB; }
.wm-banner__find strong { color: #fff; }
.wm-banner__pin { color: #F87171; }

/* ---------- Калькулятор ---------- */
.wm-calc {
	margin-top: 40px;
	padding: 24px;
	border-radius: 20px;
	background: var(--wm-calc-bg, none) center / cover no-repeat;
}
.wm-calc__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: 16px; align-items: stretch; }
.wm-calc__side { padding: 24px; display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; align-content: start; min-height: 290px; min-width: 0; }
.wm-calc__side[aria-busy="true"] { background-image: linear-gradient(var(--wm-hover), var(--wm-hover)); background-size: 60% 18px; background-position: 24px 28px; background-repeat: no-repeat; }
.wm-calc__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.wm-calc__title { margin: 0; font-size: 18px; font-weight: 700; }
.wm-calc__hint { font-size: 13px; color: var(--wm-muted); }
.wm-calc__tabs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
.wm-calc__tab {
	padding: 9px 8px;
	border-radius: var(--wm-r-btn);
	border: 1px solid var(--wm-border-strong);
	background: var(--wm-surface);
	color: var(--wm-ink);
	font-size: 14px;
	font-weight: 600;
	transition: background .15s, border-color .15s, color .15s;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.wm-calc__tab:hover { background: var(--wm-hover); }
.wm-calc__tab[aria-selected="true"] { background: var(--wm-primary); border-color: var(--wm-primary); color: #fff; }
.wm-calc__select {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--wm-border-strong);
	border-radius: var(--wm-r-btn);
	background: var(--wm-surface);
	font-size: 15px;
	color: var(--wm-ink);
}
.wm-calc__amount {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 4px 4px 4px 14px;
	border: 1px solid var(--wm-border-strong);
	border-radius: var(--wm-r-btn);
	background: var(--wm-inset);
}
.wm-calc__amount:focus-within { border-color: var(--wm-primary); }
.wm-calc__input, .wm-calc__output {
	flex: 1;
	min-width: 0;
	border: 0;
	outline: 0;
	background: transparent;
	font-size: 24px;
	font-weight: 600;
	padding: 8px 0;
	color: var(--wm-ink);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
}
.wm-calc__input::-webkit-inner-spin-button { opacity: .5; }
.wm-calc__cur {
	padding: 8px 12px;
	border-radius: 6px;
	background: var(--wm-tint);
	color: var(--wm-cur-ink);
	font-family: var(--wm-mono);
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}
.wm-calc__note { margin: 0; font-size: 13px; line-height: 1.5; color: var(--wm-muted); }
.wm-calc__note.is-warn { color: var(--wm-danger); }
.wm-calc__bar {
	margin-top: 16px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 20px;
	background: var(--wm-surface);
	border: 1px solid var(--wm-border);
	border-radius: 12px;
}
.wm-calc__info { display: flex; flex-wrap: wrap; gap: 8px 28px; font-size: 14px; color: var(--wm-body); }
.wm-calc__info strong { color: var(--wm-ink); }
.wm-calc__actions { display: flex; flex-wrap: wrap; gap: 8px; }

/* ---------- Статистика ---------- */
.wm-stats { margin-top: var(--wm-section); background: var(--wm-primary); color: #fff; }
.wm-stats__grid {
	padding-top: 56px;
	padding-bottom: 56px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
	gap: 32px;
}
.wm-stat__value { font-size: 48px; font-weight: 700; letter-spacing: -.02em; line-height: 1; }
.wm-stat__label { margin-top: 10px; font-size: 16px; color: rgba(255, 255, 255, .82); }

/* ---------- Блоки «текст + изображение» ---------- */
.wm-split {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
	gap: 56px;
	align-items: center;
}
.wm-split--reverse .wm-split__text { order: 2; }
.wm-split--reverse .wm-split__media { order: 1; }
.wm-split__media { display: flex; justify-content: center; }
.wm-split__btn { margin-top: 32px; }
.wm-iconlist { margin-top: 28px; display: grid; gap: 20px; }
.wm-iconlist__item { display: flex; gap: 14px; }
.wm-iconlist__icon { color: var(--wm-primary); margin-top: 2px; }
.wm-iconlist__text p { margin: 0 0 10px; font-size: 16px; line-height: 1.65; color: var(--wm-body); }
.wm-iconlist__text p:last-child { margin-bottom: 0; }
.wm-phone-wrap { background: var(--wm-media-bg, none) center / contain no-repeat; }
.wm-phone { width: 100%; max-width: 320px; aspect-ratio: 311 / 651; overflow: hidden; border-radius: 24px; }
.wm-phone img { display: block; width: 100%; height: 100%; object-fit: cover; }
.wm-apps { width: 100%; max-width: 520px; aspect-ratio: 565 / 578; overflow: hidden; background: var(--wm-media-bg, none) center / cover no-repeat; }
.wm-apps img { display: block; width: 100%; height: 100%; object-fit: contain; }

/* ---------- Преимущества ---------- */
.wm-benefits { background: var(--wm-section-bg, none) center 120px / contain no-repeat; }
.wm-benefits__grid { margin-top: 40px; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: 20px; }
.wm-feature { padding: 24px; border-radius: 12px; }
.wm-feature__title { margin: 18px 0 10px; font-size: 18px; line-height: 1.3; font-weight: 700; }
.wm-feature__text { margin: 0; font-size: 15px; line-height: 1.6; color: var(--wm-body); }

/* ---------- Особенности + курсы ---------- */
.wm-features { background: var(--wm-section-bg, none) right bottom / contain no-repeat; }
.wm-features__grid { margin-top: 48px; display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); gap: 40px; align-items: start; }
.wm-features__grid--full { grid-template-columns: minmax(0, 1fr); }
.wm-rates { overflow: hidden; }
.wm-rates__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 8px; padding: 18px 20px; border-bottom: 1px solid var(--wm-border); }
.wm-rates__title { margin: 0; font-size: 18px; font-weight: 700; }
.wm-rates__updated { font-size: 13px; color: var(--wm-muted); }
.wm-rates__scroll { overflow-x: auto; }
.wm-rates__table { width: 100%; border-collapse: collapse; font-size: 14px; }
.wm-rates__table th {
	padding: 12px 8px;
	font-weight: 600;
	text-align: left;
	color: var(--wm-muted);
	font-size: 11px;
	letter-spacing: .06em;
	text-transform: uppercase;
	white-space: nowrap;
}
.wm-rates__table td { padding: 12px 8px; border-top: 1px solid var(--wm-hover); white-space: nowrap; }
.wm-rates__table th:first-child, .wm-rates__table td:first-child { padding-left: 20px; }
.wm-rates__table th:last-child, .wm-rates__table td:last-child { padding-right: 20px; }
.wm-rates__table .is-num { text-align: right; }
.wm-rates__name { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; }
.wm-rates__sym { color: var(--wm-body); }
.wm-dot { width: 10px; height: 10px; border-radius: 999px; flex: none; }
.is-up { color: var(--wm-success); }
.is-down { color: var(--wm-danger); }
.wm-perks { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.wm-perks li { display: flex; align-items: center; gap: 16px; font-size: 18px; font-weight: 600; }
.wm-perks .wm-icon { color: var(--wm-primary); }

/* ---------- Карточки записей ---------- */
.wm-cards { margin-top: 40px; display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr)); gap: 20px; }
.wm-post-card { display: flex; flex-direction: column; overflow: hidden; }
.wm-post-card__media { display: block; }
.wm-post-card__media img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; height: auto; }
.wm-post-card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.wm-post-card__title { margin: 0; font-size: 20px; line-height: 1.3; font-weight: 700; }
.wm-post-card__title a { color: var(--wm-ink); }
.wm-post-card__title a:hover { color: var(--wm-primary); }
.wm-post-card__excerpt { margin: 0; font-size: 15px; line-height: 1.6; color: var(--wm-body); }
.wm-post-card__more { margin-top: auto; padding-top: 12px; display: inline-flex; align-items: center; gap: 6px; font-size: 15px; font-weight: 600; }
.wm-post-card__more .wm-icon { transition: transform .15s; }
.wm-post-card__more:hover .wm-icon { transform: translateX(3px); }

/* ---------- Полезно знать ---------- */
.wm-knowledge__grid { margin-top: 48px; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); gap: 40px 48px; }
.wm-knowledge__title { margin: 0 0 12px; font-size: 19px; line-height: 1.3; font-weight: 700; color: var(--wm-primary); }
.wm-knowledge__text { margin: 0 0 10px; font-size: 16px; line-height: 1.65; color: var(--wm-body); }
.wm-knowledge__text:last-child { margin-bottom: 0; }

/* ==========================================================================
   Призыв + подвал
   ========================================================================== */
.wm-cta { margin-top: 120px; background: var(--wm-footer-bg); color: #fff; }
.wm-cta__in {
	padding-top: 72px;
	padding-bottom: 56px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
	gap: 40px;
	align-items: center;
}
.wm-cta__title { margin: 0; font-size: clamp(34px, 4.2vw, 52px); line-height: 1.1; font-weight: 700; letter-spacing: -.03em; text-wrap: balance; }
.wm-cta__text { margin: 20px 0 0; max-width: 480px; font-size: 17px; line-height: 1.6; color: var(--wm-footer-text); }
.wm-cta__join { margin: 0 0 20px; font-size: 18px; font-weight: 600; }
.wm-cta__agree { margin: 16px 0 0; font-size: 13px; color: var(--wm-footer-text); }
.wm-cta__agree a { color: #fff; font-weight: 600; }
.wm-cta__agree a:hover { color: #fff; text-decoration: underline; }
.wm-socials { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.wm-social { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 999px; background: #2A2B2E; color: #D1D5DB; }
.wm-social:hover { background: var(--wm-primary); color: #fff; }

.wm-footer { background: var(--wm-footer-bg); color: var(--wm-footer-text); }
.wm-cta + .wm-footer .wm-footer__grid { border-top: 1px solid rgba(255, 255, 255, .1); }
.wm-footer__grid {
	padding: 40px 0 48px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
	gap: 32px;
	font-size: 14px;
	line-height: 1.5;
}
.wm-footer__col { display: grid; gap: 12px; align-content: start; }
.wm-footer__brand { gap: 8px; }
.wm-footer__name { font-size: 24px; font-weight: 700; color: #fff; letter-spacing: -.02em; }
.wm-footer__slogan { font-size: 15px; }
.wm-footer__payments { margin-top: 20px; width: 110px; height: auto; opacity: .8; }
.wm-footer__rights { margin-top: 12px; font-size: 13px; }
.wm-footer__title { margin: 0 0 6px; font-size: 16px; font-weight: 600; color: #fff; }
.wm-footer__link { font-size: 14px; color: var(--wm-footer-text); }
.wm-footer__link:hover, .wm-footer__link.is-active { color: #fff; }

.wm-totop {
	position: fixed;
	right: 28px;
	bottom: 28px;
	z-index: 30;
	width: 52px;
	height: 52px;
	border-radius: 999px;
	border: 1px solid var(--wm-border);
	background: var(--wm-surface);
	color: var(--wm-primary);
	display: grid;
	place-items: center;
	box-shadow: var(--wm-shadow-lg);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .2s, transform .2s, visibility .2s, box-shadow .2s;
}
.wm-totop.is-visible { opacity: 1; visibility: visible; transform: none; }
.wm-totop:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .15); }
.no-js .wm-totop { display: none; }

/* ==========================================================================
   Внутренние страницы
   ========================================================================== */
.wm-pagehead { padding-top: 48px; }
.wm-pagehead__eyebrow { margin-top: 28px; }
.wm-crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; font-size: 14px; color: var(--wm-muted); }
.wm-crumbs li { display: flex; gap: 8px; }
.wm-crumbs li + li::before { content: "/"; color: var(--wm-muted); }
.wm-crumbs [aria-current] { color: var(--wm-ink); }
.wm-pagehead__title {
	margin: 14px 0 0;
	max-width: 900px;
	font-size: clamp(32px, 4.4vw, 52px);
	line-height: 1.12;
	font-weight: 700;
	letter-spacing: -.03em;
	text-wrap: balance;
}
.wm-pagehead__title--doc { font-size: clamp(30px, 4.2vw, 50px); line-height: 1.15; }

.wm-doc { padding-top: 36px; display: flex; flex-wrap: wrap; align-items: flex-start; gap: 48px; }
.wm-doc__body { flex: 1 1 520px; min-width: 0; max-width: 780px; }
.wm-doc__cover { display: block; width: 100%; height: auto; border-radius: var(--wm-r-card); margin-bottom: 32px; }
.wm-docnav { flex: 0 1 240px; min-width: 0; display: grid; gap: 2px; position: sticky; top: calc(var(--wm-header-h) + 22px); }
.wm-docnav__link { padding: 9px 12px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--wm-body); }
.wm-docnav__link:hover { background: var(--wm-hover); color: var(--wm-ink); }
.wm-docnav__link.is-active { color: var(--wm-cur-ink); background: var(--wm-tint); }
.wm-aside { flex: 1 1 260px; min-width: 0; position: sticky; top: calc(var(--wm-header-h) + 22px); }
.wm-aside__card { padding: 24px; box-shadow: none; }
.wm-aside__title { margin: 0 0 8px; font-size: 18px; font-weight: 700; }
.wm-aside__text { margin: 0 0 16px; font-size: 14px; line-height: 1.6; color: var(--wm-body); }

.wm-toc { margin-bottom: 40px; padding: 24px 28px; background: var(--wm-surface); border: 1px solid var(--wm-border); border-radius: var(--wm-r-card); }
.wm-toc__title { margin: 0 0 12px; font-size: 15px; font-weight: 700; }
.wm-toc__list { margin: 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.wm-toc__list > li > a { font-size: 16px; font-weight: 600; color: var(--wm-ink); }
.wm-toc__list a:hover { color: var(--wm-primary); }
.wm-toc__list ol { margin: 8px 0 0; padding-left: 22px; display: grid; gap: 6px; font-size: 14px; line-height: 1.5; color: var(--wm-body); }
.wm-toc__list ol a { color: var(--wm-body); }

/* Контент (редактор WordPress) */
.wm-prose { font-size: 17px; line-height: 1.75; color: var(--wm-body); overflow-wrap: break-word; }
.wm-prose--wide { max-width: 860px; }
.wm-prose > :first-child { margin-top: 0; }
.wm-prose h2 { margin: 44px 0 14px; font-size: clamp(22px, 2.4vw, 28px); line-height: 1.3; font-weight: 700; letter-spacing: -.02em; color: var(--wm-ink); }
.wm-prose h3 { margin: 32px 0 10px; font-size: 19px; line-height: 1.4; font-weight: 700; color: var(--wm-ink); }
.wm-prose h4 { margin: 24px 0 8px; font-size: 17px; font-weight: 700; color: var(--wm-ink); }
.wm-prose p { margin: 0 0 16px; text-wrap: pretty; }
.wm-prose strong, .wm-prose b { color: var(--wm-ink); }
.wm-prose ul, .wm-prose ol { margin: 0 0 20px; padding-left: 22px; display: grid; gap: 8px; line-height: 1.7; }
.wm-prose li > ul, .wm-prose li > ol { margin: 8px 0 0; padding-left: 20px; gap: 6px; }
.wm-prose blockquote { margin: 28px 0; padding: 4px 0 4px 20px; border-left: 3px solid var(--wm-primary); font-size: 19px; line-height: 1.6; color: var(--wm-ink); }
.wm-prose blockquote p:last-child { margin-bottom: 0; }
.wm-prose img { border-radius: 12px; }
.wm-prose figure { margin: 8px 0 24px; }
.wm-prose .wm-doc-img img { max-width: 280px; border-radius: 0; }
.wm-prose table { width: 100%; border-collapse: collapse; margin: 0 0 24px; font-size: 15px; }
.wm-prose th, .wm-prose td { padding: 10px 12px; border: 1px solid var(--wm-border); text-align: left; }
.wm-prose th { background: var(--wm-hover); color: var(--wm-ink); }
.wm-prose hr { border: 0; border-top: 1px solid var(--wm-border); margin: 32px 0; }
.wm-prose code { font-family: var(--wm-mono); font-size: .9em; padding: 2px 6px; border-radius: 6px; background: var(--wm-hover); color: var(--wm-ink); }
.wm-prose a { text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.wm-prose .alignleft { float: left; margin: 6px 24px 16px 0; }
.wm-prose .alignright { float: right; margin: 6px 0 16px 24px; }
.wm-prose .aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wm-prose .wp-caption-text, .wm-prose figcaption { font-size: 14px; color: var(--wm-muted); margin-top: 8px; }

/* Блог */
.wm-listing { padding-top: 8px; }
.wm-listing .wm-cards { margin-top: 32px; }
.wm-empty { margin-top: 32px; font-size: 17px; color: var(--wm-body); }
.wm-archive-desc { margin-top: 16px; }
.wm-pagination, .wm-pagination .nav-links { margin-top: 40px; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.wm-pagination .nav-links { margin-top: 0; }
.wm-pagination .page-numbers, .wm-pagination .post-page-numbers {
	min-width: 42px; height: 42px; padding: 0 12px; display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid var(--wm-border); border-radius: var(--wm-r-btn); background: var(--wm-surface); color: var(--wm-ink); font-weight: 600;
}
.wm-pagination .page-numbers.current, .wm-pagination .post-page-numbers.current { background: var(--wm-primary); border-color: var(--wm-primary); color: #fff; }
.wm-pagination a.page-numbers:hover { border-color: var(--wm-primary); color: var(--wm-primary); }
.wm-search { margin-top: 24px; display: flex; gap: 8px; max-width: 520px; }
.wm-search input { flex: 1; min-width: 0; padding: 10px 14px; border: 1px solid var(--wm-border-strong); border-radius: var(--wm-r-btn); background: var(--wm-surface); color: var(--wm-ink); }

/* 404 */
.wm-404 { padding-top: 96px; padding-bottom: 24px; text-align: center; display: grid; justify-items: center; gap: 0; }
.wm-404 .wm-pagehead__title { margin-bottom: 16px; }
.wm-404__text { margin: 0 0 32px; max-width: 560px; font-size: 18px; line-height: 1.6; color: var(--wm-body); }

/* О нас */
.wm-pagehead--crumbs { padding-bottom: 0; }
.wm-about__intro { padding-top: 32px; }
.wm-about__intro .wm-pagehead__title { margin-top: 14px; }
.wm-about__paras { margin-top: 28px; display: grid; gap: 16px; }
.wm-about__paras p { margin: 0; font-size: 17px; line-height: 1.75; color: var(--wm-body); text-wrap: pretty; }
.wm-about__img { display: block; width: 100%; max-width: 440px; height: auto; }
.wm-about__cards { padding-top: 96px; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); gap: 24px; }
.wm-about__card { padding: 32px; box-shadow: none; }
.wm-about__card-title { margin: 20px 0 12px; font-size: 26px; line-height: 1.25; font-weight: 700; letter-spacing: -.02em; }
.wm-about__card p { margin: 0 0 14px; font-size: 16px; line-height: 1.75; color: var(--wm-body); }
.wm-about__card p:last-child { margin-bottom: 0; }
.wm-trust {
	margin-top: 24px;
	padding: 48px 40px;
	border-radius: var(--wm-r-card);
	background: var(--wm-primary);
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.wm-trust__title { margin: 0; flex: 1 1 520px; font-size: clamp(24px, 2.8vw, 34px); line-height: 1.25; font-weight: 700; letter-spacing: -.02em; text-wrap: balance; }
.wm-trust__title span { display: block; margin-top: 10px; font-size: 18px; font-weight: 500; line-height: 1.5; color: rgba(255, 255, 255, .85); letter-spacing: 0; }
.wm-world { text-align: center; }
.wm-world .wm-h2 { margin-top: 0; }
.wm-world__map { display: block; width: 100%; height: auto; margin-top: 40px; }
.wm-world__qa { max-width: 620px; margin: 24px auto 0; }
.wm-world__q { margin: 0 0 10px; font-size: 20px; font-weight: 700; color: var(--wm-primary); }
.wm-world__qa p { margin: 0; font-size: 17px; line-height: 1.7; color: var(--wm-body); }
.wm-contact-split { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); gap: 40px; align-items: start; }
.wm-contact-split__info { margin-top: 24px; display: grid; gap: 8px; font-size: 16px; color: var(--wm-body); }
.wm-contact-split__info a { font-weight: 600; }

/* Контакты */
.wm-contacts__content { margin-top: 24px; }
.wm-contacts { padding-top: 40px; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); gap: 24px; align-items: start; }
.wm-contacts__cards { display: grid; gap: 12px; align-content: start; }
.wm-infocard {
	display: flex;
	gap: 16px;
	align-items: center;
	padding: 20px;
	background: var(--wm-surface);
	border: 1px solid var(--wm-border);
	border-radius: 12px;
	color: var(--wm-ink);
}
a.wm-infocard:hover { border-color: var(--wm-primary); color: var(--wm-ink); }
.wm-infocard__icon { color: var(--wm-primary); }
.wm-infocard__label { font-size: 13px; color: var(--wm-muted); }
.wm-infocard__value { font-weight: 600; overflow-wrap: anywhere; }
.wm-infocard__sub { font-size: 14px; color: var(--wm-body); }

/* Форма */
.wm-form { padding: 28px; }
.wm-form__body { display: grid; gap: 16px; }
.wm-form__title { margin: 0; font-size: 22px; font-weight: 700; }
.wm-form__sub { margin: 6px 0 0; font-size: 15px; color: var(--wm-body); }
.wm-form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr)); gap: 16px; }
.wm-form__field { display: grid; gap: 6px; font-size: 14px; font-weight: 600; }
.wm-form__field input, .wm-form__field textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--wm-border-strong);
	border-radius: var(--wm-r-btn);
	background: var(--wm-surface);
	color: var(--wm-ink);
	font-size: 15px;
	font-weight: 400;
}
.wm-form__field textarea { resize: vertical; min-height: 120px; }
.wm-form__field input:focus, .wm-form__field textarea:focus { outline: none; border-color: var(--wm-primary); box-shadow: 0 0 0 3px var(--wm-tint); }
.wm-form .is-invalid input, .wm-form .is-invalid textarea { border-color: var(--wm-danger); }
.wm-form__check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--wm-body); }
.wm-form__check input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--wm-primary); flex: none; }
.wm-form__check.is-invalid { color: var(--wm-danger); }
.wm-form__submit { justify-self: start; padding: 13px 28px; }
.wm-form__submit[disabled] { opacity: .6; cursor: progress; }
.wm-form__error { margin: 0; padding: 10px 14px; border-radius: var(--wm-r-btn); background: rgba(220, 38, 38, .08); color: var(--wm-danger); font-size: 14px; }
.wm-form__done { display: grid; place-items: center; text-align: center; gap: 8px; padding: 40px 0; }
.wm-form__ok { color: var(--wm-success); }
.wm-form__done-title { margin: 8px 0 0; font-size: 20px; }
.wm-form__done p { margin: 0; color: var(--wm-body); }

/* Полезные ссылки */
.wm-links__content { margin-top: 24px; }
.wm-links { padding-top: 40px; display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); gap: 12px; }
.wm-links__item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding: 20px 22px;
	background: var(--wm-surface);
	border: 1px solid var(--wm-border);
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	color: var(--wm-ink);
}
.wm-links__item:hover { border-color: var(--wm-primary); color: var(--wm-primary); }

/* Комментарии (минимально) */
.comments-area { margin-top: 48px; }
.comment-list { list-style: none; padding: 0; }

/* ==========================================================================
   Адаптив
   ========================================================================== */
@media (max-width: 960px) {
	.wm-features__grid { grid-template-columns: minmax(0, 1fr); }
	.wm-docnav, .wm-aside { position: static; flex-basis: 100%; }
	.wm-docnav { order: 2; }
}
@media (max-width: 640px) {
	:root { --wm-gutter: 16px; --wm-section: 72px; }
	.wm-hero { padding-top: 48px; padding-bottom: 40px; gap: 24px; }
	.wm-hero__title { margin-top: 16px; }
	.wm-hero__lead { font-size: 17px; margin-top: 20px; }
	.wm-hero__btns { margin-top: 28px; }
	.wm-eyebrow { font-size: 12px; letter-spacing: .22em; }
	.wm-banner__in { padding: 24px 20px; }
	.wm-banner { background-position: 70% center; }
	.wm-banner::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14, 26, 51, .92), rgba(14, 26, 51, .55)); }
	.wm-calc { padding: 12px; margin-top: 28px; }
	.wm-calc__side { padding: 18px; }
	.wm-calc__tab { font-size: 13px; padding: 9px 4px; }
	.wm-calc__bar { padding: 14px; }
	.wm-calc__actions, .wm-calc__actions .wm-btn { width: 100%; }
	.wm-calc__actions .wm-btn { flex: 1; }
	.wm-stat__value { font-size: 40px; }
	.wm-split { gap: 32px; }
	.wm-trust { padding: 32px 24px; }
	.wm-cta { margin-top: 80px; }
	.wm-cta__in { padding-top: 56px; padding-bottom: 40px; }
	.wm-totop { right: 16px; bottom: 16px; width: 46px; height: 46px; }
	.wm-toc { padding: 20px; }
	.wm-prose { font-size: 16px; }
	.wm-form { padding: 20px; }
	.wm-about__card { padding: 24px; }
	.wm-perks li { font-size: 16px; }
	.wm-header__actions { gap: 10px; }
	.wm-theme-toggle { width: 60px; }
	html.wm-dark .wm-theme-toggle__knob { transform: translateX(26px); }
}
