/*
 * Homepage sections stylesheet (2026-09-09 redesign).
 * Loaded once on `is_front_page()`. Each section owns a clearly-labeled
 * block below — kept in a single file rather than one module per section
 * because the combined size is under 15KB, so one request wins over the
 * per-section cache benefit at this scale.
 *
 * Shared foundations (page-wide button, chip bar, section heading) live in
 * home.css so they can be reused independently.
 */


/* =========================================================================
   2. DELTA Showcase
   ========================================================================= */

.pdp-showcase {
	background: var(--wp--preset--color--base-soft);
	padding: clamp(4rem, 8vw, 7.5rem) var(--wp--preset--spacing--5);
}

.pdp-showcase__inner {
	max-width: var(--wp--style--global--wide-size, 1320px);
	margin-inline: auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
	gap: clamp(2rem, 5vw, 5rem);
	align-items: center;
}

.pdp-showcase__title {
	font-size: clamp(2.5rem, 4.5vw, 4rem);
	font-weight: 600;
	line-height: 1.05;
	letter-spacing: -0.02em;
	margin: 0 0 var(--wp--preset--spacing--4);
	color: var(--wp--preset--color--contrast);
	text-wrap: balance;
}

.pdp-showcase__lead {
	font-size: var(--wp--preset--font-size--lg);
	line-height: 1.55;
	color: var(--wp--preset--color--contrast-muted);
	max-width: 440px;
	margin: 0 0 var(--wp--preset--spacing--7);
	font-weight: 300;
}

.pdp-showcase__stats {
	display: grid;
	grid-template-columns: repeat(3, auto);
	gap: var(--wp--preset--spacing--8);
	margin: 0 0 var(--wp--preset--spacing--7);
}

.pdp-showcase__stat {
	min-width: 0;
}

.pdp-showcase__stat-value {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1;
	color: var(--wp--preset--color--contrast);
	font-variant-numeric: tabular-nums;
	margin: 0;
}

.pdp-showcase__stat-label {
	font-size: var(--wp--preset--font-size--xs);
	color: var(--wp--preset--color--contrast-muted);
	margin: var(--wp--preset--spacing--2) 0 0;
	letter-spacing: 0.05em;
}

.pdp-showcase__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--wp--preset--spacing--3);
}

.pdp-showcase__media {
	position: relative;
	aspect-ratio: 5 / 4;
	border-radius: var(--wp--custom--radius--md);
	overflow: hidden;
	background: var(--wp--preset--color--base);
}

.pdp-showcase__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 5%;
	box-sizing: border-box;
}

@media (max-width: 899px) {
	.pdp-showcase__inner {
		grid-template-columns: 1fr;
	}

	.pdp-showcase__stats {
		gap: var(--wp--preset--spacing--5);
	}
}

@media (max-width: 480px) {
	.pdp-showcase__stats {
		grid-template-columns: 1fr 1fr;
	}

	.pdp-showcase__stats .pdp-showcase__stat:nth-child(3) {
		grid-column: 1 / -1;
	}
}


/* =========================================================================
   3. Home Backup
   ========================================================================= */

.pdp-backup {
	background: var(--wp--preset--color--base);
	padding: clamp(4rem, 8vw, 7.5rem) var(--wp--preset--spacing--5);
}

.pdp-backup__inner {
	max-width: var(--wp--style--global--wide-size, 1320px);
	margin-inline: auto;
}

.pdp-backup__row {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: center;
	margin-bottom: var(--wp--preset--spacing--10);
}

.pdp-backup__lifestyle {
	position: relative;
	aspect-ratio: 5 / 4;
	border-radius: var(--wp--custom--radius--lg);
	overflow: hidden;
	background: var(--wp--preset--color--base-soft);
}

.pdp-backup__lifestyle-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pdp-backup__lifestyle-placeholder {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #eee 0%, #d8d8d8 100%);
}

.pdp-backup__side-title {
	font-size: clamp(1.5rem, 2.4vw, 1.75rem);
	font-weight: 600;
	letter-spacing: -0.01em;
	line-height: 1.15;
	margin: 0 0 var(--wp--preset--spacing--3);
	color: var(--wp--preset--color--contrast);
}

