/* ========================================
   HOMEPAGE SECTION DESIGNS
   Landing page focused with bold visuals
   ======================================== */

/* Intro Cover - Hero-style intro with dramatic typography */
#intro-cover {
	background: linear-gradient(135deg, rgba(28, 32, 50, 0.95) 0%, rgba(45, 52, 75, 0.9) 100%);
	padding: 8em 0 7em 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

#intro-cover::before {
	content: '';
	position: absolute;
	top: -30%;
	right: -10%;
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, rgba(43, 180, 255, 0.2) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	animation: float 8s ease-in-out infinite;
}

#intro-cover::after {
	content: '';
	position: absolute;
	bottom: -20%;
	left: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(123, 97, 255, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
	0%, 100% {
		transform: translate(0, 0) scale(1);
	}
	50% {
		transform: translate(20px, 20px) scale(1.1);
	}
}

#intro-cover .inner {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 2em;
	position: relative;
	z-index: 1;
}

#intro-cover h2.major {
	font-size: 2.5em;
	margin-bottom: 0.5em;
	border-bottom: none;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

#intro-cover p {
	font-size: 1.4em;
	line-height: 1.7;
	opacity: 0.95;
	font-weight: 300;
	max-width: 700px;
	margin: 0 auto;
}

/* Home Intro Container */
.home-intro {
	background: transparent;
	padding: 0;
	margin: 0;
}

.home-intro > .inner {
	width: 100% !important;
	max-width: none !important;
	padding: 0 !important;
}

.intro-grid {
	display: grid;
	gap: 0;
}

.intro-main {
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* Content Section Base - Full-width landing page blocks */
.content-section {
	padding: 6em 0;
	position: relative;
	margin: 0;
	width: 100%;
	box-sizing: border-box;
}

.content-section .inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 3em;
	position: relative;
	z-index: 1;
	box-sizing: border-box;
	width: 100%;
}

.content-section h3 {
	font-size: 2.2em;
	margin-bottom: 1.5em;
	color: #fff;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.15;
}

.content-section p {
	margin-bottom: 2em;
	line-height: 1.9;
	opacity: 0.95;
	font-size: 1.15em;
}

/* Section 1: Node Rail - Feature showcase with dramatic layout */
.section-node-rail {
	background:
		linear-gradient(135deg, rgba(15, 20, 35, 0.95) 0%, rgba(25, 30, 45, 0.9) 100%);
	position: relative;
	overflow: hidden;
	border-top: 1px solid rgba(43, 180, 255, 0.1);
	border-bottom: 1px solid rgba(43, 180, 255, 0.1);
}

.section-node-rail::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at 20% 50%, rgba(43, 180, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 50%, rgba(123, 97, 255, 0.08) 0%, transparent 50%);
	pointer-events: none;
}

.node-rail {
	position: absolute;
	left: 2em;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 2em;
	z-index: 2;
}

.node {
	width: 16px;
	height: 16px;
	background: rgba(43, 180, 255, 0.9);
	border-radius: 50%;
	box-shadow: 0 0 25px rgba(43, 180, 255, 0.8),
	            0 0 50px rgba(43, 180, 255, 0.4);
	animation: pulse 2.5s ease-in-out infinite;
	position: relative;
}

.node::after {
	content: '';
	position: absolute;
	width: 30px;
	height: 30px;
	border: 2px solid rgba(43, 180, 255, 0.4);
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: ripple 2.5s ease-out infinite;
}

.node-wifi {
	background: rgba(43, 180, 255, 0.95);
	box-shadow: 0 0 25px rgba(43, 180, 255, 0.9),
	            0 0 50px rgba(43, 180, 255, 0.5);
	animation-delay: 0s;
}

.node-zigbee {
	background: rgba(123, 97, 255, 0.95);
	box-shadow: 0 0 25px rgba(123, 97, 255, 0.9),
	            0 0 50px rgba(123, 97, 255, 0.5);
	animation-delay: 0.6s;
}

.node-zigbee::after {
	border-color: rgba(123, 97, 255, 0.4);
}

.node-zwave {
	background: rgba(255, 107, 107, 0.95);
	box-shadow: 0 0 25px rgba(255, 107, 107, 0.9),
	            0 0 50px rgba(255, 107, 107, 0.5);
	animation-delay: 1.2s;
}

.node-zwave::after {
	border-color: rgba(255, 107, 107, 0.4);
}

