/*
 * LodgeVision Commercial LED Video Walls landing page.
 * Scoped to .lv-led-page so the page can coexist with Elementor content.
 */

:root {
	--lv-led-ink: #0b1e2d;
	--lv-led-navy: #10243d;
	--lv-led-navy-light: #17385b;
	--lv-led-orange: #f4611f;
	--lv-led-orange-dark: #c9470d;
	--lv-led-cream: #fff7f0;
	--lv-led-sand: #f3ede6;
	--lv-led-line: #dfe6ed;
	--lv-led-muted: #64748b;
	--lv-led-shadow: 0 24px 70px rgba(11, 30, 45, 0.15);
}

.lv-led-page,
.lv-led-page * {
	box-sizing: border-box;
}

.lv-led-page {
	background: #ffffff;
	color: var(--lv-led-ink);
	overflow: hidden;
}

/* Hello Elementor caps non-Elementor pages at 1,140px. Let this landing
 * page own the full viewport so its hero and section backgrounds are edge to
 * edge; the inner .lv-led-shell remains intentionally readable. */
main#primary.site-main.lv-led-page {
	width: 100%;
	max-width: none;
	margin-right: 0;
	margin-left: 0;
	padding-right: 0;
	padding-left: 0;
}

.lv-led-page img {
	display: block;
	max-width: 100%;
}

.lv-led-shell {
	width: min(1180px, calc(100% - 48px));
	margin: 0 auto;
}

.lv-led-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 18px;
	color: var(--lv-led-orange);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	line-height: 1.2;
	text-transform: uppercase;
}

.lv-led-eyebrow::before {
	width: 28px;
	height: 2px;
	background: currentColor;
	content: '';
}

.lv-led-hero {
	position: relative;
	min-height: 720px;
	background: var(--lv-led-navy);
	isolation: isolate;
}

.lv-led-hero__media,
.lv-led-hero__media::after {
	position: absolute;
	inset: 0;
}

.lv-led-hero__media {
	z-index: -2;
}

.lv-led-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.lv-led-hero__media::after {
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(7, 20, 33, 0.94) 0%, rgba(7, 20, 33, 0.76) 38%, rgba(7, 20, 33, 0.15) 76%, rgba(7, 20, 33, 0.28) 100%),
		linear-gradient(0deg, rgba(7, 20, 33, 0.48), transparent 45%);
	content: '';
}

.lv-led-hero__content {
	display: flex;
	align-items: center;
	min-height: 720px;
	padding: 96px 0 84px;
}

.lv-led-hero__copy {
	width: min(650px, 100%);
	color: #ffffff;
}

.lv-led-hero h1 {
	max-width: 700px;
	margin: 0;
	color: #ffffff;
	font-size: clamp(2.8rem, 6vw, 5.5rem);
	font-weight: 800;
	letter-spacing: -0.055em;
	line-height: 0.98;
}

.lv-led-hero h1 em {
	color: #ff9a62;
	font-style: normal;
}

.lv-led-hero__lede {
	max-width: 610px;
	margin: 28px 0 0;
	color: #d8e4f0;
	font-size: clamp(1.05rem, 1.8vw, 1.28rem);
	line-height: 1.65;
}

.lv-led-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.lv-led-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 23px;
	border: 1px solid transparent;
	border-radius: 3px;
	font-size: 0.86rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.lv-led-button:hover {
	transform: translateY(-2px);
}

.lv-led-button--orange {
	background: var(--lv-led-orange);
	box-shadow: 0 12px 28px rgba(244, 97, 31, 0.25);
	color: #ffffff;
}

.lv-led-button--orange:hover {
	background: var(--lv-led-orange-dark);
	color: #ffffff;
}

.lv-led-button--outline {
	border-color: rgba(255, 255, 255, 0.42);
	color: #ffffff;
}

.lv-led-button--outline:hover {
	border-color: #ffffff;
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
}

.lv-led-button:focus-visible {
	outline: 3px solid #ffb18a;
	outline-offset: 3px;
}