.pdp-backup__side-text {
	font-size: var(--wp--preset--font-size--base);
	color: var(--wp--preset--color--contrast-muted);
	line-height: 1.6;
	margin: 0 0 var(--wp--preset--spacing--6);
	font-weight: 300;
}

.pdp-backup__stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--wp--preset--spacing--5);
	margin: 0;
}

.pdp-backup__stat {
	padding: var(--wp--preset--spacing--4) 0 0;
	border-top: 1px solid var(--wp--custom--border--on-light);
}

.pdp-backup__stat-value {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--wp--preset--color--contrast);
	line-height: 1.1;
	margin: 0;
}

.pdp-backup__stat-label {
	font-size: var(--wp--preset--font-size--sm);
	color: var(--wp--preset--color--contrast-muted);
	margin: var(--wp--preset--spacing--1) 0 0;
}

.pdp-backup__grid-card {
	background: var(--wp--preset--color--base-soft);
	border-radius: var(--wp--custom--radius--lg);
	padding: clamp(1.5rem, 4vw, 3.5rem);
	margin-bottom: var(--wp--preset--spacing--8);
}

.pdp-backup__grid-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: var(--wp--preset--spacing--4);
	margin-bottom: var(--wp--preset--spacing--7);
}

.pdp-backup__grid-title {
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin: 0 0 var(--wp--preset--spacing--2);
	color: var(--wp--preset--color--contrast);
}

.pdp-backup__grid-sub {
	font-size: var(--wp--preset--font-size--base);
	color: var(--wp--preset--color--contrast-muted);
	margin: 0;
	font-weight: 300;
}

.pdp-backup__grid-badge {
	font-size: var(--wp--preset--font-size--sm);
	color: var(--wp--preset--color--contrast-muted);
	font-variant-numeric: tabular-nums;
	font-family: var(--wp--preset--font-family--mono, ui-monospace, monospace);
}

.pdp-backup__appliances {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: var(--wp--preset--spacing--3);
}

.pdp-backup__appliance {
	background: var(--wp--preset--color--base);
	border-radius: var(--wp--custom--radius--md);
	padding: var(--wp--preset--spacing--5);
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--2);
	transition:
		transform var(--wp--custom--duration--base) var(--wp--custom--ease--out),
		box-shadow var(--wp--custom--duration--base) var(--wp--custom--ease--out);
}

.pdp-backup__appliance:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.pdp-backup__appliance-icon {
	display: inline-flex;
	color: var(--wp--preset--color--contrast);
}

.pdp-backup__appliance-icon svg {
	width: 22px;
	height: 22px;
}

.pdp-backup__appliance-label {
	font-size: var(--wp--preset--font-size--base);
	font-weight: 600;
	color: var(--wp--preset--color--contrast);
}

.pdp-backup__appliance-meta {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-top: var(--wp--preset--spacing--1);
}

.pdp-backup__appliance-watts {
	font-size: var(--wp--preset--font-size--xs);
	color: var(--wp--preset--color--contrast-muted);
	font-variant-numeric: tabular-nums;
	font-family: var(--wp--preset--font-family--mono, ui-monospace, monospace);
}

.pdp-backup__appliance-time {
	font-size: var(--wp--preset--font-size--xs);
	font-weight: 600;
	color: var(--wp--preset--color--contrast);
}

.pdp-backup__cta {
	text-align: center;
}

.pdp-backup__cta-lead {
	font-size: var(--wp--preset--font-size--base);
	color: var(--wp--preset--color--contrast-muted);
	margin: 0 0 var(--wp--preset--spacing--4);
	font-weight: 300;
}

@media (max-width: 899px) {
	.pdp-backup__row {
		grid-template-columns: 1fr;
	}
}


/* =========================================================================
   4. Product Line Cards (RIVER + SOLAR)
   ========================================================================= */

.pdp-line-cards {
	background: var(--wp--preset--color--base-soft);
	padding: clamp(2.5rem, 5vw, 3.75rem) var(--wp--preset--spacing--5);
}

.pdp-line-cards__inner {
	max-width: var(--wp--style--global--wide-size, 1320px);
	margin-inline: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--wp--preset--spacing--4);
}

.pdp-line-card {
	position: relative;
	border-radius: var(--wp--custom--radius--lg);
	overflow: hidden;
	aspect-ratio: 5 / 4;
	background: #111;
	color: var(--wp--preset--color--base);
	min-height: 380px;
}