.node-matter {
	background: rgba(72, 219, 142, 0.95);
	box-shadow: 0 0 25px rgba(72, 219, 142, 0.9),
	            0 0 50px rgba(72, 219, 142, 0.5);
	animation-delay: 1.8s;
}

.node-matter::after {
	border-color: rgba(72, 219, 142, 0.4);
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.3);
		opacity: 0.7;
	}
}

@keyframes ripple {
	0% {
		transform: translate(-50%, -50%) scale(0.5);
		opacity: 0.8;
	}
	100% {
		transform: translate(-50%, -50%) scale(2.5);
		opacity: 0;
	}
}

/* WMHS Layout - Single column with centered SVG */
.wmhs-layout {
	display: flex;
	flex-direction: column;
	gap: 3em;
	margin-top: 2em;
	width: 100%;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

.wmhs-svg {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2em;
	background: rgba(43, 180, 255, 0.05);
	border-radius: 20px;
	border: 1px solid rgba(43, 180, 255, 0.1);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	box-sizing: border-box;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}

.wmhs-svg svg {
	max-width: 100%;
	height: auto;
	filter: drop-shadow(0 8px 20px rgba(43, 180, 255, 0.25));
}

.wmhs-cols {
	width: 100%;
}

.wmhs-cols p {
	margin-bottom: 2em;
	font-size: 1.05em;
}

/* Section 2: Device Cards - Icon-featured alternating layout */
.section-band-devices {
	background: #0f1419;
	position: relative;
	overflow: hidden;
}

.section-band-devices::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-image:
		radial-gradient(circle at 15% 20%, rgba(123, 97, 255, 0.08) 0%, transparent 25%),
		radial-gradient(circle at 85% 80%, rgba(43, 180, 255, 0.08) 0%, transparent 25%);
	pointer-events: none;
}

.section-band-devices .inner {
	position: relative;
	z-index: 1;
}

.section-band-devices h3 {
	text-align: center;
	margin-bottom: 3em;
	font-size: 2.5em;
}

.device-grid {
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
}

.section-band-devices p {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 3em;
	align-items: center;
	padding: 3.5em 4em;
	margin-bottom: 0;
	background: linear-gradient(135deg, rgba(20, 25, 35, 0.6) 0%, rgba(25, 30, 40, 0.8) 100%);
	border-left: 3px solid transparent;
	border-right: 3px solid transparent;
	position: relative;
	transition: all 0.4s ease;
}

.section-band-devices p::before {
	content: '';
	width: 120px;
	height: 120px;
	background: linear-gradient(135deg, rgba(43, 180, 255, 0.15) 0%, rgba(123, 97, 255, 0.15) 100%);
	border-radius: 50%;
	position: relative;
	border: 3px solid rgba(43, 180, 255, 0.4);
	box-shadow:
		0 0 40px rgba(43, 180, 255, 0.3),
		inset 0 0 30px rgba(43, 180, 255, 0.1);
	transition: all 0.4s ease;
}

.section-band-devices p:nth-of-type(1)::before {
	background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 152, 0, 0.15) 100%);
	border-color: rgba(255, 193, 7, 0.5);
	box-shadow:
		0 0 40px rgba(255, 193, 7, 0.3),
		inset 0 0 30px rgba(255, 193, 7, 0.1);
}

.section-band-devices p:nth-of-type(2) {
	grid-template-columns: 1fr 140px;
}

.section-band-devices p:nth-of-type(2)::before {
	background: linear-gradient(135deg, rgba(255, 87, 34, 0.15) 0%, rgba(244, 67, 54, 0.15) 100%);
	border-color: rgba(255, 87, 34, 0.5);
	box-shadow:
		0 0 40px rgba(255, 87, 34, 0.3),
		inset 0 0 30px rgba(255, 87, 34, 0.1);
	order: 2;
}

.section-band-devices p:nth-of-type(3)::before {
	background: linear-gradient(135deg, rgba(156, 39, 176, 0.15) 0%, rgba(123, 31, 162, 0.15) 100%);
	border-color: rgba(156, 39, 176, 0.5);
	box-shadow:
		0 0 40px rgba(156, 39, 176, 0.3),
		inset 0 0 30px rgba(156, 39, 176, 0.1);
}

.section-band-devices p:nth-of-type(4) {
	grid-template-columns: 1fr 140px;
}

