/* ==========================================================================
   Mayer Slate - Landing Page (Ads) Styles
   Used by page-landing.php for Google Ads conversion landing pages.
   ========================================================================== */

:root {
	--lp-gold: #C8A45A;
	--lp-gold-bright: #E6C378;
	--lp-green: #00ff66;
	--lp-bg: #0E0E10;
	--lp-bg-alt: #161619;
	--lp-bg-card: #1C1C20;
	--lp-border: #2A2A30;
	--lp-text: #F4F4F6;
	--lp-text-mute: #B5B5BD;
	--lp-danger: #FF4D4D;
	--lp-shadow: 0 20px 60px rgba(0,0,0,0.55);
	--lp-radius: 14px;
	--lp-radius-lg: 22px;
	--lp-ease: cubic-bezier(.2,.7,.2,1);
}

/* Base container for LP body */
.ms-landing {
	background: var(--lp-bg);
	color: var(--lp-text);
	overflow-x: hidden;
}

/* Hide sitewide footer when rendered inside LP template (safety) */
body.page-template-page-landing .ms-footer { display: none !important; }

/* ==========================================================================
   Section scaffolding
   ========================================================================== */
.lp-section {
	position: relative;
	padding: clamp(64px, 9vw, 120px) 20px;
}
.lp-section--tight { padding: clamp(40px, 6vw, 80px) 20px; }
.lp-section--dark { background: var(--lp-bg); }
.lp-section--darker { background: #07070A; }
.lp-section--alt { background: var(--lp-bg-alt); }
.lp-section--gradient {
	background: linear-gradient(180deg, var(--lp-bg) 0%, #07070A 50%, var(--lp-bg) 100%);
}
.lp-container {
	max-width: 1180px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}
.lp-container--narrow { max-width: 860px; }

/* ==========================================================================
   Headings
   ========================================================================== */
.lp-eyebrow {
	display: inline-block;
	font-size: 13px;
	letter-spacing: 2.4px;
	text-transform: uppercase;
	color: var(--lp-gold);
	font-weight: 700;
	margin-bottom: 14px;
}
.lp-eyebrow::before {
	content: "";
	display: inline-block;
	width: 28px; height: 2px;
	background: var(--lp-gold);
	vertical-align: middle;
	margin-right: 10px;
}
.lp-h1 {
	font-size: clamp(36px, 5.4vw, 62px);
	line-height: 1.08;
	font-weight: 800;
	margin: 0 0 18px;
	letter-spacing: -0.02em;
	color: #FFFFFF;
}
.lp-h1 .lp-accent { color: var(--lp-gold); }
.lp-h2 {
	font-size: clamp(28px, 3.6vw, 42px);
	line-height: 1.15;
	font-weight: 800;
	margin: 0 0 20px;
	letter-spacing: -0.01em;
	color: #FFFFFF;
}
.lp-h3 {
	font-size: clamp(19px, 2vw, 22px);
	line-height: 1.3;
	font-weight: 700;
	margin: 0 0 10px;
	color: #FFFFFF;
}
.lp-lead {
	font-size: clamp(17px, 1.7vw, 20px);
	line-height: 1.6;
	color: var(--lp-text-mute);
	margin: 0 0 28px;
	max-width: 720px;
}
.lp-section-head { text-align: center; margin-bottom: 56px; }
.lp-section-head .lp-lead { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   HERO with parallax
   ========================================================================== */
.lp-hero {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: 140px 20px 80px;
	background: #000;
}
.lp-hero-bg {
	position: absolute;
	inset: -10% 0 -10% 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	will-change: transform;
	transform: translate3d(0,0,0);
	z-index: 0;
}
.lp-hero-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(1100px 600px at 20% 30%, rgba(200,164,90,0.18), transparent 60%),
		linear-gradient(180deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.72) 40%, rgba(0,0,0,0.92) 100%);
}
.lp-hero-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(200,164,90,0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(200,164,90,0.04) 1px, transparent 1px);
	background-size: 60px 60px;
	mix-blend-mode: screen;
	pointer-events: none;
	z-index: 1;
}
.lp-hero-inner {
	position: relative;
	z-index: 3;
	max-width: 1180px;
	margin: 0 auto;
	width: 100%;
}
.lp-hero-badges {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 18px;
}
.lp-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border: 1px solid rgba(200,164,90,0.4);
	background: rgba(200,164,90,0.08);
	color: var(--lp-gold-bright);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	backdrop-filter: blur(6px);
}
.lp-badge i { color: var(--lp-gold); }
.lp-hero-cta-row {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 8px;
}
.lp-hero-trustline {
	display: flex;
	gap: 22px;
	flex-wrap: wrap;
	margin-top: 36px;
	padding-top: 24px;
	border-top: 1px solid rgba(255,255,255,0.08);
	color: var(--lp-text-mute);
	font-size: 13px;
}
.lp-hero-trustline span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.lp-hero-trustline i { color: var(--lp-gold); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.lp-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 28px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 10px;
	border: 2px solid transparent;
	transition: transform .25s var(--lp-ease), box-shadow .25s var(--lp-ease), background .25s;
	cursor: pointer;
	font-family: inherit;
	position: relative;
	white-space: nowrap;
}
.lp-btn:hover { transform: translateY(-2px); }
.lp-btn--call {
	background: var(--lp-green);
	color: #001a07;
	box-shadow: 0 0 0 0 rgba(0,255,102,0.6), 0 10px 30px rgba(0,255,102,0.25);
	animation: lpPulse 3.2s infinite;
}
.lp-btn--call:hover {
	box-shadow: 0 0 0 10px rgba(0,255,102,0), 0 14px 40px rgba(0,255,102,0.45);
}
@keyframes lpPulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(0,255,102,0.55), 0 10px 30px rgba(0,255,102,0.22); }
	50%      { box-shadow: 0 0 0 14px rgba(0,255,102,0), 0 10px 30px rgba(0,255,102,0.22); }
}
.lp-btn--gold {
	background: var(--lp-gold);
	color: #0E0E10;
}
.lp-btn--gold:hover {
	background: var(--lp-gold-bright);
	box-shadow: 0 14px 40px rgba(200,164,90,0.35);
}
.lp-btn--ghost {
	background: transparent;
	color: #FFFFFF;
	border-color: rgba(255,255,255,0.4);
}
.lp-btn--ghost:hover {
	background: rgba(255,255,255,0.08);
	border-color: #FFFFFF;
}
.lp-btn--large { padding: 20px 34px; font-size: 16px; }
.lp-btn i { font-size: 16px; }