.pdp-line-card__media {
	position: absolute;
	inset: 0;
}

.pdp-line-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pdp-line-card__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.6) 100%);
	pointer-events: none;
}

.pdp-line-card__body {
	position: absolute;
	inset: 0;
	padding: clamp(1.5rem, 3vw, 2.5rem);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.pdp-line-card__eyebrow {
	font-size: 12px;
	letter-spacing: 0.24em;
	opacity: 0.9;
	margin-bottom: var(--wp--preset--spacing--2);
	font-weight: 500;
	text-transform: uppercase;
}

.pdp-line-card__title {
	font-size: clamp(1.5rem, 2.6vw, 2.125rem);
	font-weight: 600;
	letter-spacing: -0.01em;
	line-height: 1.1;
	margin: 0 0 var(--wp--preset--spacing--2);
	max-width: 400px;
	text-wrap: balance;
}

.pdp-line-card__text {
	font-size: var(--wp--preset--font-size--base);
	line-height: 1.5;
	opacity: 0.85;
	max-width: 380px;
	margin: 0 0 var(--wp--preset--spacing--5);
	font-weight: 300;
}

.pdp-line-card__body .pdp-btn {
	align-self: flex-start;
	background: rgba(255, 255, 255, 0.95);
}

@media (max-width: 780px) {
	.pdp-line-cards__inner {
		grid-template-columns: 1fr;
	}
}


/* =========================================================================
   5. Solar Ecosystem
   -------------------------------------------------------------------------
   One light panel holding a single energy schematic: panel ──→ DELTA ──→ a
   fridge still running at night.

   The subjects share the panel's background rather than sitting in cards —
   that is what makes the row read as one diagram instead of three products.
   The panel and station are transparent cutouts placed straight onto it; only
   the night photo has a frame, because it is a scene rather than an object.

   One grid drives every breakpoint: subjects on row 1, labels on row 2,
   connectors in the gap columns. DOM order is the reading order, so the phone
   layout is just the same items flowing in a single column.
   ========================================================================= */

.pdp-eco {
	/* The only chromatic moment on an otherwise monochrome homepage. */
	--eco-cyan: #17b6e0;
	--eco-glow: rgba(23, 182, 224, 0.55);
	--eco-rail: rgba(17, 17, 17, 0.16);
	--eco-flow-duration: 3.6s;
	--eco-media-h: clamp(168px, 22vw, 344px);

	background: var(--wp--preset--color--base);
	padding: clamp(2rem, 4vw, 4.5rem) var(--wp--preset--spacing--5);
}

.pdp-eco__inner {
	max-width: 1480px;
	margin-inline: auto;
}

.pdp-eco__card {
	background: #eef2f5;
	border-radius: clamp(16px, 1.6vw, 22px);
	padding: clamp(26px, 4.6vw, 68px);
}


/* --- Heading ------------------------------------------------------------ */

.pdp-eco__head {
	margin-bottom: clamp(26px, 4vw, 56px);
}

.pdp-eco__title {
	font-size: clamp(1.9rem, 3.7vw, 3.25rem);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1.08;
	margin: 0 0 clamp(10px, 1vw, 16px);
	max-width: 34ch;
	color: var(--wp--preset--color--contrast);
}

.pdp-eco__lead {
	margin: 0;
	max-width: 60ch;
	font-size: clamp(0.875rem, 1vw, 1rem);
	line-height: 1.6;
	font-weight: 400;
	color: #777777;
}


/* --- The diagram -------------------------------------------------------- */

.pdp-eco__flow {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	row-gap: clamp(14px, 1.8vw, 22px);
}

/*
 * Transparent box, no chrome. overflow:hidden only exists so a cutout can be
 * scaled up past the box to fill it without spilling over its neighbours —
 * there is no background to give the clipping away.
 */
.pdp-eco__node {
	position: relative;
	margin: 0;
	height: var(--eco-media-h);
	display: grid;
	place-items: center;
	overflow: hidden;
}

.pdp-eco__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

/* Both cutouts are shot with a lot of empty frame around them; scaling is
   what makes them read at the size the composition needs. The panel is nearly
   edge-on and fills only ~80% of its square source, so 1.54 is the ceiling at
   which it still spans the node's width without being clipped:
   0.8 x node height x scale <= node width. */
.pdp-eco__node--panel .pdp-eco__img {
	transform: scale(1.54);
}

.pdp-eco__node--station .pdp-eco__img {
	transform: scale(1.16);
}

/* The scene gets the only frame in the row. */
.pdp-eco__node--home .pdp-eco__img {
	object-fit: cover;
	object-position: 56% 50%;
	border-radius: clamp(12px, 1.1vw, 16px);
}

.pdp-eco__sun {
	position: absolute;
	top: 12%;
	left: 7%;
	width: clamp(74px, 7.6vw, 116px);
	aspect-ratio: 1;
	border-radius: 50%;
	pointer-events: none;
	background: radial-gradient(
		circle at 50% 50%,
		rgba(255, 255, 255, 1) 0%,
		rgba(255, 249, 231, 0.95) 22%,
		rgba(255, 222, 166, 0.5) 44%,
		rgba(255, 209, 144, 0.15) 66%,
		rgba(255, 205, 135, 0) 78%
	);
}

.pdp-eco__status {
	position: absolute;
	z-index: 2;
	left: clamp(10px, 1vw, 15px);
	bottom: clamp(10px, 1vw, 15px);
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 6px 12px 6px 10px;
	border-radius: var(--wp--custom--radius--pill);
	background: rgba(10, 14, 20, 0.62);
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
}

.pdp-eco__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #4ed07d;
	flex: none;
}