.section-band-devices p:nth-of-type(4)::before {
	background: linear-gradient(135deg, rgba(0, 188, 212, 0.15) 0%, rgba(0, 172, 193, 0.15) 100%);
	border-color: rgba(0, 188, 212, 0.5);
	box-shadow:
		0 0 40px rgba(0, 188, 212, 0.3),
		inset 0 0 30px rgba(0, 188, 212, 0.1);
	order: 2;
}

.section-band-devices p:hover {
	background: linear-gradient(135deg, rgba(25, 30, 40, 0.8) 0%, rgba(30, 35, 45, 0.9) 100%);
	transform: translateX(10px);
}

.section-band-devices p:nth-of-type(even):hover {
	transform: translateX(-10px);
}

.section-band-devices p:hover::before {
	transform: scale(1.1) rotate(10deg);
	box-shadow:
		0 0 60px currentColor,
		inset 0 0 40px currentColor;
}

/* Section 3: Benefits - Large icon/number featured layout */
.section-aurora {
	background: linear-gradient(180deg, rgba(15, 20, 30, 1) 0%, rgba(20, 25, 35, 1) 100%);
	position: relative;
	overflow: hidden;
}

.section-aurora::before {
	content: '';
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(72, 219, 142, 0.15) 0%, transparent 70%);
	top: 10%;
	right: 5%;
	animation: float-subtle 15s ease-in-out infinite;
	pointer-events: none;
}

.section-aurora::after {
	content: '';
	position: absolute;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(123, 97, 255, 0.1) 0%, transparent 70%);
	bottom: 10%;
	left: 5%;
	animation: float-subtle 20s ease-in-out infinite reverse;
	pointer-events: none;
}

@keyframes float-subtle {
	0%, 100% {
		transform: translate(0, 0);
	}
	50% {
		transform: translate(30px, 30px);
	}
}

.section-aurora .inner {
	position: relative;
	z-index: 1;
}

.section-aurora h3 {
	text-align: center;
	margin-bottom: 3em;
	font-size: 2.5em;
}

/* Benefits grid - Large numbered cards */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2.5em;
	margin-top: 2em;
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.benefits-grid p {
	background: linear-gradient(135deg, rgba(25, 30, 40, 0.7) 0%, rgba(30, 35, 45, 0.9) 100%);
	padding: 0;
	border-radius: 20px;
	border: 2px solid rgba(72, 219, 142, 0.2);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
	margin-bottom: 0;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
	display: flex;
	flex-direction: column;
	counter-increment: benefit-counter;
}

