.payment-v2 {
	font-family: "Montserrat", sans-serif;
	color: #1a1a1a;
	margin-bottom: 24px;
}

.payment-v2__intro,
.payment-v2__methods,
.payment-v2__security,
.payment-v2__return {
	border: 1px solid #ececec;
	border-radius: 12px;
	background: #fff;
	padding: 16px;
	margin-bottom: 14px;
}

.payment-v2__lead {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: #4a4a4a;
}

.payment-v2__subtitle {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.25;
	color: #171717;
}

.payment-v2__text {
	margin: 10px 0 0;
	font-size: 14px;
	line-height: 1.6;
	color: #4b4b4b;
}

.payment-v2__text--strong {
	font-weight: 700;
	color: #2a2a2a;
}

.payment-v2__accordion {
	margin-top: 12px;
	display: grid;
	gap: 8px;
}

.payment-v2__item {
	border: 1px solid #ededed;
	border-radius: 10px;
	overflow: hidden;
}

.payment-v2__item-toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-align: left;
	gap: 10px;
	padding: 12px 14px;
	background: #fff;
	border: 0;
	font-size: 15px;
	font-weight: 700;
	font-family: "Montserrat", sans-serif;
	line-height: 1.35;
	color: #1f1f1f;
	cursor: pointer;
	position: relative;
	transition: background-color 0.25s ease, color 0.25s ease;
}

.payment-v2__item-toggle:hover {
	background: #fffdf5;
	color: #121212;
}

.payment-v2__item-toggle::after {
	content: "+";
	font-size: 20px;
	line-height: 1;
	color: #7b7b7b;
	transition: transform 0.2s ease, color 0.2s ease;
}

.payment-v2__item-toggle:hover::after {
	color: #d9a900;
}

.payment-v2__item-toggle.is-active::after {
	transform: rotate(45deg);
	color: #d9a900;
}

.payment-v2__item-body {
	height: 0;
	opacity: 0;
	overflow: hidden;
	padding: 0 14px;
	transition: height 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);
}

.payment-v2__item-body.is-open {
	opacity: 1;
	padding: 0 14px 12px;
}

.payment-v2__cards {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
	margin-top: 10px;
}

.payment-v2__cards img {
	display: block;
	width: 100%;
	max-height: 46px;
	object-fit: contain;
	border: 1px solid #efefef;
	border-radius: 8px;
	padding: 8px;
	background: #fff;
}

.payment-v2__security-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 10px;
}

.payment-v2__security-list,
.payment-v2__security-text {
	border: 1px solid #efefef;
	border-radius: 10px;
	padding: 12px;
	background: #fff;
}

.payment-v2__steps {
	margin: 10px 0 0;
	padding-left: 18px;
}

.payment-v2__step {
	margin-bottom: 6px;
	font-size: 14px;
	line-height: 1.45;
	color: #2f2f2f;
}

.payment-v2__return-list {
	margin: 10px 0 0;
	padding-left: 18px;
}

.payment-v2__return-item {
	margin-bottom: 8px;
	font-size: 14px;
	line-height: 1.5;
	color: #303030;
}

@media (max-width: 900px) {
	.payment-v2__subtitle {
		font-size: 22px;
	}

	.payment-v2__cards,
	.payment-v2__security-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.payment-v2__intro,
	.payment-v2__methods,
	.payment-v2__security,
	.payment-v2__return {
		padding: 13px;
	}

	.payment-v2__cards,
	.payment-v2__security-grid {
		grid-template-columns: 1fr;
	}
}
