/* ===================== INFO PAGE ===================== */
.info-page {
	padding: 60px 0 80px;
}

.info-page__inner {
	max-width: 860px;
	margin: 0 auto;
	padding: 0 20px;
}

/* заголовок */
.info-page__header {
	margin-bottom: 48px;
}

.info-page__title {
	font-family: var(--font-head);
	font-size: 32px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--text-light);
	margin-bottom: 16px;
}

.info-page__intro {
	font-size: 15px;
	color: var(--text-muted);
	line-height: 1.7;
}

/* секции */
.info-section {
	margin-bottom: 36px;
	padding-bottom: 36px;
	border-bottom: 1px solid #333;
}

.info-section:last-child {
	border-bottom: none;
}

.info-section__title {
	font-family: var(--font-head);
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--text-light);
	margin-bottom: 12px;
}

.info-section__subtitle {
	font-family: var(--font-head);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--orange);
	margin: 16px 0 6px;
}

.info-section p {
	font-size: 15px;
	color: var(--text-muted);
	line-height: 1.7;
	margin-bottom: 8px;
}

.info-section__list {
	padding-left: 20px;
	margin-bottom: 8px;
}

.info-section__list li {
	font-size: 15px;
	color: var(--text-muted);
	line-height: 1.7;
	margin-bottom: 4px;
}

/* карточка реквизитов */
.info-requisites {
	margin-top: 48px;
	background: var(--bg-nav);
	border-left: 4px solid var(--orange);
	border-radius: 4px;
	padding: 28px 32px;
}

.info-requisites__label {
	font-family: var(--font-head);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--orange);
	margin-bottom: 20px;
}

.info-requisites__grid {
	display: grid;
	gap: 14px;
}

.info-requisites__item {
	display: flex;
	gap: 16px;
}

.info-requisites__key {
	font-size: 13px;
	font-weight: 500;
	color: var(--text-muted);
	min-width: 160px;
	flex-shrink: 0;
}

.info-requisites__val {
	font-size: 15px;
	font-weight: 500;
	color: var(--text-light);
}

/* мобиль */
@media (max-width: 480px) {
	.info-page__title {
		font-size: 24px;
	}

	.info-requisites {
		padding: 20px;
	}

	.info-requisites__item {
		flex-direction: column;
		gap: 4px;
	}

	.info-requisites__key {
		min-width: unset;
	}
}

/* ===================== PARTNERS PAGE ===================== */

/* общий враппер секций */
.partners-section__inner,
.partners-intro__inner,
.partners-cta__inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 20px;
}

.partners-section {
	padding: 60px 0;
	border-bottom: 1px solid #2e2e2e;
}

.partners-section:last-of-type {
	border-bottom: none;
}

.partners-section__head {
	margin-bottom: 36px;
}

.partners-section__head p {
	color: var(--text-muted);
	font-size: 15px;
	line-height: 1.7;
	margin-top: 10px;
}

.partners-section__title {
	font-family: var(--font-head);
	font-size: 28px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--text-light);
}

/* ---- intro ---- */
.partners-intro {
	padding: 60px 0 50px;
	border-bottom: 1px solid #2e2e2e;
}

.partners-intro__label {
	font-family: var(--font-head);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--orange);
	margin-bottom: 14px;
}

.partners-intro__title {
	font-family: var(--font-head);
	font-size: 48px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--text-light);
	margin-bottom: 16px;
}

.partners-intro__lead {
	max-width: 720px;
	font-size: 15px;
	line-height: 1.75;
	color: var(--text-muted);
	margin-bottom: 28px;
}

.partners-intro__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 28px;
}

.partners-intro__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 24px;
	padding-top: 22px;
	border-top: 1px solid #2e2e2e;
	font-size: 13px;
	font-weight: 600;
	color: var(--text-muted);
}

.partners-intro__meta span::before {
	content: "— ";
	color: var(--orange);
}

/* ---- кнопки ---- */
.partners-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	font-family: var(--font-head);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: 4px;
	transition: background 0.2s, color 0.2s;
	cursor: pointer;
}