/* ==========================================================================
   Trust strip (below hero)
   ========================================================================== */
.lp-trust-strip {
	background: #07070A;
	border-top: 1px solid var(--lp-border);
	border-bottom: 1px solid var(--lp-border);
	padding: 28px 20px;
}
.lp-trust-strip-inner {
	max-width: 1180px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 30px;
	text-align: center;
}
.lp-trust-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}
.lp-trust-item i {
	font-size: 22px;
	color: var(--lp-gold);
	margin-bottom: 4px;
}
.lp-trust-item strong {
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.3px;
}
.lp-trust-item span {
	color: var(--lp-text-mute);
	font-size: 12px;
}
@media (max-width: 820px) {
	.lp-trust-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ==========================================================================
   Cards (Why Us, Services, Steps)
   ========================================================================== */
.lp-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.lp-grid--4 { grid-template-columns: repeat(4, 1fr); }
.lp-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) {
	.lp-grid, .lp-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
	.lp-grid, .lp-grid--4, .lp-grid--2 { grid-template-columns: 1fr; }
}

.lp-card {
	background: var(--lp-bg-card);
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius);
	padding: 32px 28px;
	position: relative;
	transition: transform .35s var(--lp-ease), border-color .35s, box-shadow .35s;
}
.lp-card:hover {
	transform: translateY(-6px);
	border-color: rgba(200,164,90,0.5);
	box-shadow: var(--lp-shadow);
}
.lp-card-icon {
	width: 56px; height: 56px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(200,164,90,0.18), rgba(200,164,90,0.04));
	border: 1px solid rgba(200,164,90,0.35);
	display: grid;
	place-items: center;
	color: var(--lp-gold);
	font-size: 22px;
	margin-bottom: 18px;
}
.lp-card h3 {
	color: #FFFFFF;
	font-size: 19px;
	font-weight: 700;
	margin: 0 0 10px;
}
.lp-card p {
	color: #E8E8EC;
	font-size: 15px;
	line-height: 1.65;
	margin: 0;
}
.lp-card ul {
	margin: 10px 0 0;
	padding: 0;
	list-style: none;
}
.lp-card ul li {
	position: relative;
	padding: 6px 0 6px 22px;
	color: #E8E8EC;
	font-size: 14px;
	line-height: 1.5;
}
.lp-card ul li::before {
	content: "\f00c";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	left: 0; top: 6px;
	color: var(--lp-gold);
	font-size: 12px;
}