.lv-led-hero__proof {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	max-width: 620px;
	margin-top: 70px;
	border-top: 1px solid rgba(255, 255, 255, 0.28);
	border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.lv-led-hero__proof div {
	padding: 18px 20px 18px 0;
}

.lv-led-hero__proof strong,
.lv-led-hero__proof span {
	display: block;
}

.lv-led-hero__proof strong {
	color: #ffffff;
	font-size: 1.35rem;
	font-weight: 800;
}

.lv-led-hero__proof span {
	margin-top: 4px;
	color: #b9c9d9;
	font-size: 0.77rem;
	line-height: 1.35;
}

.lv-led-section {
	padding: 112px 0;
}

.lv-led-section--cream {
	background: var(--lv-led-cream);
}

.lv-led-section--sand {
	background: var(--lv-led-sand);
}

.lv-led-section--navy {
	background: var(--lv-led-navy);
	color: #ffffff;
}

.lv-led-section__intro {
	max-width: 780px;
	margin-bottom: 48px;
}

.lv-led-section__intro--center {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.lv-led-section h2 {
	margin: 0;
	color: var(--lv-led-ink);
	font-size: clamp(2rem, 4vw, 3.45rem);
	font-weight: 800;
	letter-spacing: -0.045em;
	line-height: 1.04;
}

.lv-led-section--navy h2 {
	color: #ffffff;
}

.lv-led-section__intro p,
.lv-led-copy p {
	margin: 18px 0 0;
	color: var(--lv-led-muted);
	font-size: 1.08rem;
	line-height: 1.75;
}

.lv-led-section--navy .lv-led-section__intro p,
.lv-led-section--navy .lv-led-copy p {
	color: #c8d7e6;
}

.lv-led-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(42px, 7vw, 92px);
	align-items: center;
}

.lv-led-split--reverse .lv-led-split__media {
	order: -1;
}

.lv-led-split__media {
	position: relative;
}

.lv-led-split > .lv-led-inline-cta {
	grid-column: 1 / -1;
	width: 100%;
}

.lv-led-split__media img {
	width: 100%;
	border-radius: 4px;
	box-shadow: var(--lv-led-shadow);
}

.lv-led-split__media::before {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 120px;
	height: 120px;
	border-top: 3px solid var(--lv-led-orange);
	border-right: 3px solid var(--lv-led-orange);
	content: '';
	z-index: -1;
}

.lv-led-split__media::after {
	position: absolute;
	bottom: -18px;
	left: -18px;
	width: 120px;
	height: 120px;
	border-bottom: 3px solid var(--lv-led-orange);
	border-left: 3px solid var(--lv-led-orange);
	content: '';
	z-index: -1;
}

.lv-led-card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.lv-led-card {
	padding: 30px 28px;
	border: 1px solid var(--lv-led-line);
	border-radius: 4px;
	background: #ffffff;
	box-shadow: 0 10px 28px rgba(11, 30, 45, 0.04);
}

.lv-led-card__icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	margin-bottom: 22px;
	border-radius: 50%;
	background: #fff0e8;
	color: var(--lv-led-orange);
	font-size: 1.25rem;
	font-weight: 800;
}

.lv-led-card h3 {
	margin: 0;
	color: var(--lv-led-ink);
	font-size: 1.2rem;
	font-weight: 800;
	line-height: 1.2;
}

.lv-led-card p {
	margin: 12px 0 0;
	color: var(--lv-led-muted);
	font-size: 0.96rem;
	line-height: 1.7;
}

.lv-led-inline-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin-top: 40px;
	padding: 24px 28px;
	border: 1px solid var(--lv-led-line);
	border-left: 4px solid var(--lv-led-orange);
	border-radius: 4px;
	background: #ffffff;
	box-shadow: 0 10px 28px rgba(11, 30, 45, 0.05);
}

.lv-led-inline-cta > div:first-child {
	min-width: 0;
}

.lv-led-inline-cta .lv-led-eyebrow {
	margin-bottom: 9px;
}

.lv-led-inline-cta h3 {
	margin: 0;
	color: var(--lv-led-ink);
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.lv-led-inline-cta p:not(.lv-led-eyebrow) {
	max-width: 680px;
	margin: 8px 0 0;
	color: var(--lv-led-muted);
	font-size: 0.94rem;
	line-height: 1.55;
}

.lv-led-inline-cta .lv-led-actions {
	flex: 0 0 auto;
	margin-top: 0;
}

.lv-led-list-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 60px;
	margin-top: 32px;
}

.lv-led-check-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.lv-led-check-list li {
	display: flex;
	gap: 13px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
	color: #d8e4ef;
	font-size: 1rem;
	line-height: 1.5;
}

.lv-led-check-list li::before {
	content: '✓';
	color: #ff9a62;
	font-weight: 900;
}

.lv-led-stat-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	margin-top: 60px;
	background: rgba(255, 255, 255, 0.17);
}

.lv-led-stat {
	padding: 24px 20px;
	background: var(--lv-led-navy);
}

.lv-led-stat strong,
.lv-led-stat span {
	display: block;
}

.lv-led-stat strong {
	color: #ffffff;
	font-size: 1.35rem;
	font-weight: 800;
}

.lv-led-stat span {
	margin-top: 6px;
	color: #aebfd1;
	font-size: 0.8rem;
	line-height: 1.35;
}

.lv-led-spec-table {
	width: 100%;
	margin-top: 30px;
	border-collapse: collapse;
	font-size: 0.93rem;
}

.lv-led-spec-table th,
.lv-led-spec-table td {
	padding: 14px 16px;
	border-bottom: 1px solid var(--lv-led-line);
	text-align: left;
	vertical-align: top;
}

.lv-led-spec-table th {
	width: 44%;
	color: var(--lv-led-ink);
	font-weight: 800;
}

.lv-led-spec-table td {
	color: var(--lv-led-muted);
}

.lv-led-product-card {
	overflow: hidden;
	border: 1px solid var(--lv-led-line);
	border-radius: 4px;
	background: #ffffff;
}

.lv-led-product-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.lv-led-product-card__body {
	padding: 25px;
}

.lv-led-product-card h3 {
	margin: 0;
	color: var(--lv-led-ink);
	font-size: 1.18rem;
	font-weight: 800;
}