.partners-btn--primary {
	background: var(--orange);
	color: var(--text-light);
}

.partners-btn--primary:hover {
	background: var(--orange-dark);
}

.partners-btn--outline {
	background: transparent;
	border: 2px solid #1a1a1a;
	color: var(--text-light);
	border-color: #444;
}

.partners-btn--outline:hover {
	background: #333;
}

/* ---- аудитория ---- */
.partners-audience {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border-top: 1px solid #2e2e2e;
	gap: 0 32px;
}

.partners-audience__item {
	padding: 22px 0;
	border-bottom: 1px solid #2e2e2e;
}

.partners-audience__item strong {
	display: block;
	font-family: var(--font-head);
	font-size: 17px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--text-light);
	margin-bottom: 8px;
}

.partners-audience__item p {
	font-size: 14px;
	line-height: 1.65;
	color: var(--text-muted);
	margin: 0;
}

/* ---- что предлагаем ---- */
.partners-offer {
	border: 1px solid #2e2e2e;
	border-radius: 4px;
	overflow: hidden;
}

.partners-offer__row {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
}

.partners-offer__row + .partners-offer__row {
	border-top: 1px solid #2e2e2e;
}

.partners-offer__text,
.partners-offer__list {
	padding: 28px 30px;
}

.partners-offer__text strong {
	display: block;
	font-family: var(--font-head);
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--text-light);
	margin-bottom: 12px;
}

.partners-offer__text p {
	font-size: 14px;
	line-height: 1.75;
	color: var(--text-muted);
	margin: 0;
}

.partners-offer__list {
	border-left: 1px solid #2e2e2e;
	background: var(--bg-nav);
}

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

.partners-offer__list li {
	position: relative;
	padding-left: 16px;
	font-size: 14px;
	font-weight: 600;
	color: var(--text-light);
	line-height: 1.6;
}

.partners-offer__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--orange);
}

/* ---- форматы ---- */
.partners-formats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	border-top: 1px solid #2e2e2e;
}

.partners-format {
	padding: 28px 24px 28px 0;
	border-right: 1px solid #2e2e2e;
}

.partners-format:last-child {
	border-right: none;
	padding-right: 0;
}

.partners-format:not(:first-child) {
	padding-left: 24px;
}

.partners-format h3 {
	font-family: var(--font-head);
	font-size: 17px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 10px;
}

.partners-format p {
	font-size: 14px;
	line-height: 1.65;
	color: var(--text-muted);
	margin-bottom: 16px;
}

.partners-format ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 8px;
}

.partners-format li {
	position: relative;
	padding-left: 14px;
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.5;
}

.partners-format li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--orange);
}

/* ---- шаги ---- */
.partners-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	border-top: 1px solid #2e2e2e;
}

.partners-step {
	padding: 28px 24px 28px 0;
	border-right: 1px solid #2e2e2e;
}

.partners-step:last-child {
	border-right: none;
}

.partners-step:not(:first-child) {
	padding-left: 24px;
}

.partners-step__num {
	font-family: var(--font-head);
	font-size: 40px;
	font-weight: 700;
	color: #2e2e2e;
	line-height: 1;
	margin-bottom: 14px;
}

.partners-step strong {
	display: block;
	font-family: var(--font-head);
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--text-light);
	margin-bottom: 8px;
}

.partners-step p {
	font-size: 14px;
	line-height: 1.65;
	color: var(--text-muted);
	margin: 0;
}

/* ---- CTA ---- */
.partners-cta {
	padding: 60px 0;
	background: var(--bg-nav);
	border-top: 1px solid #2e2e2e;
	border-bottom: 1px solid #2e2e2e;
}

.partners-cta__title {
	font-family: var(--font-head);
	font-size: 28px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--text-light);
	margin-bottom: 14px;
}

.partners-cta__text {
	font-size: 15px;
	line-height: 1.7;
	color: var(--text-muted);
	margin-bottom: 20px;
}

.partners-cta__list {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
}