/* --- Connectors --------------------------------------------------------- */

.pdp-eco__link {
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(17, 17, 17, 0.32);
}

.pdp-eco__rail {
	position: relative;
	flex: 1;
	height: 1px;
	background: var(--eco-rail);
}

.pdp-eco__arrow {
	flex: none;
	width: 7px;
	height: 9px;
	margin-left: 1px;
}

/*
 * The pulse is a moving gradient window over the rail rather than a
 * positioned dot: background-position percentages resolve against the rail's
 * own length, so one rule works at every width without measuring anything.
 */
.pdp-eco__pulse {
	position: absolute;
	inset: -1px 0;
	opacity: 0;
	background-repeat: no-repeat;
	background-size: 34% 100%;
	background-position: -60% 0;
	background-image: linear-gradient(
		90deg,
		rgba(23, 182, 224, 0) 0%,
		var(--eco-glow) 34%,
		#ffffff 50%,
		var(--eco-glow) 66%,
		rgba(23, 182, 224, 0) 100%
	);
	filter: drop-shadow(0 0 6px var(--eco-glow));
}

.has-motion .pdp-eco__pulse {
	opacity: 1;
	animation: efEcoFlowX var(--eco-flow-duration) linear infinite;
}

/* Offset so a pulse leaving the first rail reads as the same one arriving at
   the second, instead of two moving in lockstep. */
.has-motion .pdp-eco__link--2 .pdp-eco__pulse {
	animation-delay: calc(var(--eco-flow-duration) * 0.42);
}

.has-motion .pdp-eco__sun {
	animation: efEcoSun 7s ease-in-out infinite;
}

.has-motion .pdp-eco__dot {
	animation: efEcoAlive 2.6s ease-out infinite;
}

@keyframes efEcoFlowX {
	from {
		background-position: -60% 0;
	}
	to {
		background-position: 160% 0;
	}
}

@keyframes efEcoFlowY {
	from {
		background-position: 0 -60%;
	}
	to {
		background-position: 0 160%;
	}
}

@keyframes efEcoSun {
	0%,
	100% {
		opacity: 0.9;
		transform: scale(1);
	}
	50% {
		opacity: 1;
		transform: scale(1.04);
	}
}

@keyframes efEcoAlive {
	0% {
		box-shadow: 0 0 0 0 rgba(78, 208, 125, 0.55);
	}
	70%,
	100% {
		box-shadow: 0 0 0 6px rgba(78, 208, 125, 0);
	}
}


/* --- Labels ------------------------------------------------------------- */

.pdp-eco__caption {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	column-gap: 12px;
	row-gap: 6px;
	align-items: center;
	min-width: 0;
}