.lv-led-product-card p {
	margin: 10px 0 0;
	color: var(--lv-led-muted);
	font-size: 0.93rem;
	line-height: 1.6;
}

.lv-led-product-card a {
	display: inline-flex;
	margin-top: 18px;
	color: var(--lv-led-orange-dark);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.lv-led-compare {
	overflow: hidden;
	margin-top: 42px;
	border: 1px solid var(--lv-led-line);
	border-radius: 4px;
}

.lv-led-compare table {
	width: 100%;
	border-collapse: collapse;
}

.lv-led-compare th,
.lv-led-compare td {
	padding: 16px 20px;
	border-bottom: 1px solid var(--lv-led-line);
	font-size: 0.94rem;
	text-align: left;
}

.lv-led-compare tr:last-child td {
	border-bottom: 0;
}

.lv-led-compare th:first-child,
.lv-led-compare td:first-child {
	background: #f7f8fa;
	color: var(--lv-led-muted);
}

.lv-led-compare th:last-child,
.lv-led-compare td:last-child {
	background: var(--lv-led-navy);
	color: #ffffff;
}

.lv-led-compare th {
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.lv-led-compare td:last-child::before {
	margin-right: 9px;
	color: #ff9a62;
	content: '✓';
	font-weight: 900;
}

.lv-led-source-note {
	margin-top: 28px;
	color: var(--lv-led-muted);
	font-size: 0.78rem;
	line-height: 1.65;
}

.lv-led-source-note a {
	color: var(--lv-led-orange-dark);
	font-weight: 700;
}

.lv-led-cta {
	position: relative;
	overflow: hidden;
	background: var(--lv-led-orange);
	color: #ffffff;
	text-align: center;
}

.lv-led-cta::after {
	position: absolute;
	top: -180px;
	right: -100px;
	width: 440px;
	height: 440px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 50%;
	box-shadow: 0 0 0 38px rgba(255, 255, 255, 0.06), 0 0 0 78px rgba(255, 255, 255, 0.04);
	content: '';
}

.lv-led-cta .lv-led-shell {
	position: relative;
	z-index: 1;
}

.lv-led-cta h2 {
	color: #ffffff;
}

.lv-led-cta p {
	max-width: 650px;
	margin: 20px auto 0;
	color: #fff4eb;
	font-size: 1.1rem;
	line-height: 1.7;
}

.lv-led-cta .lv-led-button--outline {
	border-color: rgba(255, 255, 255, 0.72);
}

.lv-led-cta .lv-led-button--outline:hover {
	background: #ffffff;
	color: var(--lv-led-orange-dark);
}

.lv-led-figure-caption {
	margin-top: 11px;
	color: var(--lv-led-muted);
	font-size: 0.75rem;
	line-height: 1.5;
}

@media (max-width: 900px) {
	.lv-led-hero,
	.lv-led-hero__content {
		min-height: 650px;
	}

	.lv-led-hero__media::after {
		background: linear-gradient(90deg, rgba(7, 20, 33, 0.9), rgba(7, 20, 33, 0.48));
	}

	.lv-led-card-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.lv-led-stat-row {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 720px) {
	.lv-led-shell {
		width: min(100% - 34px, 1180px);
	}

	.lv-led-hero,
	.lv-led-hero__content {
		min-height: 700px;
	}

	.lv-led-hero__content {
		padding: 76px 0 62px;
	}

	.lv-led-hero h1 {
		font-size: clamp(2.65rem, 14vw, 4.6rem);
	}

	.lv-led-hero__proof {
		margin-top: 48px;
	}

	.lv-led-hero__proof div {
		padding-right: 12px;
	}

	.lv-led-hero__proof strong {
		font-size: 1.05rem;
	}

	.lv-led-hero__proof span {
		font-size: 0.7rem;
	}

	.lv-led-section {
		padding: 76px 0;
	}

	.lv-led-split,
	.lv-led-list-grid {
		grid-template-columns: 1fr;
	}

	.lv-led-split--reverse .lv-led-split__media {
		order: initial;
	}

	.lv-led-split__media::before,
	.lv-led-split__media::after {
		display: none;
	}

	.lv-led-card-grid {
		grid-template-columns: 1fr;
	}

	.lv-led-compare {
		overflow-x: auto;
	}

	.lv-led-compare table {
		min-width: 620px;
	}

	.lv-led-stat-row {
		margin-top: 42px;
	}

	.lv-led-inline-cta {
		align-items: flex-start;
		flex-direction: column;
		gap: 20px;
	}

	.lv-led-inline-cta .lv-led-actions {
		width: 100%;
	}
}

@media (max-width: 460px) {
	.lv-led-actions,
	.lv-led-button {
		width: 100%;
	}

	.lv-led-hero__proof {
		grid-template-columns: 1fr;
	}

	.lv-led-hero__proof div {
		padding: 13px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.18);
	}

	.lv-led-hero__proof div:last-child {
		border-bottom: 0;
	}

	.lv-led-stat-row {
		grid-template-columns: 1fr;
	}
}
