/* ===== Юридические страницы (lp-*) — Оферта, Возврат, Гарантия ===== */
.legal-page {
	padding: 40px 0 0;
}
.legal-page h1 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 36px;
	letter-spacing: 1px;
}

/* Акцентный баннер */
.lp-banner {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 28px 32px;
	background: #0D0D0D;
	color: #F4EDDB;
	border-radius: 16px;
	margin-bottom: 50px;
}
.lp-banner__icon {
	flex-shrink: 0;
}
.lp-banner__title {
	display: block;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 4px;
}
.lp-banner__sub {
	display: block;
	font-size: 15px;
	opacity: 0.7;
}

/* Секции */
.lp-section {
	margin-bottom: 36px;
}
.lp-section__title {
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-bottom: 16px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(13,13,13,0.15);
}
.lp-section__body {
	padding: 0;
}
.lp-section__body p {
	font-size: 15px;
	line-height: 1.7;
	margin: 0 0 12px;
	color: #1a1a1a;
}
.lp-section__body p:last-child {
	margin-bottom: 0;
}
.lp-section__body a {
	color: #0D0D0D;
	text-decoration: underline;
	font-weight: 500;
}
.lp-section__body ul,
.lp-section__body ol {
	padding-left: 24px;
	margin: 12px 0;
}
.lp-section__body li {
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 8px;
}

/* Бейджи */
.lp-badges {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 12px;
}
.lp-badge {
	display: inline-block;
	padding: 6px 14px;
	background: #0D0D0D;
	color: #F4EDDB;
	border-radius: 60px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.5px;
}

/* Карточки */
.lp-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 16px;
}
.lp-card {
	padding: 28px 24px;
	background: #F4EDDB;
	border: 1.5px solid rgba(13,13,13,0.25);
	border-radius: 16px;
}
.lp-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	background: #0D0D0D;
	color: #F4EDDB;
	border-radius: 50%;
	margin-bottom: 16px;
}
.lp-card h3 {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
}
.lp-card p {
	font-size: 15px;
	line-height: 1.6;
	margin: 0 0 8px;
}
.lp-card p:last-child {
	margin-bottom: 0;
}

/* Шаги */
.lp-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 16px;
}
.lp-step {
	text-align: center;
	padding: 24px 16px;
	background: #F4EDDB;
	border: 1.5px solid rgba(13,13,13,0.25);
	border-radius: 16px;
}
.lp-step__num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: #0D0D0D;
	color: #F4EDDB;
	border-radius: 50%;
	font-size: 20px;
	font-weight: 600;
	margin: 0 auto 12px;
}
.lp-step h3 {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-bottom: 6px;
}
.lp-step p {
	font-size: 13px;
	line-height: 1.5;
	opacity: 0.7;
	margin: 0;
}

/* Таблица */
.lp-table {
	border: 1.5px solid rgba(13,13,13,0.25);
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 16px;
}
.lp-table-row {
	display: flex;
	align-items: center;
	padding: 20px 24px;
	border-bottom: 1px solid rgba(13,13,13,0.1);
}
.lp-table-row:last-child {
	border-bottom: none;
}
.lp-table-row--accent {
	background: #0D0D0D;
	color: #F4EDDB;
}
.lp-table-row__label {
	font-size: 15px;
	font-weight: 600;
	min-width: 200px;
	flex-shrink: 0;
}
.lp-table-row__value {
	font-size: 15px;
}

/* FAQ аккордеон */
.lp-accordion__item {
	border: 1.5px solid rgba(13,13,13,0.25);
	border-radius: 12px;
	margin-bottom: 10px;
	overflow: hidden;
}
.lp-accordion__item summary {
	padding: 18px 24px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.2s;
}
.lp-accordion__item summary::-webkit-details-marker {
	display: none;
}
.lp-accordion__item summary::after {
	content: '+';
	font-size: 22px;
	font-weight: 300;
	transition: transform 0.2s;
}
.lp-accordion__item[open] summary::after {
	transform: rotate(45deg);
}
.lp-accordion__item[open] summary {
	background: #0D0D0D;
	color: #F4EDDB;
}
.lp-accordion__body {
	padding: 16px 24px 20px;
}
.lp-accordion__body p {
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
}
.lp-accordion__body a {
	color: inherit;
	text-decoration: underline;
}

/* Важно (выделенный блок) */
.lp-important {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 20px 24px;
	background: #F4EDDB;
	border: 1.5px solid rgba(13,13,13,0.25);
	border-radius: 12px;
	margin: 16px 0;
}
.lp-important svg {
	flex-shrink: 0;
	margin-top: 2px;
}
.lp-important p {
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
}

/* Контактный блок */
.lp-contact {
	text-align: center;
	margin-bottom: 40px;
}
.lp-contact__sub {
	font-size: 16px;
	opacity: 0.6;
	margin-bottom: 24px;
}
.lp-contact__grid {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}
.lp-contact__item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 24px;
	background: #F4EDDB;
	border: 1.5px solid rgba(13,13,13,0.25);
	border-radius: 60px;
	text-decoration: none;
	color: #0D0D0D;
	font-size: 15px;
	font-weight: 500;
	transition: background 0.3s, color 0.3s, transform 0.2s;
}
.lp-contact__item:hover {
	background: #0D0D0D;
	color: #F4EDDB;
	transform: translateY(-2px);
}

/* Реквизиты */
.lp-legal {
	text-align: center;
	padding: 30px 0 40px;
	border-top: 1px solid rgba(13,13,13,0.15);
}
.lp-legal p {
	font-size: 13px;
	opacity: 0.5;
	margin: 4px 0;
}
.lp-legal__name {
	font-weight: 600;
	opacity: 0.6 !important;
}
.lp-legal a {
	color: inherit;
	text-decoration: underline;
}

/* Дисклеймер */
.lp-disclaimer {
	font-size: 13px;
	opacity: 0.5;
	margin: 8px 0 0;
}

/* Адаптив планшет */
@media (max-width: 900px) {
	.lp-cards {
		grid-template-columns: 1fr;
	}
	.lp-table-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}
}

/* Адаптив мобильный */
@media (max-width: 600px) {
	.legal-page {
		padding: 24px 0 0;
	}
	.legal-page h1 {
		font-size: 26px;
		margin-bottom: 24px;
	}
	.lp-banner {
		flex-direction: column;
		text-align: center;
		padding: 24px 20px;
	}
	.lp-banner__title {
		font-size: 16px;
	}
	.lp-section__title {
		font-size: 18px;
	}
	.lp-steps {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}
	.lp-contact__item {
		width: 100%;
		justify-content: center;
	}
	.lp-accordion__item summary {
		padding: 14px 18px;
		font-size: 15px;
	}
	.lp-table-row {
		padding: 16px 20px;
	}
}