/* Step cards (How it works) */
.lp-steps { counter-reset: step; }
.lp-step {
	position: relative;
	padding-top: 56px;
}
.lp-step::before {
	counter-increment: step;
	content: counter(step, decimal-leading-zero);
	position: absolute;
	top: 24px; left: 28px;
	font-size: 44px;
	font-weight: 800;
	color: var(--lp-gold);
	opacity: 0.35;
	letter-spacing: -1px;
}

/* ==========================================================================
   Stats row
   ========================================================================== */
.lp-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin: 40px auto 0;
	max-width: 1000px;
}
.lp-stat {
	text-align: center;
	padding: 24px 16px;
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius);
	background: rgba(200,164,90,0.03);
}
.lp-stat-num {
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 800;
	color: var(--lp-gold);
	line-height: 1;
	letter-spacing: -0.02em;
}
.lp-stat-label {
	margin-top: 8px;
	font-size: 12px;
	letter-spacing: 1.2px;
	color: var(--lp-text-mute);
	text-transform: uppercase;
}
@media (max-width: 760px) { .lp-stats { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   Reviews
   ========================================================================== */
.lp-review {
	background: var(--lp-bg-card);
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius);
	padding: 26px 24px;
}
.lp-review-stars {
	color: var(--lp-gold);
	font-size: 15px;
	letter-spacing: 2px;
	margin-bottom: 10px;
}
.lp-review p {
	color: #E8E8EC;
	font-size: 15px;
	line-height: 1.6;
	margin: 0 0 14px;
	font-style: italic;
}
.lp-review-author {
	display: flex;
	align-items: center;
	gap: 10px;
}
.lp-review-avatar {
	width: 38px; height: 38px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--lp-gold), #8C6E2F);
	color: #0E0E10;
	display: grid;
	place-items: center;
	font-weight: 800;
	font-size: 14px;
}
.lp-review-name { color: #FFFFFF; font-weight: 700; font-size: 14px; }
.lp-review-role { color: var(--lp-text-mute); font-size: 12px; }

/* ==========================================================================
   Coverage area (local SEO)
   ========================================================================== */
.lp-coverage {
	background: var(--lp-bg-card);
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius-lg);
	padding: 40px 36px;
	text-align: center;
}
.lp-coverage-list {
	margin-top: 24px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}
.lp-coverage-list span {
	padding: 8px 14px;
	border: 1px solid var(--lp-border);
	border-radius: 999px;
	background: rgba(200,164,90,0.05);
	color: #E8E8EC;
	font-size: 13px;
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.lp-faq { max-width: 840px; margin: 0 auto; }
.lp-faq details {
	background: var(--lp-bg-card);
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius);
	margin-bottom: 12px;
	overflow: hidden;
	transition: border-color .25s;
}
.lp-faq details[open] { border-color: rgba(200,164,90,0.5); }
.lp-faq summary {
	padding: 20px 24px;
	cursor: pointer;
	color: #FFFFFF;
	font-weight: 600;
	font-size: 16px;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
	content: "+";
	color: var(--lp-gold);
	font-size: 26px;
	font-weight: 300;
	transition: transform .25s;
	line-height: 1;
}
.lp-faq details[open] summary::after {
	content: "−";
	transform: rotate(180deg);
}
.lp-faq .lp-faq-body {
	padding: 0 24px 22px;
	color: #D8D8DC;
	font-size: 15px;
	line-height: 1.65;
}

/* ==========================================================================
   Quote form
   ========================================================================== */
.lp-form-section {
	background: linear-gradient(180deg, #07070A 0%, var(--lp-bg) 100%);
	position: relative;
	overflow: hidden;
}
.lp-form-section::before {
	content: "";
	position: absolute;
	top: -120px; left: 50%;
	transform: translateX(-50%);
	width: 800px; height: 800px;
	background: radial-gradient(closest-side, rgba(200,164,90,0.12), transparent);
	pointer-events: none;
}
.lp-form-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: start;
}
@media (max-width: 900px) { .lp-form-wrap { grid-template-columns: 1fr; gap: 32px; } }

