/*--------------------------------------------------------------
# LP Footer — self-contained, used across landing pages.
--------------------------------------------------------------*/

/* Own container — never relies on a host theme's .wrapper rules. */
.lp-footer,
.lp-footer-trusted {
	--lp-footer-wrap-max: 1136px;
	--lp-footer-gutter: 14px;
}

.lp-footer__wrap {
	width: 100%;
	max-width: calc(var(--lp-footer-wrap-max) + var(--lp-footer-gutter) * 2);
	margin-inline: auto;
	padding-inline: var(--lp-footer-gutter);
}

@media (min-width: 992px) {
	.lp-footer,
	.lp-footer-trusted {
		--lp-footer-gutter: 20px;
	}
}

/* Optional trusted-brand strip (shown by default; matches the footer surface). */
.lp-footer-trusted {
	border-top: 1px solid #23180b;
	background: #0a0806;
	padding-block: 22px;
}

.lp-footer-trusted .trusted-content {
	margin-inline: auto;
	max-width: 770px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.lp-footer-trusted img {
	flex-shrink: 0;
	width: 188px;
	height: auto;
}

.lp-footer-trusted p {
	margin: 0;
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 1.42;
	color: #fff;
	text-align: center;
	text-wrap: pretty;
}

.lp-footer-trusted strong {
	color: #f6efe6;
}

@media (min-width: 992px) {
	.lp-footer-trusted .trusted-content {
		flex-direction: row;
		gap: 30px;
	}

	.lp-footer-trusted p {
		text-align: left;
	}
}

@media (min-width: 1200px) {
	.lp-footer-trusted p {
		font-size: 1.5rem;
	}
}

.lp-footer {
	border-top: 1px solid #23180b;
	background: #0a0806;
	padding-block: 40px 44px;
}

.lp-footer__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 36px;
}

/* Top row: brand + payment */
.lp-footer__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
}

.lp-footer__brand {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 240px;
}

.lp-footer__logo {
	display: block;
	width: 56px;
	height: auto;
}

.lp-footer__copy {
	margin: 0;
	font-size: 12px;
	line-height: 1.3;
	color: #b7ac9d;
}

.lp-footer__pay {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 6px;
}

.lp-footer__pay-text {
	font-size: 12px;
	font-weight: 700;
	line-height: 1.3;
	color: #fff;
	text-align: right;
}

.lp-footer__pay-img {
	display: block;
	height: 22px;
	width: auto;
	max-width: 100%;
}

/* Nav — 2-col grid on mobile, right-aligned row on desktop */
.lp-footer__menu {
	display: grid;
	grid-auto-flow: column;
	grid-template-rows: repeat(2, auto);
	justify-content: center;
	gap: 30px 60px;
	width: 100%;
	text-align: center;
}

.lp-footer__menu a {
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	color: #f6efe6;
	text-decoration: none;
	text-transform: capitalize;
	transition: color 0.2s ease;
}

.lp-footer__menu a:hover,
.lp-footer__menu a:focus-visible {
	color: #f3981f;
}

/* Legal text */
.lp-footer__legal {
	display: flex;
	flex-direction: column;
	gap: 22px;
	width: 100%;
	font-weight: 300;
	font-size: 14px;
	line-height: 1.5;
	color: #b7ac9d;
	text-align: justify;
}

.lp-footer__block {
	margin: 0;
}

.lp-footer__block p {
	margin: 0;
}

.lp-footer__legal strong {
	font-weight: 400;
	color: #f6efe6;
}

.lp-footer__email {
	color: #f3981f;
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
}

.lp-footer__email:hover,
.lp-footer__email:focus-visible {
	color: #ffb259;
}

@media (min-width: 768px) {
	.lp-footer__menu {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
		gap: 30px;
	}
}