.pdp-eco__icon {
	grid-row: 1;
	grid-column: 1;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	border: 1px solid rgba(17, 17, 17, 0.14);
	color: var(--wp--preset--color--contrast);
}

.pdp-eco__icon svg {
	width: 18px;
	height: 18px;
	display: block;
}

.pdp-eco__name {
	grid-row: 1;
	grid-column: 2;
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	line-height: 1.25;
	color: var(--wp--preset--color--contrast);
}

.pdp-eco__text {
	grid-row: 2;
	grid-column: 2;
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.5;
	font-weight: 400;
	color: #777777;
	text-wrap: pretty;
}

.pdp-eco__cta {
	margin-top: clamp(28px, 4vw, 56px);
}


/* --- Phone: the same chain, running downwards ---------------------------- */

@media (max-width: 899px) {
	.pdp-eco {
		--eco-media-h: clamp(190px, 46vw, 300px);
	}

	/*
	 * Left-aligned with the heading and the CTA rather than centred, and
	 * capped: a full-width tablet node would be ~670x300, a letterbox so wide
	 * that the cutouts either float in it or get clipped by the zoom meant for
	 * the desktop column.
	 */
	.pdp-eco__flow {
		max-width: 460px;
	}

	.pdp-eco__node--panel .pdp-eco__img {
		transform: scale(1.3);
	}

	.pdp-eco__node--station .pdp-eco__img {
		transform: none;
	}

	.pdp-eco__link {
		height: clamp(30px, 6vw, 48px);
		flex-direction: column;
	}

	.pdp-eco__rail {
		width: 1px;
		height: auto;
		flex: 1;
	}

	.pdp-eco__arrow {
		width: 9px;
		height: 7px;
		margin: 1px 0 0;
		transform: rotate(90deg);
	}

	.pdp-eco__pulse {
		inset: 0 -1px;
		background-size: 100% 34%;
		background-position: 0 -60%;
		background-image: linear-gradient(
			180deg,
			rgba(23, 182, 224, 0) 0%,
			var(--eco-glow) 34%,
			#ffffff 50%,
			var(--eco-glow) 66%,
			rgba(23, 182, 224, 0) 100%
		);
	}

	.has-motion .pdp-eco__pulse {
		animation-name: efEcoFlowY;
	}

	.pdp-eco__text {
		grid-column: 1 / -1;
	}
}


/* --- Desktop: one horizontal schematic ---------------------------------- */

@media (min-width: 900px) {
	.pdp-eco__flow {
		grid-template-columns:
			minmax(0, 1fr) clamp(56px, 8vw, 154px)
			minmax(0, 1fr) clamp(56px, 8vw, 154px)
			minmax(0, 1fr);
		column-gap: 0;
		row-gap: clamp(18px, 2.4vw, 32px);
		align-items: start;
	}

	.pdp-eco__node {
		grid-row: 1;
	}

	.pdp-eco__node--panel {
		grid-column: 1;
	}

	.pdp-eco__node--station {
		grid-column: 3;
	}

	.pdp-eco__node--home {
		grid-column: 5;
	}

	.pdp-eco__caption {
		grid-row: 2;
	}

	.pdp-eco__caption--1 {
		grid-column: 1;
	}

	.pdp-eco__caption--2 {
		grid-column: 3;
	}

	.pdp-eco__caption--3 {
		grid-column: 5;
	}

	/* Connectors sit in the gap columns, centred on the subjects' mid-height. */
	.pdp-eco__link {
		grid-row: 1;
		align-self: center;
		margin-inline: clamp(10px, 1.2vw, 22px);
	}
}


/* =========================================================================
   6. Comparison
   ========================================================================= */

.pdp-cmp {
	background: var(--wp--preset--color--base);
	padding: clamp(3rem, 6vw, 6rem) var(--wp--preset--spacing--5) clamp(2.5rem, 5vw, 5rem);
}

.pdp-cmp__inner {
	max-width: var(--wp--style--global--wide-size, 1320px);
	margin-inline: auto;
}

.pdp-cmp__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: var(--wp--preset--spacing--5);
	margin-bottom: var(--wp--preset--spacing--10);
}

.pdp-cmp__title {
	font-size: clamp(2rem, 3.6vw, 3.25rem);
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin: 0 0 var(--wp--preset--spacing--2);
	color: var(--wp--preset--color--contrast);
	text-wrap: balance;
}

