/* Xnet Landing Pages — scoped to body.xnet-landing.
   Brand colours come from Avada's palette vars (red = color4, navy = color5);
   fonts inherit Avada's global h/body typography, so Theme Options changes
   flow through. The cream tones are design-local (no Avada palette slot). */

body.xnet-landing {
	--xlp-red: var(--awb-color4, #c13b3b);
	--xlp-red-dark: #a83030;
	--xlp-navy: var(--awb-color5, #0e172c);
	--xlp-cream: #faf5ee;
	--xlp-border: #efe7da;
	--xlp-ink: #23232a;
	--xlp-body: #55555c;
	--xlp-muted: #6b6b70;
	--xlp-on-dark: #b9c2cc;
}

/* Neutralise Avada's content container; the sections manage their own width.
   Header and footer are untouched. */
body.xnet-landing #main {
	padding: 0 !important;
	background: #fff;
}
body.xnet-landing #main .fusion-row {
	max-width: none;
	width: 100%;
}
body.xnet-landing #content {
	width: 100% !important;
	margin: 0;
	padding: 0;
	float: none;
}

.xlp {
	display: block;
	color: var(--xlp-body);
	padding-bottom: 80px;
}
.xlp h1,
.xlp h2,
.xlp h3 {
	color: var(--xlp-ink);
	margin: 0;
}
.xlp a {
	color: var(--xlp-red);
	text-decoration: none;
	transition: color .15s ease;
}
.xlp a:hover {
	color: var(--xlp-red-dark);
}

/* ---------- hero ---------- */
.xlp-hero {
	background: var(--xlp-cream);
	text-align: center;
	padding: 64px 40px 140px;
}
.xlp-hero-no-image {
	padding-bottom: 72px;
}
.xlp-badge {
	display: inline-block;
	background: var(--xlp-red);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 7px 16px;
	border-radius: 100px;
	margin: 0 0 20px;
}
.xlp-hero h1 {
	max-width: 760px;
	margin: 0 auto;
	font-size: 46px;
	line-height: 1.2;
	font-weight: 600;
}
.xlp-meta {
	max-width: 640px;
	margin: 22px auto 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--xlp-muted);
}

/* ---------- featured image ---------- */
.xlp-featured {
	max-width: 1000px;
	margin: -100px auto 0;
	padding: 0 40px;
}
.xlp-featured img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 21 / 9;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 20px 50px rgba(35, 35, 42, .12);
}

/* ---------- intro + quick answer ---------- */
.xlp-intro {
	max-width: 760px;
	margin: 56px auto 0;
	padding: 0 40px;
}
.xlp-lead {
	margin: 0;
	font-size: 20px;
	line-height: 1.65;
	color: #3a3a40;
}
.xlp-qa {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	background: var(--xlp-cream);
	border: 1px solid var(--xlp-border);
	border-radius: 10px;
	padding: 24px 28px;
	margin-top: 28px;
}
.xlp-qa-icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--xlp-red);
	display: flex;
	align-items: center;
	justify-content: center;
}
.xlp-eyebrow {
	margin: 0 0 6px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--xlp-red);
}
.xlp-qa p {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
}

/* ---------- article + sidebar ---------- */
.xlp-columns {
	max-width: 1140px;
	margin: 64px auto 0;
	padding: 0 40px;
	display: flex;
	gap: 64px;
	align-items: flex-start;
}
.xlp-no-sidebar .xlp-article {
	max-width: 760px;
	margin: 0 auto;
}
.xlp-article {
	flex: 1;
	min-width: 0;
}
.xlp-section h2 {
	margin: 64px 0 24px;
	font-size: 28px;
	font-weight: 600;
}
.xlp-section:first-child h2 {
	margin-top: 0;
}
.xlp-section-intro {
	margin: -12px 0 36px;
	font-size: 15px;
	line-height: 1.7;
	color: var(--xlp-muted);
}

