.howto-v1 {
	--howto-bg: #ffffff;
	--howto-border: #e8e8e8;
	--howto-text: #1a1a1a;
	--howto-muted: #555555;
	--howto-accent: #ffcc33;
	--howto-accent-deep: #d9a900;
	font-family: "Montserrat", sans-serif;
	color: var(--howto-text);
	padding-bottom: 4px;
	margin-bottom: 24px;
}

.howto-v1__reveal {
	opacity: 1;
	transform: none;
	transition: none;
}

.howto-v1__reveal.is-visible {
	opacity: 1;
	transform: none;
}

.howto-v1__hero {
	border: 1px solid var(--howto-border);
	border-radius: 16px;
	background: var(--howto-bg);
	padding: 22px 24px;
}

.howto-v1__eyebrow {
	margin: 0 0 10px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #737373;
}

.howto-v1__title {
	margin: 0;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--howto-text);
	max-width: 760px;
}

.howto-v1__lead {
	margin: 14px 0 0;
	font-size: 14px;
	line-height: 1.7;
	color: var(--howto-muted);
	max-width: 760px;
}

.howto-v1__facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(220px, 1fr));
	gap: 12px;
	list-style: none;
	margin: 18px 0 0;
	padding: 0;
}

.howto-v1__fact {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-height: 88px;
	border: none;
	border-radius: 0;
	background: transparent;
	padding: 12px 13px;
	color: #2a2a2a;
	box-sizing: border-box;
}

.howto-v1__fact-label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.45;
	color: #474747;
}

.howto-v1__fact-value {
	display: block;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
	color: #171717;
	word-break: break-word;
}

.howto-v1__section {
	margin-top: 18px;
	border: 1px solid var(--howto-border);
	border-radius: 16px;
	background: var(--howto-bg);
	padding: 20px 22px;
}

.howto-v1__subtitle {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.25;
	color: var(--howto-text);
	letter-spacing: -0.01em;
}

.howto-v1__text {
	margin: 11px 0 0;
	font-size: 14px;
	line-height: 1.65;
	color: var(--howto-muted);
}

.howto-v1__payment-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin-top: 15px;
}

.howto-v1__payment-item {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 86px;
	margin: 0;
	border: 1px solid #e6e6e6;
	border-radius: 12px;
	background: #fff;
	padding: 12px;
}

.howto-v1__payment-item img {
	max-width: 100%;
	max-height: 46px;
	object-fit: contain;
	filter: saturate(0.9);
}

.howto-v1__methods {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 14px;
}

.howto-v1__method {
	border: 1px solid #e7e7e7;
	border-radius: 12px;
	padding: 16px;
	background: #fff;
	position: relative;
}

.howto-v1__method-title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	color: #1f1f1f;
}

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

.howto-v1__step {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	border: 1px solid #e6e6e6;
	border-radius: 12px;
	padding: 13px;
	background: #fff;
}

.howto-v1__step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	border-radius: 33px;
	background: var(--howto-accent);
	color: #1a1a1a;
	font-size: 14px;
	font-weight: 700;
	margin-top: 1px;
}

.howto-v1__step-title {
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.3;
	color: #1a1a1a;
}

.howto-v1__help {
	border: 1px solid rgba(255, 204, 51, 0.6);
	border-radius: 12px;
	background: #fff8e8;
	padding: 16px;
	margin-top: 14px;
}

.howto-v1__phone {
	display: inline-block;
	margin-top: 10px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	color: #1a1a1a;
	text-decoration: none;
	transition:
		color 0.2s ease,
		opacity 0.2s ease;
}

.howto-v1__phone:hover {
	color: #000000;
	opacity: 0.9;
}

.howto-v1__note {
	margin: 8px 0 0;
	font-size: 13px;
	color: #4f4f4f;
}

.howto-v1__faq {
	margin-top: 14px;
	display: grid;
	gap: 10px;
}

.howto-v1__faq-item {
	border: 1px solid #e4e4e4;
	border-radius: 12px;
	background: #fff;
	overflow: hidden;
}

.howto-v1__faq-question {
	cursor: pointer;
	list-style: none;
	padding: 14px 44px 14px 14px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.45;
	color: #1e1e1e;
	position: relative;
}

.howto-v1__faq-question::-webkit-details-marker {
	display: none;
}

.howto-v1__faq-question::after {
	content: "+";
	position: absolute;
	right: 14px;
	top: 12px;
	font-size: 20px;
	line-height: 1;
	color: #8a8a8a;
	transition:
		transform 0.2s ease,
		color 0.2s ease;
}

.howto-v1__faq-item[open] .howto-v1__faq-question::after {
	transform: rotate(45deg);
	color: var(--howto-accent-deep);
}

.howto-v1__faq-answer {
	display: grid;
	grid-template-rows: 0fr;
	opacity: 0;
	overflow: hidden;
	padding: 0 14px;
	transition:
		grid-template-rows 0.34s cubic-bezier(0.22, 0.61, 0.36, 1),
		opacity 0.24s ease,
		padding 0.34s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.howto-v1__faq-answer > * {
	overflow: hidden;
}

.howto-v1__faq-item[open] .howto-v1__faq-answer {
	grid-template-rows: 1fr;
	opacity: 1;
	padding: 0 14px 12px;
}

.howto-v1__faq-answer .howto-v1__text {
	margin-top: 2px;
}

@media (max-width: 1200px) {
	.howto-v1__title {
		font-size: 27px;
	}

	.howto-v1__facts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.howto-v1__payment-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 860px) {
	.howto-v1__methods {
		grid-template-columns: 1fr;
	}

	.howto-v1__subtitle {
		font-size: 22px;
	}
}

@media (max-width: 640px) {
	.howto-v1__hero,
	.howto-v1__section {
		padding: 14px 13px;
		border-radius: 12px;
	}

	.howto-v1__title {
		font-size: 24px;
	}

	.howto-v1__facts {
		grid-template-columns: 1fr;
	}

	.howto-v1__step {
		padding: 10px;
	}

	.howto-v1__step-title {
		font-size: 16px;
	}

	.howto-v1__phone {
		font-size: 18px;
	}

	.howto-v1__faq-question {
		padding-right: 40px;
	}
}