.pdp-cmp__lead {
	font-size: var(--wp--preset--font-size--base);
	color: var(--wp--preset--color--contrast-muted);
	max-width: 560px;
	margin: 0;
	font-weight: 300;
}

.pdp-cmp__all {
	font-size: var(--wp--preset--font-size--sm);
	color: var(--wp--preset--color--contrast);
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
}

.pdp-cmp__all:hover {
	opacity: 0.7;
}

.pdp-cmp__scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin-inline: calc(-1 * var(--wp--preset--spacing--3));
	padding-inline: var(--wp--preset--spacing--3);
}

.pdp-cmp__table {
	width: 100%;
	min-width: 900px;
	border-collapse: separate;
	border-spacing: 0;
	font-size: var(--wp--preset--font-size--sm);
}

.pdp-cmp__col-head {
	width: calc((100% - 220px) / 4);
	padding: var(--wp--preset--spacing--4) var(--wp--preset--spacing--4) var(--wp--preset--spacing--6);
	text-align: center;
	vertical-align: bottom;
	position: relative;
	background: transparent;
}

.pdp-cmp__col-head.is-featured {
	padding-top: calc(var(--wp--preset--spacing--4) + 24px);
	background: var(--wp--preset--color--base-soft);
	border-radius: var(--wp--custom--radius--md) var(--wp--custom--radius--md) 0 0;
}

.pdp-cmp__pill {
	position: absolute;
	top: var(--wp--preset--spacing--3);
	left: 50%;
	transform: translateX(-50%);
	background: var(--wp--preset--color--contrast);
	color: var(--wp--preset--color--base);
	font-size: 11px;
	padding: 4px 12px;
	border-radius: var(--wp--custom--radius--pill);
	letter-spacing: 0.06em;
	font-weight: 500;
	white-space: nowrap;
	text-transform: uppercase;
}

.pdp-cmp__product {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--wp--preset--spacing--3);
	color: var(--wp--preset--color--contrast);
	text-decoration: none;
}

.pdp-cmp__thumb {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 100px;
}

.pdp-cmp__img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.pdp-cmp__name {
	font-size: var(--wp--preset--font-size--sm);
	font-weight: 500;
	text-align: center;
}

.pdp-cmp__row-label {
	padding: var(--wp--preset--spacing--3) var(--wp--preset--spacing--4);
	color: var(--wp--preset--color--contrast-muted);
	font-size: var(--wp--preset--font-size--xs);
	text-align: left;
	font-weight: 400;
	width: 220px;
	border-top: 1px solid var(--wp--custom--border--on-light);
}

.pdp-cmp__cell {
	padding: var(--wp--preset--spacing--3) var(--wp--preset--spacing--4);
	text-align: center;
	color: var(--wp--preset--color--contrast);
	font-size: var(--wp--preset--font-size--sm);
	border-top: 1px solid var(--wp--custom--border--on-light);
}

.pdp-cmp__cell.is-featured {
	background: var(--wp--preset--color--base-soft);
}

.pdp-cmp__cell--price {
	font-weight: 700;
	font-variant-numeric: tabular-nums;
}

.pdp-cmp__price .woocommerce-Price-amount {
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
}

.pdp-cmp__cell--cta {
	padding-block: var(--wp--preset--spacing--5);
	border-top: 0;
}

.pdp-cmp__cell--cta.is-featured {
	border-radius: 0 0 var(--wp--custom--radius--md) var(--wp--custom--radius--md);
}

.pdp-cmp__cta {
	font-size: var(--wp--preset--font-size--sm);
	font-weight: 500;
	color: var(--wp--preset--color--contrast);
	text-decoration: none;
}

.pdp-cmp__cta:hover {
	opacity: 0.7;
}


/* =========================================================================
   7. Technology
   ========================================================================= */

.pdp-tech {
	background: var(--wp--preset--color--base-soft);
	padding: clamp(3rem, 6vw, 6rem) var(--wp--preset--spacing--5);
}

.pdp-tech__inner {
	max-width: var(--wp--style--global--wide-size, 1320px);
	margin-inline: auto;
}