.lp-form-card {
	background: var(--lp-bg-card);
	border: 1px solid rgba(200,164,90,0.3);
	border-radius: var(--lp-radius-lg);
	padding: 38px 34px;
	box-shadow: var(--lp-shadow);
}
.lp-form-card h2 {
	font-size: 26px;
	font-weight: 800;
	color: #FFFFFF;
	margin: 0 0 8px;
}
.lp-form-card .lp-form-sub {
	color: var(--lp-text-mute);
	font-size: 14px;
	margin: 0 0 24px;
}
.lp-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-bottom: 14px;
}
@media (max-width: 540px) { .lp-form-row { grid-template-columns: 1fr; } }
.lp-field { margin-bottom: 14px; }
.lp-field label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	color: var(--lp-text-mute);
	margin-bottom: 6px;
}
.lp-field label .lp-req { color: var(--lp-danger); }
.lp-field input,
.lp-field select,
.lp-field textarea {
	width: 100%;
	padding: 13px 15px;
	background: #0E0E10;
	border: 1px solid var(--lp-border);
	border-radius: 10px;
	color: #FFFFFF;
	font-size: 15px;
	font-family: inherit;
	transition: border-color .2s, box-shadow .2s;
}
.lp-field input:focus,
.lp-field select:focus,
.lp-field textarea:focus {
	outline: none;
	border-color: var(--lp-gold);
	box-shadow: 0 0 0 3px rgba(200,164,90,0.15);
}
.lp-field textarea { resize: vertical; min-height: 90px; }
.lp-consent {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin: 10px 0 18px;
	font-size: 12px;
	color: var(--lp-text-mute);
	line-height: 1.5;
}
.lp-consent input[type="checkbox"] {
	width: 16px; height: 16px;
	margin-top: 2px;
	accent-color: var(--lp-gold);
	flex-shrink: 0;
}
.lp-consent a { color: var(--lp-gold); text-decoration: underline; }

.lp-form-submit {
	width: 100%;
	padding: 18px;
	background: var(--lp-gold);
	color: #0E0E10;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .2s, transform .2s;
	font-family: inherit;
}
.lp-form-submit:hover {
	background: var(--lp-gold-bright);
	transform: translateY(-1px);
}
.lp-form-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}
.lp-form-msg {
	margin-top: 14px;
	padding: 12px 14px;
	border-radius: 8px;
	font-size: 14px;
	display: none;
}
.lp-form-msg.success {
	display: block;
	background: rgba(0,255,102,0.1);
	border: 1px solid rgba(0,255,102,0.4);
	color: #7FFFA3;
}
.lp-form-msg.error {
	display: block;
	background: rgba(255,77,77,0.1);
	border: 1px solid rgba(255,77,77,0.4);
	color: #FF8A8A;
}
.lp-form-alt {
	text-align: center;
	margin-top: 20px;
	color: var(--lp-text-mute);
	font-size: 13px;
}
.lp-form-alt a {
	color: var(--lp-gold);
	font-weight: 700;
	text-decoration: none;
	font-size: 18px;
}

/* Right side of form section */
.lp-form-side h2 { margin-bottom: 16px; }
.lp-form-side .lp-guarantees {
	list-style: none;
	padding: 0;
	margin: 24px 0 0;
}
.lp-form-side .lp-guarantees li {
	display: flex;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid var(--lp-border);
}
.lp-form-side .lp-guarantees li:last-child { border-bottom: none; }
.lp-form-side .lp-guarantees i {
	color: var(--lp-gold);
	font-size: 20px;
	margin-top: 2px;
	flex-shrink: 0;
}
.lp-form-side .lp-guarantees strong {
	color: #FFFFFF;
	font-size: 15px;
	display: block;
	margin-bottom: 2px;
}
.lp-form-side .lp-guarantees span {
	color: var(--lp-text-mute);
	font-size: 13px;
	line-height: 1.5;
}

/* ==========================================================================
   Final CTA strip
   ========================================================================== */