.benefits-grid p::before {
	content: counter(benefit-counter, decimal-leading-zero);
	font-size: 6em;
	font-weight: 900;
	line-height: 1;
	opacity: 0.1;
	position: absolute;
	top: -0.1em;
	right: 0.2em;
	background: linear-gradient(135deg, rgba(72, 219, 142, 0.6) 0%, rgba(43, 180, 255, 0.6) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	pointer-events: none;
}

.benefits-grid p::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 6px;
	background: linear-gradient(90deg,
		rgba(72, 219, 142, 0.8) 0%,
		rgba(43, 180, 255, 0.8) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.benefits-grid p:nth-of-type(1)::after {
	background: linear-gradient(90deg, rgba(72, 219, 142, 0.9) 0%, rgba(56, 193, 114, 0.9) 100%);
}

.benefits-grid p:nth-of-type(2)::after {
	background: linear-gradient(90deg, rgba(43, 180, 255, 0.9) 0%, rgba(33, 150, 243, 0.9) 100%);
}

.benefits-grid p:nth-of-type(3)::after {
	background: linear-gradient(90deg, rgba(123, 97, 255, 0.9) 0%, rgba(103, 58, 183, 0.9) 100%);
}

.benefits-grid p:nth-of-type(4)::after {
	background: linear-gradient(90deg, rgba(255, 193, 7, 0.9) 0%, rgba(255, 152, 0, 0.9) 100%);
}

.benefits-grid p:hover {
	transform: translateY(-8px);
	border-color: rgba(72, 219, 142, 0.5);
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.benefits-grid p:hover::after {
	opacity: 1;
}

.benefits-grid {
	counter-reset: benefit-counter;
}

/* Text content styling inside benefit cards */
.section-aurora .benefits-grid p {
	padding: 3em 2.5em 2.5em 2.5em;
	font-size: 1.05em;
	line-height: 1.8;
}

/* Section 4: Connection types - Horizontal card layout */
.section-steps {
	background:
		linear-gradient(135deg, rgba(10, 15, 25, 1) 0%, rgba(15, 20, 30, 1) 50%, rgba(20, 25, 35, 1) 100%);
	position: relative;
	overflow: hidden;
	padding: 7em 0;
}

.section-steps::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 1200px;
	height: 1200px;
	background:
		radial-gradient(circle,
			rgba(43, 180, 255, 0.05) 0%,
			rgba(123, 97, 255, 0.05) 30%,
			transparent 70%);
	pointer-events: none;
	animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {
	0%, 100% {
		opacity: 0.5;
		transform: translate(-50%, -50%) scale(1);
	}
	50% {
		opacity: 0.8;
		transform: translate(-50%, -50%) scale(1.1);
	}
}

.section-steps .inner {
	position: relative;
	z-index: 1;
}

.section-steps h3 {
	margin-bottom: 3em;
	text-align: center;
	font-size: 2.5em;
}

.steps-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2em;
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
}

.section-steps p {
	background:
		linear-gradient(135deg,
			rgba(25, 35, 50, 0.8) 0%,
			rgba(20, 30, 45, 0.9) 100%);
	padding: 3em 2.5em;
	border-radius: 16px;
	border: 2px solid transparent;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
	position: relative;
	margin-bottom: 0;
	transition: all 0.4s ease;
	text-align: center;
}

.section-steps p::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(135deg,
		rgba(43, 180, 255, 0.5) 0%,
		rgba(123, 97, 255, 0.5) 100%);
	border-radius: 16px;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.section-steps p:nth-of-type(1)::before {
	background: linear-gradient(135deg, rgba(43, 180, 255, 0.6) 0%, rgba(33, 150, 243, 0.6) 100%);
}

.section-steps p:nth-of-type(2)::before {
	background: linear-gradient(135deg, rgba(123, 97, 255, 0.6) 0%, rgba(103, 58, 183, 0.6) 100%);
}

.section-steps p:nth-of-type(3)::before {
	background: linear-gradient(135deg, rgba(72, 219, 142, 0.6) 0%, rgba(56, 193, 114, 0.6) 100%);
}

.section-steps p::after {
	content: '';
	width: 80px;
	height: 80px;
	background:
		linear-gradient(135deg,
			rgba(43, 180, 255, 0.2) 0%,
			rgba(123, 97, 255, 0.2) 100%);
	border: 3px solid rgba(43, 180, 255, 0.5);
	border-radius: 50%;
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
	box-shadow:
		0 0 30px rgba(43, 180, 255, 0.4),
		inset 0 0 20px rgba(43, 180, 255, 0.2);
	transition: all 0.4s ease;
}

.section-steps p:nth-of-type(1)::after {
	background: linear-gradient(135deg, rgba(43, 180, 255, 0.25) 0%, rgba(33, 150, 243, 0.25) 100%);
	border-color: rgba(43, 180, 255, 0.6);
	box-shadow:
		0 0 30px rgba(43, 180, 255, 0.5),
		inset 0 0 20px rgba(43, 180, 255, 0.3);
}

.section-steps p:nth-of-type(2)::after {
	background: linear-gradient(135deg, rgba(123, 97, 255, 0.25) 0%, rgba(103, 58, 183, 0.25) 100%);
	border-color: rgba(123, 97, 255, 0.6);
	box-shadow:
		0 0 30px rgba(123, 97, 255, 0.5),
		inset 0 0 20px rgba(123, 97, 255, 0.3);
}

.section-steps p:nth-of-type(3)::after {
	background: linear-gradient(135deg, rgba(72, 219, 142, 0.25) 0%, rgba(56, 193, 114, 0.25) 100%);
	border-color: rgba(72, 219, 142, 0.6);
	box-shadow:
		0 0 30px rgba(72, 219, 142, 0.5),
		inset 0 0 20px rgba(72, 219, 142, 0.3);
}

.section-steps p:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.section-steps p:hover::before {
	opacity: 1;
}

.section-steps p:hover::after {
	transform: translateX(-50%) scale(1.15) rotate(10deg);
}

/* Section 5: Building Your Smart Home - Progressive roadmap */
.section-checklist {
	background:
		linear-gradient(to bottom,
			rgba(15, 20, 30, 1) 0%,
			rgba(20, 30, 25, 1) 50%,
			rgba(15, 25, 20, 1) 100%);
	position: relative;
	overflow: hidden;
}

.section-checklist::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 4px;
	height: 100%;
	background: linear-gradient(to bottom,
		transparent 0%,
		rgba(72, 219, 142, 0.3) 20%,
		rgba(72, 219, 142, 0.5) 50%,
		rgba(72, 219, 142, 0.3) 80%,
		transparent 100%);
	box-shadow: 0 0 20px rgba(72, 219, 142, 0.4);
	pointer-events: none;
}

.section-checklist .inner {
	position: relative;
	z-index: 1;
}

.section-checklist h3 {
	margin-bottom: 3em;
	text-align: center;
	font-size: 2.5em;
}

.checklist-container {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 3em;
	counter-reset: roadmap-counter;
}

.section-checklist p {
	position: relative;
	padding: 2.5em 3em;
	background:
		linear-gradient(135deg,
			rgba(25, 40, 35, 0.7) 0%,
			rgba(20, 35, 30, 0.85) 100%);
	border-radius: 16px;
	border: 2px solid rgba(72, 219, 142, 0.3);
	box-shadow:
		0 8px 30px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(72, 219, 142, 0.1);
	margin-bottom: 0;
	counter-increment: roadmap-counter;
	transition: all 0.4s ease;
}

.section-checklist p::before {
	content: counter(roadmap-counter);
	position: absolute;
	left: 50%;
	top: -30px;
	transform: translateX(-50%);
	width: 60px;
	height: 60px;
	background:
		linear-gradient(135deg,
			rgba(72, 219, 142, 0.9) 0%,
			rgba(56, 193, 114, 0.9) 100%);
	border-radius: 50%;
	border: 4px solid rgba(15, 20, 30, 1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 1.5em;
	color: #fff;
	box-shadow:
		0 0 30px rgba(72, 219, 142, 0.6),
		inset 0 2px 10px rgba(255, 255, 255, 0.2);
	z-index: 2;
	transition: all 0.4s ease;
}

.section-checklist p::after {
	content: '→';
	position: absolute;
	right: 2.5em;
	top: 50%;
	transform: translateY(-50%);
	font-size: 2em;
	color: rgba(72, 219, 142, 0.4);
	opacity: 0;
	transition: all 0.4s ease;
}

.section-checklist p:hover {
	transform: scale(1.02);
	border-color: rgba(72, 219, 142, 0.6);
	box-shadow:
		0 12px 40px rgba(0, 0, 0, 0.5),
		inset 0 1px 0 rgba(72, 219, 142, 0.2);
}

.section-checklist p:hover::before {
	transform: translateX(-50%) scale(1.15) rotate(360deg);
	box-shadow:
		0 0 40px rgba(72, 219, 142, 0.8),
		inset 0 2px 10px rgba(255, 255, 255, 0.3);
}

.section-checklist p:hover::after {
	opacity: 1;
	right: 2em;
}

/* Section 6: Challenges - Split panel info cards */
.section-warning {
	background:
		linear-gradient(135deg,
			rgba(25, 20, 15, 1) 0%,
			rgba(30, 25, 20, 1) 100%);
	position: relative;
	overflow: hidden;
}

.section-warning::before {
	content: '';
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 152, 0, 0.08) 0%, transparent 70%);
	top: -100px;
	right: -100px;
	pointer-events: none;
}