.partners-cta__list li {
	position: relative;
	padding-left: 14px;
	font-size: 14px;
	color: var(--text-muted);
}

.partners-cta__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--orange);
}

.partners-cta__bottom {
	display: flex;
	align-items: center;
	gap: 32px;
	flex-wrap: wrap;
}

.partners-cta__contacts {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
}

.partners-cta__contacts a,
.partners-cta__contacts span {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-light);
}

.partners-cta__contacts a:hover {
	color: var(--orange);
}

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

/* ---- FAQ ---- */
.partners-faq {
	border-top: 1px solid #2e2e2e;
}

.partners-faq__item {
	border-bottom: 1px solid #2e2e2e;
}

.partners-faq__item summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 0;
	font-family: var(--font-head);
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--text-light);
	cursor: pointer;
	list-style: none;
	transition: color 0.2s;
}

.partners-faq__item summary:hover {
	color: var(--orange);
}

.partners-faq__item summary::after {
	content: "+";
	font-size: 22px;
	color: var(--orange);
	flex-shrink: 0;
}

.partners-faq__item[open] summary::after {
	content: "−";
}

.partners-faq__answer {
	padding: 0 0 18px;
	font-size: 14px;
	line-height: 1.7;
	color: var(--text-muted);
}

/* ---- мобиль ---- */
@media (max-width: 768px) {
	.partners-intro__title {
		font-size: 32px;
	}

	.partners-audience,
	.partners-formats,
	.partners-steps {
		grid-template-columns: 1fr;
	}

	.partners-offer__row {
		grid-template-columns: 1fr;
	}

	.partners-offer__list {
		border-left: none;
		border-top: 1px solid #2e2e2e;
	}

	.partners-format,
	.partners-step {
		border-right: none;
		border-bottom: 1px solid #2e2e2e;
		padding: 22px 0;
	}

	.partners-format:last-child,
	.partners-step:last-child {
		border-bottom: none;
	}

	.partners-cta__bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* текст перед списком в правой части offer */
.partners-offer__list p {
	font-size: 13px;
	color: var(--text-muted);
	margin: 6px 0 14px;
}
/* список в блоке подготовить */
.prepare-list {
	padding: 16px 20px;
	background: var(--bg-nav);
	border-left: 3px solid var(--orange);
	border-radius: 4px;
	margin: 16px 0 24px;
	display: grid;
	gap: 10px;
}

.prepare-list li {
	position: relative;
	padding-left: 16px;
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.6;
	list-style: none;
}

.prepare-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--orange);
	flex-shrink: 0;
}

/* SVG иллюстрация */
.howto-prepare__svg {
	width: 100%;
	opacity: 0.85;
}

/* faq hero — текст слева, svg справа */
.faq-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.faq-hero__right {
	opacity: 0.9;
	max-height: 280px;
	overflow: hidden;
	display: flex;
	align-items: center;
}

@media (max-width: 768px) {
	.faq-hero {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.faq-hero__right {
		display: none;
	}
}

/* ===================== REQUISITES ===================== */
.requisites-wrap {
	max-width: 680px;
	margin: 0 auto;
}

.req-table {
	width: 100%;
	border-collapse: collapse;
}

.req-table tr {
	border-bottom: 1px solid #2e2e2e;
}

.req-table tr:last-child {
	border-bottom: none;
}

.req-table__key {
	padding: 16px 24px 16px 0;
	font-size: 13px;
	font-weight: 500;
	color: var(--text-muted);
	width: 220px;
	vertical-align: top;
	white-space: nowrap;
}

.req-table__val {
	padding: 16px 0;
	font-size: 15px;
	font-weight: 500;
	color: var(--text-light);
	line-height: 1.6;
}

.req-table__val a {
	color: var(--text-light);
	transition: color 0.2s;
}

.req-table__val a:hover {
	color: var(--orange);
}

@media (max-width: 480px) {
	.req-table,
	.req-table tbody,
	.req-table tr,
	.req-table__key,
	.req-table__val {
		display: block;
		width: 100%;
	}

	.req-table tr {
		padding: 16px 0;
	}

	.req-table__key {
		padding: 0 0 4px;
		white-space: normal;
	}

	.req-table__val {
		padding: 0;
	}
}

/* ===================== HOW_TO PAGE ===================== */

/* быстрые ссылки в интро */
.partners-intro__meta-link {
	font-size: 13px;
	font-weight: 600;
	color: var(--text-muted);
	transition: color 0.2s;
}

.partners-intro__meta-link::before {
	content: "— ";
	color: var(--orange);
}

.partners-intro__meta-link:hover {
	color: var(--text-light);
}

/* 4 шага покупки */
.howto-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid #2e2e2e;
}