.pdp-tech__inner .pdp-section-head--left {
	text-align: left;
	max-width: 640px;
}

.pdp-tech__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: var(--wp--preset--spacing--5);
}

.pdp-tech__card {
	padding: clamp(1.5rem, 2.5vw, 2rem);
	background: var(--wp--preset--color--base);
	border-radius: var(--wp--custom--radius--md);
	border: 1px solid var(--wp--custom--border--on-light);
}

.pdp-tech__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--wp--preset--color--base-soft);
	color: var(--wp--preset--color--contrast);
	margin-bottom: var(--wp--preset--spacing--5);
}

.pdp-tech__icon svg {
	width: 22px;
	height: 22px;
}

.pdp-tech__name {
	font-size: var(--wp--preset--font-size--lg);
	font-weight: 600;
	margin: 0 0 var(--wp--preset--spacing--2);
	color: var(--wp--preset--color--contrast);
	letter-spacing: -0.01em;
}

.pdp-tech__desc {
	font-size: var(--wp--preset--font-size--sm);
	color: var(--wp--preset--color--contrast-muted);
	line-height: 1.5;
	margin: 0;
}


/* =========================================================================
   8. Smart App
   ========================================================================= */

.pdp-app {
	background: var(--wp--preset--color--base);
	padding: clamp(3rem, 6vw, 6rem) var(--wp--preset--spacing--5);
}

.pdp-app__inner {
	max-width: var(--wp--style--global--wide-size, 1320px);
	margin-inline: auto;
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: clamp(2rem, 5vw, 5rem);
	align-items: center;
}

.pdp-app__media {
	position: relative;
	aspect-ratio: 4 / 5;
	max-height: 620px;
	border-radius: var(--wp--custom--radius--lg);
	overflow: hidden;
	background: var(--wp--preset--color--base-soft);
}

.pdp-app__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.pdp-app__placeholder {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #f2f2f4 0%, #e2e2e6 100%);
}

.pdp-app__features {
	list-style: none;
	margin: var(--wp--preset--spacing--5) 0 var(--wp--preset--spacing--7);
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--wp--preset--spacing--5);
	max-width: 480px;
}

.pdp-app__feature {
	display: flex;
	gap: var(--wp--preset--spacing--3);
	align-items: flex-start;
}

.pdp-app__feature-icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: var(--wp--preset--color--base-soft);
	color: var(--wp--preset--color--contrast);
}

.pdp-app__feature-icon svg {
	width: 18px;
	height: 18px;
}

.pdp-app__feature-body {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.pdp-app__feature-name {
	font-size: var(--wp--preset--font-size--sm);
	font-weight: 500;
	color: var(--wp--preset--color--contrast);
}

.pdp-app__feature-desc {
	font-size: var(--wp--preset--font-size--xs);
	color: var(--wp--preset--color--contrast-muted);
	margin-top: 2px;
}

.pdp-app__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--wp--preset--spacing--3);
}

@media (max-width: 899px) {
	.pdp-app__inner {
		grid-template-columns: 1fr;
	}

	.pdp-app__media {
		max-height: 480px;
	}
}


/* =========================================================================
   9. Final CTA
   ========================================================================= */

.pdp-final {
	position: relative;
	padding: clamp(5rem, 10vw, 9rem) var(--wp--preset--spacing--5);
	background: #0a0a0a;
	color: var(--wp--preset--color--base);
	overflow: hidden;
}

.pdp-final__media {
	position: absolute;
	inset: 0;
}

.pdp-final__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pdp-final__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0) 100%);
	pointer-events: none;
}

.pdp-final__inner {
	position: relative;
	max-width: var(--wp--style--global--wide-size, 1320px);
	margin-inline: auto;
}

.pdp-final__title {
	font-size: clamp(3rem, 5.5vw, 5rem);
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.05;
	margin: 0 0 var(--wp--preset--spacing--4);
	max-width: 720px;
	text-wrap: balance;
	color: var(--wp--preset--color--base);
}

.pdp-final__lead {
	font-size: var(--wp--preset--font-size--lg);
	opacity: 0.85;
	max-width: 520px;
	margin: 0 0 var(--wp--preset--spacing--7);
	font-weight: 300;
	line-height: 1.45;
}

.pdp-final__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--wp--preset--spacing--3);
}