.section-warning::after {
	content: '';
	position: absolute;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 87, 34, 0.06) 0%, transparent 70%);
	bottom: -100px;
	left: -100px;
	pointer-events: none;
}

.section-warning .inner {
	position: relative;
	z-index: 1;
}

.section-warning h3 {
	color: rgba(255, 193, 7, 1);
	margin-bottom: 3em;
	text-align: center;
	font-size: 2.5em;
	text-shadow: 0 2px 10px rgba(255, 193, 7, 0.3);
}

.warning-content {
	display: flex;
	flex-direction: column;
	gap: 2em;
	max-width: 1200px;
	margin: 0 auto;
}

.section-warning p {
	background:
		linear-gradient(135deg,
			rgba(35, 30, 25, 0.8) 0%,
			rgba(40, 35, 30, 0.9) 100%);
	padding: 0;
	border-radius: 16px;
	border: 2px solid rgba(255, 152, 0, 0.3);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 2.5em;
	align-items: center;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.section-warning p::before {
	content: '!';
	width: 70px;
	height: 70px;
	background:
		linear-gradient(135deg,
			rgba(255, 193, 7, 0.2) 0%,
			rgba(255, 152, 0, 0.25) 100%);
	border: 3px solid rgba(255, 193, 7, 0.6);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 2.5em;
	color: rgba(255, 193, 7, 1);
	margin-left: 15px;
	box-shadow:
		0 0 30px rgba(255, 193, 7, 0.4),
		inset 0 0 20px rgba(255, 193, 7, 0.1);
	transition: all 0.4s ease;
}

.section-warning p::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 6px;
	background: linear-gradient(to bottom,
		rgba(255, 193, 7, 0.8) 0%,
		rgba(255, 152, 0, 0.8) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.section-warning p > span {
	padding: 2.5em 2.5em 2.5em 0;
}

.section-warning p:hover {
	transform: translateX(8px);
	border-color: rgba(255, 193, 7, 0.5);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.section-warning p:hover::before {
	transform: rotate(360deg) scale(1.1);
	box-shadow:
		0 0 40px rgba(255, 193, 7, 0.6),
		inset 0 0 25px rgba(255, 193, 7, 0.15);
}

.section-warning p:hover::after {
	opacity: 1;
}

/* Section 7: Cost - Pricing tier cards */
.section-cost {
	background:
		linear-gradient(to bottom,
			rgba(10, 15, 20, 1) 0%,
			rgba(15, 25, 30, 1) 50%,
			rgba(10, 20, 25, 1) 100%);
	position: relative;
	overflow: hidden;
}

.section-cost::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-image:
		repeating-linear-gradient(
			90deg,
			transparent,
			transparent 100px,
			rgba(72, 219, 142, 0.02) 100px,
			rgba(72, 219, 142, 0.02) 101px
		);
	pointer-events: none;
}

.section-cost::after {
	content: '';
	position: absolute;
	width: 800px;
	height: 800px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(43, 180, 255, 0.06) 0%, transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.section-cost .inner {
	position: relative;
	z-index: 1;
}

.section-cost h3 {
	margin-bottom: 3em;
	text-align: center;
	font-size: 2.5em;
}

.cost-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2em;
	max-width: 1300px;
	margin: 0 auto;
}

.section-cost p {
	background:
		linear-gradient(135deg,
			rgba(20, 30, 35, 0.8) 0%,
			rgba(25, 35, 40, 0.9) 100%);
	padding: 3em 2.5em;
	border-radius: 20px;
	border: 2px solid rgba(43, 180, 255, 0.2);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
	margin-bottom: 0;
	position: relative;
	transition: all 0.4s ease;
	text-align: center;
}

.section-cost p::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(135deg,
		rgba(43, 180, 255, 0.4) 0%,
		rgba(72, 219, 142, 0.4) 100%);
	border-radius: 20px;
	opacity: 0;
	z-index: -1;
	transition: opacity 0.4s ease;
}

.section-cost p:nth-of-type(1) {
	border-color: rgba(72, 219, 142, 0.3);
}

.section-cost p:nth-of-type(1)::before {
	background: linear-gradient(135deg, rgba(72, 219, 142, 0.5) 0%, rgba(56, 193, 114, 0.5) 100%);
}

.section-cost p:nth-of-type(2) {
	border-color: rgba(43, 180, 255, 0.3);
	transform: scale(1.05);
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.section-cost p:nth-of-type(2)::before {
	background: linear-gradient(135deg, rgba(43, 180, 255, 0.5) 0%, rgba(33, 150, 243, 0.5) 100%);
}

.section-cost p:nth-of-type(2)::after {
	content: 'Popular';
	position: absolute;
	top: 1em;
	right: 1em;
	background: linear-gradient(135deg, rgba(43, 180, 255, 0.9) 0%, rgba(33, 150, 243, 0.9) 100%);
	padding: 0.4em 1em;
	border-radius: 20px;
	font-size: 0.75em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	box-shadow: 0 4px 15px rgba(43, 180, 255, 0.4);
}

.section-cost p:nth-of-type(3) {
	border-color: rgba(123, 97, 255, 0.3);
}

.section-cost p:nth-of-type(3)::before {
	background: linear-gradient(135deg, rgba(123, 97, 255, 0.5) 0%, rgba(103, 58, 183, 0.5) 100%);
}

.section-cost p:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.section-cost p:nth-of-type(2):hover {
	transform: translateY(-8px) scale(1.07);
}

.section-cost p:hover::before {
	opacity: 1;
}

/* Responsive Design */
@media screen and (max-width: 1280px) {
	.content-section .inner {
		max-width: 1200px;
		padding: 0 2.5em;
	}

	.steps-container {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}

	.cost-grid {
		grid-template-columns: 1fr;
		max-width: 600px;
	}

	.section-cost p:nth-of-type(2) {
		transform: scale(1);
	}
}

@media screen and (max-width: 980px) {
	.content-section {
		padding: 5em 0;
	}

	.content-section .inner {
		padding: 0 2em;
	}

	.content-section h3 {
		font-size: 2em;
	}

	.wmhs-svg {
		order: -1;
	}

	.node-rail {
		display: none;
	}

	.section-band-devices p {
		grid-template-columns: 1fr;
		padding: 2.5em;
		text-align: center;
	}

	.section-band-devices p::before {
		margin: 0 auto 1.5em;
	}

	.section-band-devices p:nth-of-type(even) {
		grid-template-columns: 1fr;
	}

	.benefits-grid {
		grid-template-columns: 1fr;
	}

	.steps-container {
		grid-template-columns: 1fr;
	}

	.section-warning p {
		grid-template-columns: 80px 1fr;
		gap: 1.5em;
	}

	.section-warning p::before {
		width: 60px;
		height: 60px;
		font-size: 2em;
		margin-left: 10px;
	}
}

@media screen and (max-width: 736px) {
	#intro-cover {
		padding: 5em 0 4em 0;
	}

	#intro-cover h2.major {
		font-size: 2em;
	}

	#intro-cover p {
		font-size: 1.2em;
	}

	.content-section {
		padding: 4em 0;
	}

	.content-section .inner {
		padding: 0 1.5em;
	}

	.content-section h3 {
		font-size: 1.75em;
	}

	.content-section p {
		font-size: 1.05em;
	}

	.section-band-devices p {
		padding: 2em;
	}

	.section-band-devices p::before {
		width: 90px;
		height: 90px;
	}

	.section-steps p {
		padding: 2.5em 2em;
	}

	.section-steps p::after {
		width: 60px;
		height: 60px;
		top: -30px;
	}

	.section-checklist p::before {
		width: 50px;
		height: 50px;
		font-size: 1.3em;
	}

	.section-warning p {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 2em;
	}

	.section-warning p::before {
		position: relative;
		left: auto;
		top: auto;
		margin: 0 auto 1.5em;
	}

	.section-warning p > span {
		padding: 0;
	}
}