.howto-step {
	padding: 28px 20px 28px 0;
	border-right: 1px solid #2e2e2e;
	border-top: 3px solid transparent;
	transition: border-color 0.2s;
}

.howto-step:hover {
	border-top-color: var(--orange);
}

.howto-step:last-child {
	border-right: none;
}

.howto-step:not(:first-child) {
	padding-left: 20px;
}

.howto-step__num {
	font-family: var(--font-head);
	font-size: 40px;
	font-weight: 700;
	color: #2e2e2e;
	line-height: 1;
	margin-bottom: 14px;
}

.howto-step strong {
	display: block;
	font-family: var(--font-head);
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--text-light);
	margin-bottom: 8px;
}

.howto-step p {
	font-size: 13px;
	line-height: 1.65;
	color: var(--text-muted);
	margin: 0 0 14px;
}

.howto-step__link {
	font-size: 12px;
	font-weight: 700;
	font-family: var(--font-head);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--orange);
	transition: color 0.2s;
}

.howto-step__link:hover {
	color: var(--orange-dark);
}

/* блок подготовить заранее */
.howto-prepare {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 60px;
	align-items: center;
}

.howto-prepare__left p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--text-muted);
	margin: 12px 0 20px;
}

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

/* декоративный визуал */
.howto-prepare__visual {
	width: 100%;
	border: 1px solid #2e2e2e;
	border-radius: 4px;
	overflow: hidden;
}

.howto-prepare__row {
	padding: 16px 20px;
	border-bottom: 1px solid #2e2e2e;
	display: flex;
	align-items: center;
	gap: 12px;
}

.howto-prepare__row:last-child {
	border-bottom: none;
}

.howto-prepare__row::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--orange);
	flex-shrink: 0;
}

.howto-prepare__row span {
	font-family: var(--font-head);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--text-muted);
	letter-spacing: 0.5px;
}

/* акцентный блок "не уверены" */
.howto-cta-soft {
	padding: 48px 0;
	background: var(--bg-nav);
	border-top: 1px solid #2e2e2e;
	border-bottom: 1px solid #2e2e2e;
}

.howto-cta-soft p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--text-muted);
	margin-top: 12px;
	max-width: 640px;
}

/* мобиль */
@media (max-width: 768px) {
	.howto-steps {
		grid-template-columns: 1fr 1fr;
	}

	.howto-step:nth-child(2) {
		border-right: none;
	}

	.howto-step:nth-child(3),
	.howto-step:nth-child(4) {
		border-top: 1px solid #2e2e2e;
	}

	.howto-prepare {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

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

	.howto-step {
		border-right: none;
		border-bottom: 1px solid #2e2e2e;
		padding: 22px 0;
	}

	.howto-step:last-child {
		border-bottom: none;
	}
}

/* ===================== ABOUT PAGE ===================== */

/* лейбл над заголовком */
.about__label {
	font-family: var(--font-head);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--orange);
	margin-bottom: 14px;
}

/* список с оранжевыми точками */
.about__list {
	list-style: none;
	padding: 0;
	display: grid;
	gap: 10px;
}

.about__list li {
	position: relative;
	padding-left: 18px;
}

.about__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--orange);
}

/* ссылки в реквизитах */
.info-requisites__val a {
	color: var(--text-light);
	transition: color 0.2s;
}

.info-requisites__val a:hover {
	color: var(--orange);
}