.lp-final-cta {
	background: linear-gradient(135deg, #0E0E10 0%, #1C1C20 100%);
	border-top: 1px solid var(--lp-border);
	border-bottom: 1px solid var(--lp-border);
	padding: 70px 20px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.lp-final-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(600px 200px at 50% 100%, rgba(200,164,90,0.18), transparent),
		radial-gradient(400px 160px at 20% 0%, rgba(0,255,102,0.08), transparent);
	pointer-events: none;
}
.lp-final-cta h2 {
	font-size: clamp(28px, 3.8vw, 40px);
	font-weight: 800;
	color: #FFFFFF;
	margin: 0 0 14px;
	position: relative;
	z-index: 2;
}
.lp-final-cta p {
	font-size: 17px;
	color: var(--lp-text-mute);
	max-width: 600px;
	margin: 0 auto 28px;
	position: relative;
	z-index: 2;
}
.lp-final-cta .lp-hero-cta-row {
	justify-content: center;
	position: relative;
	z-index: 2;
}

/* ==========================================================================
   Sticky mobile CTA bar
   ========================================================================== */
.lp-sticky-cta {
	display: none;
	position: fixed;
	bottom: 0; left: 0; right: 0;
	background: #0E0E10;
	border-top: 1px solid var(--lp-gold);
	padding: 10px 12px;
	z-index: 9999;
	gap: 10px;
	box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}
.lp-sticky-cta a {
	flex: 1;
	padding: 14px 10px;
	text-align: center;
	border-radius: 8px;
	font-weight: 700;
	text-decoration: none;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.4px;
}
.lp-sticky-cta .lp-sticky-call {
	background: var(--lp-green);
	color: #001a07;
}
.lp-sticky-cta .lp-sticky-quote {
	background: var(--lp-gold);
	color: #0E0E10;
}
@media (max-width: 820px) {
	.lp-sticky-cta { display: flex; }
	.ms-landing { padding-bottom: 70px; }
}

/* ==========================================================================
   Scroll reveal / fade-in animations
   ========================================================================== */
.lp-reveal {
	opacity: 0;
	transform: translateY(34px);
	transition: opacity .9s var(--lp-ease), transform .9s var(--lp-ease);
	will-change: opacity, transform;
}
.lp-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}
.lp-reveal-left { transform: translateX(-40px); }
.lp-reveal-right { transform: translateX(40px); }
.lp-reveal-left.is-visible, .lp-reveal-right.is-visible { transform: translateX(0); }

.lp-reveal[data-delay="1"] { transition-delay: 0.08s; }
.lp-reveal[data-delay="2"] { transition-delay: 0.16s; }
.lp-reveal[data-delay="3"] { transition-delay: 0.24s; }
.lp-reveal[data-delay="4"] { transition-delay: 0.32s; }
.lp-reveal[data-delay="5"] { transition-delay: 0.40s; }
.lp-reveal[data-delay="6"] { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
	.lp-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
	.lp-btn--call { animation: none; }
}

/* ==========================================================================
   Minimal LP footer
   ========================================================================== */
.lp-footer {
	background: #07070A;
	border-top: 1px solid var(--lp-border);
	padding: 40px 20px 30px;
}
.lp-footer-inner {
	max-width: 1180px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.2fr 1fr 1.2fr;
	gap: 30px;
	align-items: center;
}
.lp-footer-brand {
	display: flex;
	align-items: center;
	gap: 14px;
	color: #FFFFFF;
}
.lp-footer-brand strong { font-size: 15px; display: block; }
.lp-footer-tag { font-size: 11px; color: var(--lp-text-mute); }
.lp-footer-contact {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 14px;
}
.lp-footer-phone, .lp-footer-email {
	color: #FFFFFF;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.lp-footer-phone { color: var(--lp-gold); font-weight: 700; font-size: 16px; }
.lp-footer-phone i, .lp-footer-email i { color: var(--lp-gold); width: 16px; }
.lp-footer-legal {
	text-align: right;
	font-size: 12px;
	color: var(--lp-text-mute);
	line-height: 1.7;
}
.lp-footer-links a {
	color: var(--lp-text-mute);
	text-decoration: none;
	transition: color .2s;
}
.lp-footer-links a:hover { color: var(--lp-gold); }
.lp-footer-license {
	margin-top: 6px;
	color: #8C8C94;
	font-size: 11px;
}
@media (max-width: 820px) {
	.lp-footer-inner { grid-template-columns: 1fr; text-align: center; }
	.lp-footer-brand { justify-content: center; }
	.lp-footer-contact { align-items: center; }
	.lp-footer-legal { text-align: center; }
}