@media screen and (max-width: 480px) {
	#intro-cover {
		padding: 4em 0 3em 0;
	}

	#intro-cover h2.major {
		font-size: 1.75em;
	}

	#intro-cover p {
		font-size: 1.1em;
	}

	.content-section {
		padding: 3em 0;
	}

	.content-section .inner {
		padding: 0 1.25em;
	}

	.content-section h3 {
		font-size: 1.5em;
		margin-bottom: 1.2em;
	}

	.content-section p {
		font-size: 1em;
		margin-bottom: 1.5em;
	}

	.wmhs-layout {
		gap: 2em;
	}

	.wmhs-svg {
		padding: 1.5em;
	}

	.wmhs-svg svg {
		max-width: 280px;
	}

	.section-band-devices p {
		padding: 1.8em 1.5em;
	}

	.section-band-devices p::before {
		width: 70px;
		height: 70px;
	}

	.benefits-grid {
		gap: 1.5em;
	}

	.benefits-grid p,
	.section-cost p {
		padding: 2em 1.8em;
	}

	.section-steps p {
		padding: 2em 1.5em;
	}

	.section-steps p::after {
		width: 50px;
		height: 50px;
	}

	.checklist-container {
		gap: 2.5em;
	}

	.section-checklist p {
		padding: 2em 2em;
	}

	.section-checklist p::before {
		width: 45px;
		height: 45px;
		font-size: 1.2em;
	}

	.section-warning p {
		padding: 1.8em 1.5em;
	}

	.section-warning p::before {
		width: 55px;
		height: 55px;
		font-size: 2em;
	}

	.cost-grid {
		gap: 1.5em;
	}
}