/* steps */
.xlp-steps {
	list-style: none;
	counter-reset: xlp-step;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.xlp-steps li {
	counter-increment: xlp-step;
	display: flex;
	gap: 22px;
	margin: 0;
}
.xlp-steps li::before {
	content: counter(xlp-step);
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--xlp-red);
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.xlp-steps h3 {
	margin: 2px 0 8px;
	font-size: 18px;
	font-weight: 600;
}
.xlp-steps p {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
}

/* what not to do */
.xlp-nots {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.xlp-not {
	border: 1px solid var(--xlp-border);
	border-radius: 10px;
	padding: 20px 22px;
}
.xlp-not h3 {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 600;
}
.xlp-not-icon {
	display: inline-flex;
	color: var(--xlp-red);
}
.xlp-not p {
	margin: 0;
	font-size: 14px;
	line-height: 1.65;
}

/* rug types */
.xlp-types {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.xlp-type {
	display: flex;
	gap: 20px;
	background: var(--xlp-cream);
	border-radius: 10px;
	padding: 20px 24px;
}
.xlp-type h3 {
	flex-shrink: 0;
	width: 120px;
	font-size: 15px;
	font-weight: 600;
	padding-top: 1px;
}
.xlp-type p {
	margin: 0;
	font-size: 14px;
	line-height: 1.65;
}

/* faq */
.xlp-faq {
	border-top: 1px solid var(--xlp-border);
}
.xlp-faq details {
	border-bottom: 1px solid var(--xlp-border);
}
.xlp-faq summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 18px 4px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	color: var(--xlp-ink);
	list-style: none;
	transition: color .15s ease;
}
.xlp-faq summary::-webkit-details-marker {
	display: none;
}
.xlp-faq summary:hover {
	color: var(--xlp-red);
}
.xlp-faq summary::after {
	content: "+";
	flex-shrink: 0;
	font-size: 20px;
	font-weight: 400;
	color: var(--xlp-red);
}
.xlp-faq details[open] summary::after {
	content: "–";
}
.xlp-faq details p {
	margin: 0;
	padding: 0 4px 20px;
	max-width: 640px;
	font-size: 14.5px;
	line-height: 1.7;
}

/* sidebar */
.xlp-sidebar {
	width: 320px;
	flex-shrink: 0;
	position: sticky;
	top: 110px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.xlp-card {
	border: 1px solid var(--xlp-border);
	border-radius: 10px;
	padding: 24px 26px;
}
.xlp-card h3 {
	margin: 0 0 14px;
	font-size: 16px;
	font-weight: 600;
}
.xlp-checklist,
.xlp-related {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 11px;
}
.xlp-checklist li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 14px;
}
.xlp-check-icon {
	display: inline-flex;
	flex-shrink: 0;
	margin-top: 2px;
	color: var(--xlp-red);
}
.xlp-related li {
	font-size: 14px;
}
.xlp-card-dark {
	background: var(--xlp-navy);
	border: 0;
	color: var(--xlp-on-dark);
}
.xlp-card-dark h3 {
	color: #fff;
	margin-bottom: 10px;
}
.xlp-card-dark p {
	margin: 0 0 18px;
	font-size: 13.5px;
	line-height: 1.65;
}
.xlp-phone {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 18px;
	font-weight: 600;
	color: #fff !important;
}
.xlp-phone-icon {
	display: inline-flex;
	color: var(--xlp-red);
}

/* ---------- closing CTA ---------- */
.xlp-cta {
	max-width: 1140px;
	margin: 80px auto 0;
	padding: 0 40px;
}
.xlp-cta-panel {
	background: var(--xlp-navy);
	border-radius: 14px;
	padding: 56px 64px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}
.xlp-cta-panel h2 {
	margin: 0 0 10px;
	font-size: 28px;
	font-weight: 600;
	color: #fff;
}
.xlp-cta-panel p {
	margin: 0;
	font-size: 15px;
	line-height: 1.65;
	color: var(--xlp-on-dark);
	max-width: 560px;
}
.xlp-btn {
	flex-shrink: 0;
	display: inline-block;
	background: var(--xlp-red);
	color: #fff !important;
	font-size: 15px;
	font-weight: 600;
	padding: 15px 32px;
	border-radius: 6px;
	transition: background .15s ease;
}
.xlp-btn:hover {
	background: var(--xlp-red-dark);
}

/* ---------- /landing/ listing ---------- */
.xlp-listing {
	max-width: 1140px;
	margin: 64px auto 0;
	padding: 0 40px;
}
.xlp-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}
.xlp-card-link {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--xlp-border);
	border-radius: 12px;
	overflow: hidden;
	color: inherit !important;
	transition: box-shadow .15s ease, transform .15s ease;
}
.xlp-card-link:hover {
	box-shadow: 0 14px 36px rgba(35, 35, 42, .12);
	transform: translateY(-2px);
}
.xlp-card-media img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 21 / 9;
	object-fit: cover;
}
.xlp-card-body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 24px 26px 26px;
}
.xlp-card-body h2 {
	font-size: 20px;
	line-height: 1.35;
	font-weight: 600;
	margin: 0;
}
.xlp-card-meta {
	font-size: 13px;
	color: var(--xlp-muted);
}
.xlp-card-lead {
	font-size: 14.5px;
	line-height: 1.65;
}
.xlp-card-more {
	margin-top: 4px;
	font-size: 14px;
	font-weight: 600;
	color: var(--xlp-red);
}
.xlp-empty {
	text-align: center;
	font-size: 16px;
	color: var(--xlp-muted);
}
.xlp-pagination {
	margin-top: 48px;
	text-align: center;
}

/* ---------- responsive ---------- */
@media ( max-width: 1000px ) {
	.xlp-columns {
		display: block;
	}
	.xlp-sidebar {
		position: static;
		width: auto;
		margin-top: 56px;
	}
	.xlp-grid {
		grid-template-columns: 1fr;
	}
}
@media ( max-width: 760px ) {
	.xlp-hero {
		padding: 48px 20px 110px;
	}
	.xlp-hero-no-image {
		padding-bottom: 56px;
	}
	.xlp-hero h1 {
		font-size: 32px;
	}
	.xlp-featured {
		margin-top: -70px;
		padding: 0 20px;
	}
	.xlp-intro,
	.xlp-columns,
	.xlp-cta,
	.xlp-listing {
		padding: 0 20px;
	}
	.xlp-lead {
		font-size: 18px;
	}
	.xlp-section h2 {
		font-size: 24px;
		margin-top: 48px;
	}
	.xlp-nots {
		grid-template-columns: 1fr;
	}
	.xlp-type {
		flex-direction: column;
		gap: 8px;
	}
	.xlp-type h3 {
		width: auto;
	}
	.xlp-qa {
		padding: 20px;
	}
	.xlp-cta-panel {
		flex-direction: column;
		align-items: flex-start;
		padding: 36px 28px;
	}
}
