/**
 * Strona główna v2 — układ mockup 01 + styl premium 02
 */

.cw-home-v2 {
	--h2-blue: #1a5cff;
	--h2-navy: #0a0c14;
	--h2-black: #0a0a0a;
	--h2-stone: #f4f4f1;
	--h2-gray: #6b6b6b;
	--h2-border: #e4e4df;
	--h2-wrap: min(1320px, 100% - 2 * clamp(1.25rem, 4vw, 2.5rem));
	font-family: var(--cw-font, "Inter", system-ui, sans-serif);
	color: var(--h2-black);
}

.cw-h2-wrap {
	width: var(--h2-wrap);
	margin-inline: auto;
}

.cw-h2-section {
	padding: clamp(4rem, 10vw, 7rem) 0;
}

.cw-h2-section--hero {
	position: relative;
	padding: 0;
	background: linear-gradient(180deg, #f8f8f6 0%, #fff 100%);
	overflow: hidden;
}

.cw-h2-section--hero-video {
	padding: 0;
}

.cw-h2-hero__ambient {
	position: absolute;
	inset: 0;
	height: 100%;
	pointer-events: none;
	z-index: 0;
	background:
		radial-gradient(ellipse 55% 45% at 92% 15%, rgba(26, 92, 255, 0.06) 0%, transparent 60%),
		radial-gradient(ellipse 35% 30% at 8% 25%, rgba(10, 10, 10, 0.03) 0%, transparent 70%);
}

.cw-h2-section--dark {
	background: var(--h2-navy);
	color: #fff;
}

.cw-h2-section--light {
	background: #fff;
}

.cw-h2-accent {
	font-family: "Playfair Display", Georgia, serif;
	font-style: italic;
	color: var(--h2-blue);
	font-weight: 400;
}

.cw-h2-h1 {
	font-size: clamp(2.75rem, 8.5vw, 5.25rem);
	font-weight: 500;
	line-height: 1.02;
	letter-spacing: -0.045em;
	margin: 0;
	max-width: 11ch;
}

.cw-h2-h2 {
	font-size: clamp(1.75rem, 4.5vw, 3rem);
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.03em;
	margin: 0 0 2rem;
}

.cw-h2-h2--light,
.cw-h2-h2--light .cw-h2-accent {
	color: #fff;
}

.cw-h2-h2--light .cw-h2-accent {
	color: #6b9fff;
}

.cw-h2-h3 {
	font-size: 1.5rem;
	font-weight: 500;
	margin: 3rem 0 1.5rem;
}

.cw-h2-section__head--center {
	text-align: center;
}

.cw-h2-section__head--center .cw-h2-h2 {
	max-width: 22ch;
	margin-inline: auto;
}

.cw-h2-lead {
	font-size: clamp(1rem, 2vw, 1.125rem);
	line-height: 1.65;
	color: var(--h2-gray);
	margin: 0;
	max-width: 38ch;
}

/* Hero — góra premium */
.cw-h2-hero__top {
	position: relative;
	z-index: 1;
	padding-top: clamp(3rem, 7vw, 5.5rem);
	padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.cw-h2-hero__title {
	max-width: 13ch;
	margin-bottom: 0;
}

.cw-h2-hero__row {
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
	margin-top: clamp(1.75rem, 4vw, 2.5rem);
	max-width: 52rem;
}

@media (min-width: 768px) {
	.cw-h2-hero__row {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
		gap: 2.5rem;
	}
}

.cw-h2-hero__lead {
	flex: 1;
	min-width: 0;
	max-width: 38ch;
	margin: 0;
}

.cw-h2-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	flex-shrink: 0;
}

@media (min-width: 768px) {
	.cw-h2-hero__cta {
		justify-content: flex-start;
	}
}

.cw-h2-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0 0 1.5rem;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--h2-gray);
}

.cw-h2-hero__eyebrow-mark {
	display: block;
	width: 2rem;
	height: 1px;
	background: linear-gradient(90deg, var(--h2-blue), transparent);
}

/* Reassurance — pasek zaufania przed filmem */
.cw-h2-section--reassurance {
	padding: clamp(2rem, 5vw, 3rem) 0;
	background: var(--h2-stone);
	border-top: 1px solid var(--h2-border);
	border-bottom: 1px solid var(--h2-border);
}

.cw-h2-reassurance__eyebrow {
	margin: 0 0 1.25rem;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--h2-gray);
	text-align: center;
}

.cw-h2-reassurance__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	border: 1px solid var(--h2-border);
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 16px 48px rgba(10, 10, 10, 0.04);
}

@media (min-width: 640px) {
	.cw-h2-reassurance__list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.cw-h2-reassurance__list {
		grid-template-columns: repeat(4, 1fr);
	}
}

.cw-h2-reassurance__item {
	padding: clamp(1.25rem, 3vw, 1.75rem);
	border-bottom: 1px solid var(--h2-border);
}

.cw-h2-reassurance__item:last-child {
	border-bottom: 0;
}

@media (min-width: 640px) {
	.cw-h2-reassurance__item:nth-child(odd) {
		border-right: 1px solid var(--h2-border);
	}

	.cw-h2-reassurance__item:nth-last-child(-n + 2) {
		border-bottom: 0;
	}
}

@media (min-width: 1024px) {
	.cw-h2-reassurance__item {
		border-bottom: 0;
		border-right: 1px solid var(--h2-border);
	}

	.cw-h2-reassurance__item:last-child {
		border-right: 0;
	}
}

.cw-h2-reassurance__metric {
	margin: 0 0 0.5rem;
	line-height: 1;
}

.cw-h2-reassurance__value {
	display: block;
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 500;
	letter-spacing: -0.04em;
	color: var(--h2-black);
}

.cw-h2-reassurance__label {
	display: block;
	margin-top: 0.15rem;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--h2-blue);
}

.cw-h2-reassurance__desc {
	margin: 0.75rem 0 0;
	font-size: 0.8125rem;
	line-height: 1.55;
	color: var(--h2-gray);
	max-width: 22ch;
}

.cw-h2-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 1.75rem;
	font-size: 0.9375rem;
	font-weight: 500;
	text-decoration: none;
	border-radius: 4px;
	border: 1px solid transparent;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	cursor: pointer;
}

.cw-h2-btn--blue {
	background: var(--h2-blue);
	color: #fff;
}

.cw-h2-btn--blue:hover {
	background: #1449d4;
	color: #fff;
}

.cw-h2-btn--black {
	background: var(--h2-black);
	color: #fff;
}

.cw-h2-btn--black:hover {
	background: #2b2b2b;
	color: #fff;
}

.cw-h2-btn--outline {
	background: #fff;
	color: var(--h2-black);
	border-color: var(--h2-black);
}

.cw-h2-btn--outline:hover {
	background: var(--h2-stone);
}

.cw-h2-btn--white {
	background: #fff;
	color: var(--h2-navy);
}

.cw-h2-btn--white:hover {
	background: var(--h2-stone);
}

/* Pas filmowy — wyśrodkowany play */
.cw-h2-hero__cinema {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	min-height: clamp(360px, 56vh, 640px);
	background: #0a0a0a;
	overflow: hidden;
}

.cw-h2-hero__cinema-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.cw-h2-hero__cinema-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(8, 10, 16, 0.28);
}

.cw-h2-hero__cinema-vignette {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 22%, transparent 72%, rgba(0, 0, 0, 0.35) 100%),
		radial-gradient(ellipse 80% 70% at 50% 50%, transparent 35%, rgba(0, 0, 0, 0.4) 100%);
}

.cw-h2-hero__cinema-center {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.cw-h2-hero__play {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	color: #fff;
	pointer-events: auto;
	text-align: center;
}

.cw-h2-hero__play:disabled {
	cursor: default;
	opacity: 0.65;
}

.cw-h2-hero__play-visual {
	position: relative;
	display: block;
	width: 5.5rem;
	height: 5.5rem;
}

.cw-h2-hero__play-ring {
	position: absolute;
	inset: -0.65rem;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.35);
	animation: cw-hero-play-pulse 2.8s ease-out infinite;
	pointer-events: none;
}

.cw-h2-hero__play-icon {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 5.5rem;
	height: 5.5rem;
	border: 2px solid rgba(255, 255, 255, 0.92);
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(10px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
	transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.cw-h2-hero__play-icon::after {
	content: "";
	margin-left: 4px;
	border: 11px solid transparent;
	border-left: 17px solid #fff;
}

.cw-h2-hero__play:hover:not(:disabled) .cw-h2-hero__play-icon {
	transform: scale(1.06);
	background: rgba(0, 0, 0, 0.5);
	border-color: #fff;
}

.cw-h2-hero__play-label {
	display: block;
	margin-top: 1.35rem;
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	opacity: 0.92;
}

.cw-h2-hero__badge {
	position: absolute;
	right: clamp(1.25rem, 4vw, 2.5rem);
	bottom: 1.25rem;
	z-index: 3;
	margin: 0;
	font-size: 0.625rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}

@keyframes cw-hero-play-pulse {
	0% {
		transform: scale(0.92);
		opacity: 0.85;
	}
	70% {
		transform: scale(1.18);
		opacity: 0;
	}
	100% {
		transform: scale(1.18);
		opacity: 0;
	}
}

/* Modal filmu hero */
.cw-h2-hero__modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(1rem, 4vw, 2rem);
}

.cw-h2-hero__modal[hidden] {
	display: none;
}

.cw-h2-hero__modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(6, 8, 12, 0.88);
	backdrop-filter: blur(8px);
}

.cw-h2-hero__modal-dialog {
	position: relative;
	z-index: 1;
	width: min(960px, 100%);
	margin: 0;
}

.cw-h2-hero__modal-video {
	display: block;
	width: 100%;
	height: auto;
	max-height: min(80vh, 720px);
	border-radius: 4px;
	background: #000;
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.cw-h2-hero__modal-close {
	position: absolute;
	top: -2.75rem;
	right: 0;
	width: 2.5rem;
	height: 2.5rem;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
	opacity: 0.85;
}

.cw-h2-hero__modal-close:hover {
	opacity: 1;
}

/* Intro — premium showcase */
.cw-h2-section--intro {
	position: relative;
	background: linear-gradient(165deg, #050608 0%, #0a0c14 42%, #0d1018 100%);
	padding: clamp(5rem, 12vw, 8.5rem) 0;
	overflow: hidden;
}

.cw-h2-section--intro::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 55% at 78% 42%, rgba(107, 159, 255, 0.07) 0%, transparent 62%);
	pointer-events: none;
}

.cw-h2-section--intro .cw-h2-intro {
	position: relative;
	z-index: 1;
}

.cw-h2-intro {
	display: grid;
	gap: clamp(2.5rem, 5vw, 4rem);
	align-items: center;
}

@media (min-width: 960px) {
	.cw-h2-intro {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
		gap: clamp(3rem, 6vw, 5.5rem);
		align-items: stretch;
	}
}

.cw-h2-intro__copy {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 2rem;
}

@media (min-width: 960px) {
	.cw-h2-intro__copy {
		padding-block: 0.5rem;
		min-height: 100%;
	}
}

.cw-h2-intro__eyebrow {
	margin: 0 0 1rem;
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
}

.cw-h2-intro__title {
	margin: 0;
	font-size: clamp(2rem, 4.8vw, 3.25rem);
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -0.04em;
	color: #fff;
	max-width: 13ch;
}

.cw-h2-intro__feature {
	margin: 0;
	padding-top: 1.75rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	min-height: 7.5rem;
}

.cw-h2-intro__counter {
	display: block;
	margin-bottom: 0.875rem;
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	color: rgba(255, 255, 255, 0.38);
	font-variant-numeric: tabular-nums;
}

.cw-h2-intro__feature-title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.25rem, 2.2vw, 1.5rem);
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.2;
	color: #fff;
	transition: opacity 0.4s var(--cw-ease, ease), transform 0.4s var(--cw-ease, ease);
}

.cw-h2-intro__feature-desc {
	margin: 0;
	max-width: 36ch;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.58);
	transition: opacity 0.4s var(--cw-ease, ease), transform 0.4s var(--cw-ease, ease);
}

.cw-h2-intro__feature.is-swapping .cw-h2-intro__feature-title,
.cw-h2-intro__feature.is-swapping .cw-h2-intro__feature-desc {
	opacity: 0;
	transform: translateY(8px);
}

.cw-h2-intro__nav {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0;
	padding: 0;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.cw-h2-intro__nav-item,
.cw-h2-intro__pill {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	width: 100%;
	margin: 0;
	padding: 0.7rem 0 0.7rem 1.125rem;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.42);
	font: inherit;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-align: left;
	cursor: pointer;
	transition: color 0.3s ease, opacity 0.3s ease;
	position: relative;
}

.cw-h2-intro__nav-item::before {
	content: "";
	position: absolute;
	left: -1px;
	top: 0.55rem;
	bottom: 0.55rem;
	width: 2px;
	background: #fff;
	transform: scaleY(0);
	transition: transform 0.35s var(--cw-ease, ease);
}

.cw-h2-intro__nav-item:hover {
	color: rgba(255, 255, 255, 0.78);
}

.cw-h2-intro__nav-item.is-active,
.cw-h2-intro__pill.is-active {
	color: #fff;
}

.cw-h2-intro__nav-item.is-active::before,
.cw-h2-intro__pill.is-active::before {
	transform: scaleY(1);
}

.cw-h2-intro__nav-num {
	font-size: 0.625rem;
	letter-spacing: 0.12em;
	opacity: 0.55;
	font-variant-numeric: tabular-nums;
	min-width: 1.25rem;
}

.cw-h2-intro__nav-item.is-active .cw-h2-intro__nav-num,
.cw-h2-intro__pill.is-active .cw-h2-intro__nav-num {
	opacity: 1;
}

.cw-h2-intro__actions {
	margin-top: 0.25rem;
}

.cw-h2-intro__cta {
	min-width: 12.5rem;
	padding: 0.95rem 2rem;
	font-size: 0.875rem;
	letter-spacing: 0.02em;
}

.cw-h2-intro__stats {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(1.5rem, 4vw, 2.75rem);
	list-style: none;
	margin: 0;
	padding: 2rem 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cw-h2-intro__stats strong {
	display: block;
	font-size: clamp(1.5rem, 3vw, 1.875rem);
	font-weight: 500;
	letter-spacing: -0.03em;
	line-height: 1;
}

.cw-h2-intro__stats span {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.45);
}

.cw-h2-intro__stage {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.cw-h2-intro__stage-glow {
	position: absolute;
	inset: 8% 0;
	background: radial-gradient(ellipse 85% 70% at 50% 45%, rgba(255, 255, 255, 0.14) 0%, transparent 68%);
	pointer-events: none;
	z-index: 0;
}

.cw-h2-intro__frame {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 420px;
	aspect-ratio: 4 / 5;
	max-height: min(78vh, 580px);
	margin: 0 auto;
	padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.25rem, 3vw, 2rem);
	background: linear-gradient(180deg, #ffffff 0%, #f6f6f4 100%);
	border-radius: 3px;
	overflow: hidden;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.65) inset,
		0 48px 120px rgba(0, 0, 0, 0.55),
		0 16px 40px rgba(0, 0, 0, 0.25);
}

.cw-h2-intro__frame--static img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.cw-h2-intro__slide {
	position: absolute;
	inset: clamp(1.75rem, 4vw, 2.75rem) clamp(1.25rem, 3vw, 2rem);
	margin: 0;
	opacity: 0;
	pointer-events: none;
	transform: perspective(1200px) rotateY(6deg) scale(0.97);
	transition:
		opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.cw-h2-intro__slide.is-active {
	opacity: 1;
	pointer-events: auto;
	transform: perspective(1200px) rotateY(0deg) scale(1);
	z-index: 2;
}

.cw-h2-intro__slide.is-leaving {
	opacity: 0;
	z-index: 1;
}

.cw-h2-intro__slide[data-intro-anim="lift"].is-entering {
	transform: perspective(1200px) rotateX(4deg) translateY(5%) scale(0.96);
}

.cw-h2-intro__slide[data-intro-anim="lift"].is-active {
	transform: perspective(1200px) rotateX(0deg) translateY(0) scale(1);
}

.cw-h2-intro__slide[data-intro-anim="lift-soft"].is-entering {
	transform: translateY(4%) scale(0.98);
}

.cw-h2-intro__slide[data-intro-anim="zoom"].is-entering {
	transform: scale(1.04);
}

.cw-h2-intro__slide[data-intro-anim="rotate"].is-entering {
	transform: perspective(1200px) rotateY(-8deg) scale(0.96);
}

.cw-h2-intro__slide[data-intro-anim="rotate"].is-active {
	transform: perspective(1200px) rotateY(2deg) scale(1);
}

.cw-h2-intro__slide[data-intro-anim="glow"].is-active .cw-h2-intro__media:not(.cw-h2-intro__media--video) {
	animation: cw-intro-glow 3s ease-in-out infinite;
}

.cw-h2-intro__slide .cw-h2-intro__media,
.cw-h2-intro__slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center bottom;
}

.cw-h2-intro__slide .cw-h2-intro__media--video {
	background: #f6f6f4;
}

.cw-h2-intro__slide .cw-h2-intro__media-fallback {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
	overflow: hidden;
}

.cw-h2-intro__hotspot {
	position: absolute;
	left: 56%;
	top: 40%;
	width: 2.75rem;
	height: 2.75rem;
	transform: translate(-50%, -50%);
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.cw-h2-intro__slide.is-active .cw-h2-intro__hotspot {
	opacity: 1;
}

.cw-h2-intro__hotspot-ring,
.cw-h2-intro__hotspot-core {
	position: absolute;
	inset: 0;
	border-radius: 50%;
}

.cw-h2-intro__hotspot-core {
	inset: 32%;
	background: #fff;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
	animation: cw-intro-pulse 2s ease-in-out infinite;
}

.cw-h2-intro__hotspot-ring {
	border: 1px solid rgba(26, 92, 255, 0.35);
	animation: cw-intro-ring 2s ease-out infinite;
}

.cw-h2-intro__progress {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 420px;
	height: 1px;
	margin-top: 1.25rem;
	background: rgba(255, 255, 255, 0.14);
	overflow: hidden;
}

.cw-h2-intro__progress-bar {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), #fff);
	transform-origin: left center;
}

@keyframes cw-intro-pulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(0.9);
		opacity: 0.88;
	}
}

@keyframes cw-intro-ring {
	0% {
		transform: scale(0.55);
		opacity: 0.85;
	}
	100% {
		transform: scale(1.4);
		opacity: 0;
	}
}

@keyframes cw-intro-glow {
	0%,
	100% {
		filter: brightness(1);
	}
	50% {
		filter: brightness(1.04);
	}
}

@media (max-width: 959px) {
	.cw-h2-intro__nav {
		flex-direction: row;
		flex-wrap: nowrap;
		overflow-x: auto;
		border-left: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		padding-bottom: 0.25rem;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.cw-h2-intro__nav::-webkit-scrollbar {
		display: none;
	}

	.cw-h2-intro__nav-item,
	.cw-h2-intro__pill {
		width: auto;
		flex-shrink: 0;
		padding: 0.65rem 1rem;
		border-bottom: 2px solid transparent;
	}

	.cw-h2-intro__nav-item::before,
	.cw-h2-intro__pill::before {
		display: none;
	}

	.cw-h2-intro__nav-item.is-active,
	.cw-h2-intro__pill.is-active {
		border-bottom-color: #fff;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cw-h2-intro__slide,
	.cw-h2-intro__feature-title,
	.cw-h2-intro__feature-desc,
	.cw-h2-intro__hotspot-core,
	.cw-h2-intro__hotspot-ring,
	.cw-h2-hero__play-ring {
		transition-duration: 0.01ms;
		animation: none;
	}
}

/* Bento */
.cw-h2-bento {
	display: grid;
	gap: 1rem;
}

@media (min-width: 768px) {
	.cw-h2-bento {
		grid-template-columns: repeat(2, 1fr);
	}
}

.cw-h2-bento__lead {
	grid-column: 1 / -1;
	display: grid;
	background: var(--h2-stone);
	border-radius: 8px;
	overflow: hidden;
}

@media (min-width: 768px) {
	.cw-h2-bento__lead {
		grid-template-columns: 1.05fr 0.95fr;
		min-height: 320px;
	}
}

.cw-h2-bento__lead img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 240px;
}

.cw-h2-bento__lead-body {
	padding: 2rem;
}

.cw-h2-bento__lead h3 {
	font-size: 1.375rem;
	margin: 0 0 1rem;
}

.cw-h2-bento__lead ul {
	margin: 0;
	padding-left: 1.1rem;
	color: var(--h2-gray);
	line-height: 1.7;
}

.cw-h2-bento__tile {
	padding: 2rem;
	border-radius: 8px;
	min-height: 180px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.cw-h2-bento__tile h3 {
	margin: 0 0 0.5rem;
	font-size: 1.125rem;
}

.cw-h2-bento__tile p {
	margin: 0;
	font-size: 0.9375rem;
	opacity: 0.85;
}

.cw-h2-bento__tile--dark {
	background: var(--h2-navy);
	color: #fff;
}

.cw-h2-bento__tile--blue {
	background: var(--h2-blue);
	color: #fff;
}

.cw-h2-bento__tile--light {
	background: #fff;
	border: 1px solid var(--h2-border);
	color: var(--h2-black);
}

.cw-h2-bento__tile--light img {
	width: 100%;
	max-height: 140px;
	object-fit: cover;
	border-radius: 4px;
	margin-bottom: 1rem;
}

.cw-h2-bento__tile--wide {
	grid-column: 1 / -1;
}

@media (min-width: 768px) {
	.cw-h2-bento__tile--wide {
		grid-column: span 1;
	}
}

.cw-h2-bento__link {
	text-align: center;
	margin: 2.5rem 0 0;
}

.cw-h2-bento__link a {
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--h2-black);
	text-decoration: none;
	border-bottom: 1px solid currentColor;
}

/* Tech — premium korzyści */
.cw-h2-section--tech {
	position: relative;
	background: linear-gradient(180deg, #0a0c14 0%, #080a10 100%);
	padding: clamp(5rem, 11vw, 8rem) 0;
	overflow: hidden;
}

.cw-h2-section--tech::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(26, 92, 255, 0.08) 0%, transparent 65%);
	pointer-events: none;
}

.cw-h2-tech__header {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 40rem;
	margin: 0 auto 3.5rem;
}

.cw-h2-tech__eyebrow {
	margin: 0 0 0.875rem;
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
}

.cw-h2-tech__title {
	margin: 0 0 1rem;
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 500;
	line-height: 1.12;
	letter-spacing: -0.03em;
	color: #fff;
}

.cw-h2-tech__title .cw-h2-accent {
	color: #6b9fff;
}

.cw-h2-tech__lead {
	margin: 0;
	font-size: 1rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.52);
}

.cw-h2-tech {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 2rem;
}

@media (min-width: 1024px) {
	.cw-h2-tech {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr) minmax(0, 1fr);
		gap: clamp(1.5rem, 3vw, 2.5rem);
		align-items: stretch;
	}
}

.cw-h2-tech__nav {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.cw-h2-tech__tab {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
	width: 100%;
	margin: 0;
	padding: 0.8rem 0 0.8rem 1.125rem;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.42);
	font: inherit;
	text-align: left;
	cursor: pointer;
	position: relative;
	transition: color 0.3s ease;
}

.cw-h2-tech__tab::before {
	content: "";
	position: absolute;
	left: -1px;
	top: 0.5rem;
	bottom: 0.5rem;
	width: 2px;
	background: var(--h2-blue);
	transform: scaleY(0);
	transition: transform 0.35s var(--cw-ease, ease);
}

.cw-h2-tech__tab:hover {
	color: rgba(255, 255, 255, 0.78);
}

.cw-h2-tech__tab.is-active {
	color: #fff;
}

.cw-h2-tech__tab.is-active::before {
	transform: scaleY(1);
}

.cw-h2-tech__tab-num {
	flex-shrink: 0;
	font-size: 0.625rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	opacity: 0.5;
	font-variant-numeric: tabular-nums;
	padding-top: 0.2rem;
}

.cw-h2-tech__tab.is-active .cw-h2-tech__tab-num {
	opacity: 1;
	color: #6b9fff;
}

.cw-h2-tech__tab-label {
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	line-height: 1.35;
}

.cw-h2-tech__stage {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	align-self: stretch;
	min-height: 100%;
}

.cw-h2-tech__stage-glow {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 85% 70% at 50% 45%, rgba(26, 92, 255, 0.22) 0%, transparent 68%);
	pointer-events: none;
	z-index: 0;
}

.cw-h2-tech__frame {
	position: relative;
	z-index: 1;
	flex: 1;
	width: 100%;
	min-height: clamp(380px, 48vw, 580px);
	aspect-ratio: 4 / 5;
	background: #080a10;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 6px;
	overflow: hidden;
	box-shadow:
		0 40px 100px rgba(0, 0, 0, 0.55),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

@media (min-width: 1024px) {
	.cw-h2-tech__frame {
		min-height: 100%;
		max-height: min(72vh, 640px);
		aspect-ratio: auto;
	}
}

.cw-h2-tech__slide {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	pointer-events: none;
	transform: scale(1.04);
	transition:
		opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.cw-h2-tech__slide::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		linear-gradient(180deg, rgba(8, 10, 16, 0.45) 0%, transparent 22%, transparent 68%, rgba(8, 10, 16, 0.55) 100%),
		linear-gradient(90deg, rgba(8, 10, 16, 0.35) 0%, transparent 18%, transparent 82%, rgba(8, 10, 16, 0.35) 100%),
		radial-gradient(ellipse 75% 65% at 50% 52%, transparent 25%, rgba(8, 10, 16, 0.4) 100%);
}

.cw-h2-tech__slide.is-active {
	opacity: 1;
	transform: scale(1);
	z-index: 2;
}

.cw-h2-tech__slide.is-leaving {
	opacity: 0;
	z-index: 1;
}

.cw-h2-tech__slide[data-tech-anim="zoom"].is-entering {
	transform: scale(1.06);
}

.cw-h2-tech__slide[data-tech-anim="lift"].is-entering,
.cw-h2-tech__slide[data-tech-anim="lift-soft"].is-entering {
	transform: translateY(5%) scale(0.97);
}

.cw-h2-tech__slide[data-tech-anim="glow"].is-active img {
	animation: cw-tech-img-glow 3s ease-in-out infinite;
}

.cw-h2-tech__slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	border-radius: 0;
	transform: scale(1.06);
	transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.cw-h2-tech__slide.is-active img {
	transform: scale(1);
}

.cw-h2-tech__slide[data-tech-anim="zoom"].is-active img {
	transform: scale(1.03);
}

.cw-h2-tech__slide[data-tech-anim="lift-soft"].is-active img {
	object-position: center 42%;
}

.cw-h2-tech__slide[data-tech-anim="lift"].is-active img {
	object-position: center 38%;
}

@keyframes cw-tech-img-glow {
	0%,
	100% {
		filter: brightness(1) saturate(1);
	}
	50% {
		filter: brightness(1.06) saturate(1.08);
	}
}

.cw-h2-tech__progress {
	width: 100%;
	height: 1px;
	margin-top: 1rem;
	background: rgba(255, 255, 255, 0.12);
	overflow: hidden;
}

.cw-h2-tech__progress-bar {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, var(--h2-blue), #6b9fff);
	transform-origin: left center;
}

.cw-h2-tech__detail {
	display: flex;
	flex-direction: column;
	padding-top: 0.25rem;
}

@media (min-width: 1024px) {
	.cw-h2-tech__detail {
		padding-top: 1.5rem;
	}
}

.cw-h2-tech__counter {
	display: block;
	margin-bottom: 0.75rem;
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	color: rgba(255, 255, 255, 0.35);
	font-variant-numeric: tabular-nums;
}

.cw-h2-tech__benefit {
	margin: 0 0 0.5rem;
	font-size: clamp(1.125rem, 2vw, 1.375rem);
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.25;
	color: #fff;
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.cw-h2-tech__feature-title {
	margin: 0 0 0.875rem;
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(107, 159, 255, 0.9);
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.cw-h2-tech__desc {
	margin: 0 0 1.5rem;
	font-size: 0.9375rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.62);
	max-width: 34ch;
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.cw-h2-tech__detail.is-swapping .cw-h2-tech__benefit,
.cw-h2-tech__detail.is-swapping .cw-h2-tech__feature-title,
.cw-h2-tech__detail.is-swapping .cw-h2-tech__desc,
.cw-h2-tech__detail.is-swapping .cw-h2-tech__bullets {
	opacity: 0;
	transform: translateY(8px);
}

.cw-h2-tech__bullets {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.cw-h2-tech__bullets li {
	position: relative;
	padding-left: 1.125rem;
	font-size: 0.875rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.78);
}

.cw-h2-tech__bullets li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--h2-blue);
	opacity: 0.85;
}

.cw-h2-tech__foot {
	position: relative;
	z-index: 1;
	margin-top: 3rem;
	display: flex;
	justify-content: center;
}

@media (min-width: 768px) {
	.cw-h2-tech__foot {
		justify-content: flex-end;
	}
}

.cw-h2-tech__cta {
	min-width: 14rem;
	padding: 1rem 2.25rem;
	font-size: 0.875rem;
	letter-spacing: 0.03em;
	box-shadow: 0 12px 40px rgba(26, 92, 255, 0.35);
}

@media (max-width: 1023px) {
	.cw-h2-tech__nav {
		flex-direction: row;
		flex-wrap: nowrap;
		overflow-x: auto;
		border-left: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		padding-bottom: 0.5rem;
		scrollbar-width: none;
	}

	.cw-h2-tech__nav::-webkit-scrollbar {
		display: none;
	}

	.cw-h2-tech__tab {
		width: auto;
		flex-shrink: 0;
		padding: 0.65rem 1rem;
	}

	.cw-h2-tech__tab::before {
		display: none;
	}

	.cw-h2-tech__tab.is-active {
		box-shadow: inset 0 -2px 0 var(--h2-blue);
	}

	.cw-h2-tech__frame {
		max-height: 300px;
	}
}

/* Proof — zdjęcie od krawędzi + gradient */
.cw-h2-section--proof {
	padding-bottom: 0;
	overflow: hidden;
}

.cw-h2-proof__intro {
	padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.cw-h2-proof__stats.cw-h2-proof {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (min-width: 768px) {
	.cw-h2-proof__stats.cw-h2-proof {
		grid-template-columns: repeat(4, 1fr);
		gap: 2rem;
	}
}

.cw-h2-proof__n {
	display: block;
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 500;
	letter-spacing: -0.03em;
}

.cw-h2-proof__l {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--h2-gray);
}

.cw-h2-proof__cinema {
	display: grid;
	grid-template-columns: 1fr;
	min-height: clamp(360px, 52vh, 520px);
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

@media (min-width: 900px) {
	.cw-h2-proof__cinema {
		grid-template-columns: minmax(0, 54vw) minmax(0, 1fr);
	}
}

.cw-h2-proof__visual {
	position: relative;
	min-height: clamp(280px, 42vh, 520px);
	overflow: hidden;
	background: #e8e8e4;
}

.cw-h2-proof__visual img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 28% center;
	display: block;
}

.cw-h2-proof__scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		105deg,
		rgba(255, 255, 255, 0.08) 0%,
		rgba(255, 255, 255, 0.35) 38%,
		rgba(255, 255, 255, 0.82) 58%,
		#ffffff 72%
	);
}

@media (min-width: 900px) {
	.cw-h2-proof__scrim {
		background: linear-gradient(
			90deg,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0.25) 42%,
			rgba(255, 255, 255, 0.88) 62%,
			#ffffff 78%
		);
	}
}

@media (max-width: 899px) {
	.cw-h2-proof__scrim {
		background: linear-gradient(
			180deg,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0.35) 55%,
			#ffffff 88%
		);
	}

	.cw-h2-proof__quotes-panel {
		margin-top: -2.5rem;
	}
}

.cw-h2-proof__quotes-panel {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	background: #fff;
	padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 2.5rem);
}

@media (min-width: 900px) {
	.cw-h2-proof__quotes-panel {
		padding: clamp(2.5rem, 4vw, 4rem) clamp(2rem, 5vw, 4rem) clamp(2.5rem, 4vw, 4rem) clamp(1rem, 2vw, 2rem);
		margin-left: -12vw;
	}
}

.cw-h2-proof__quotes {
	width: 100%;
	max-width: 34rem;
	margin: 0 auto;
}

@media (min-width: 900px) {
	.cw-h2-proof__quotes {
		margin: 0;
		margin-left: auto;
	}
}

.cw-h2-proof__quote {
	margin: 0 0 clamp(1.5rem, 3vw, 2rem);
	padding: 0 0 0 clamp(1rem, 2vw, 1.25rem);
	border: 0;
	border-left: 2px solid var(--h2-blue);
}

.cw-h2-proof__quote:last-child {
	margin-bottom: 0;
}

.cw-h2-proof__quote p {
	margin: 0;
	font-size: clamp(1rem, 1.8vw, 1.125rem);
	line-height: 1.55;
	font-style: italic;
	color: var(--h2-black);
	letter-spacing: -0.01em;
}

.cw-h2-proof__quote footer {
	display: block;
	margin-top: 0.65rem;
	font-size: 0.75rem;
	font-style: normal;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--h2-gray);
}

/* Value — premium */
.cw-h2-section--value {
	position: relative;
	background: linear-gradient(180deg, #0a0c14 0%, #06080d 100%);
	overflow: hidden;
}

.cw-h2-section--value::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 55% 45% at 12% 80%, rgba(26, 92, 255, 0.09) 0%, transparent 65%);
	pointer-events: none;
}

.cw-h2-value {
	position: relative;
	z-index: 1;
}

.cw-h2-value__eyebrow,
.cw-h2-compare__eyebrow {
	margin: 0 0 0.875rem;
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
}

.cw-h2-compare__eyebrow {
	color: rgba(10, 10, 10, 0.45);
}

.cw-h2-value__title {
	margin: 0 0 1rem;
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 500;
	line-height: 1.12;
	letter-spacing: -0.03em;
	color: #fff;
	max-width: 16ch;
}

.cw-h2-value__lead {
	margin: 0;
	max-width: 46ch;
	font-size: 1rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.55);
}

.cw-h2-value__grid {
	margin-top: clamp(2.5rem, 5vw, 3.5rem);
	display: grid;
	gap: 2rem;
	align-items: start;
}

@media (min-width: 960px) {
	.cw-h2-value__grid {
		grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
		gap: clamp(2rem, 4vw, 4rem);
		align-items: center;
	}
}

.cw-h2-value__nav {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin: 0;
	padding: 0;
	border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.cw-h2-value__tab {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	width: 100%;
	margin: 0;
	padding: 0.85rem 0 0.85rem 1.25rem;
	border: 0;
	border-radius: 0 4px 4px 0;
	background: transparent;
	text-align: left;
	cursor: pointer;
	color: rgba(255, 255, 255, 0.45);
	font: inherit;
	position: relative;
	transition: color 0.3s ease, padding 0.35s ease;
}

.cw-h2-value__tab::before {
	content: "";
	position: absolute;
	left: -1px;
	top: 0.65rem;
	bottom: 0.65rem;
	width: 2px;
	background: var(--h2-blue);
	transform: scaleY(0);
	transform-origin: center top;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cw-h2-value__tab:hover {
	color: rgba(255, 255, 255, 0.78);
}

.cw-h2-value__tab.is-active {
	color: #fff;
	padding-top: 1rem;
	padding-bottom: 1rem;
	background: linear-gradient(90deg, rgba(26, 92, 255, 0.1) 0%, rgba(26, 92, 255, 0.02) 55%, transparent 100%);
}

.cw-h2-value__tab.is-active::before {
	transform: scaleY(1);
}

.cw-h2-value__num {
	flex-shrink: 0;
	min-width: 1.75rem;
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	color: rgba(107, 159, 255, 0.55);
	font-variant-numeric: tabular-nums;
	padding-top: 0.35rem;
	transition: color 0.3s ease;
}

.cw-h2-value__tab.is-active .cw-h2-value__num {
	color: #6b9fff;
}

.cw-h2-value__tab-body {
	display: flex;
	flex-direction: column;
	gap: 0;
	min-width: 0;
	flex: 1;
}

.cw-h2-value__item-title {
	display: block;
	font-size: 0.9375rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	line-height: 1.35;
	transition: font-size 0.35s ease, letter-spacing 0.35s ease;
}

.cw-h2-value__tab.is-active .cw-h2-value__item-title {
	font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
	letter-spacing: -0.02em;
}

.cw-h2-value__tab-expand {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.cw-h2-value__tab.is-active .cw-h2-value__tab-expand {
	grid-template-rows: 1fr;
}

.cw-h2-value__tab-expand-inner {
	overflow: hidden;
	min-height: 0;
}

.cw-h2-value__item-desc {
	display: block;
	margin-top: 0.4rem;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.7);
}

.cw-h2-value__item-detail {
	display: block;
	margin-top: 0.5rem;
	max-width: 48ch;
	font-size: 0.875rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.42);
}

.cw-h2-value__stage {
	position: relative;
}

.cw-h2-value__stage-glow {
	position: absolute;
	inset: -12% -8%;
	background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(26, 92, 255, 0.14) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}

.cw-h2-value__frame {
	position: relative;
	z-index: 1;
	aspect-ratio: 4 / 5;
	max-height: min(72vh, 640px);
	border-radius: 6px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
}

.cw-h2-value__slide {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	transform: scale(1.04);
	transition: opacity 0.65s ease, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
	pointer-events: none;
}

.cw-h2-value__slide.is-active {
	opacity: 1;
	transform: scale(1);
	pointer-events: auto;
}

.cw-h2-value__slide.is-leaving {
	opacity: 0;
	transform: scale(0.98);
}

.cw-h2-value__slide.is-entering {
	opacity: 0;
}

.cw-h2-value__slide[data-value-anim="zoom"].is-entering,
.cw-h2-value__slide[data-value-anim="zoom"].is-active {
	transform: scale(1);
}

.cw-h2-value__slide[data-value-anim="zoom"].is-leaving {
	transform: scale(1.06);
}

.cw-h2-value__slide[data-value-anim="lift-soft"].is-entering {
	transform: translateY(12px) scale(1.03);
}

.cw-h2-value__slide[data-value-anim="lift-soft"].is-active {
	transform: translateY(0) scale(1);
}

.cw-h2-value__slide::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		linear-gradient(90deg, rgba(8, 10, 16, 0.5) 0%, transparent 28%),
		linear-gradient(180deg, rgba(8, 10, 16, 0.35) 0%, transparent 30%, transparent 70%, rgba(8, 10, 16, 0.4) 100%);
}

.cw-h2-value__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
	transform: scale(1.05);
	transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.cw-h2-value__slide.is-active img {
	transform: scale(1);
}

.cw-h2-value__progress {
	margin-top: 0.75rem;
	height: 2px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 1px;
	overflow: hidden;
}

.cw-h2-value__progress-bar {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, var(--h2-blue), rgba(107, 159, 255, 0.6));
	border-radius: inherit;
}

@media (max-width: 959px) {
	.cw-h2-value__grid {
		grid-template-rows: auto auto;
	}

	.cw-h2-value__stage {
		order: -1;
	}

	.cw-h2-value__frame {
		max-height: 420px;
		aspect-ratio: 16 / 11;
	}

}

/* Compare — arena: duża kolumna CW vs. mniejszy konkurent */
.cw-h2-section--compare {
	background: linear-gradient(180deg, #fafaf8 0%, #f4f4f1 100%);
}

.cw-h2-compare__header {
	text-align: center;
	max-width: 36rem;
	margin: 0 auto clamp(2rem, 5vw, 3rem);
}

.cw-h2-compare__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 500;
	letter-spacing: -0.03em;
	line-height: 1.12;
	color: var(--h2-black);
}

.cw-h2-compare__lead {
	margin: 0;
	font-size: 1rem;
	line-height: 1.65;
	color: var(--h2-gray);
}

.cw-h2-compare__arena {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.35fr) minmax(0, 0.58fr);
	gap: clamp(0.65rem, 2vw, 1.25rem);
	align-items: end;
	max-width: 56rem;
	margin: 0 auto;
	padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 3vw, 1.5rem);
	background: #fff;
	border-radius: 12px;
	border: 1px solid var(--h2-border);
	box-shadow: 0 28px 80px rgba(10, 10, 10, 0.07);
}

.cw-h2-compare__features,
.cw-h2-compare__pillar {
	display: flex;
	flex-direction: column;
}

.cw-h2-compare__features-head,
.cw-h2-compare__pillar-head {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 5.5rem;
	padding: 0 0 1rem;
	margin-bottom: 0.25rem;
}

.cw-h2-compare__features-title {
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--h2-gray);
}

.cw-h2-compare__feature,
.cw-h2-compare__pillar-cell {
	display: flex;
	align-items: center;
	min-height: 3.25rem;
	padding: 0.65rem 0;
	border-bottom: 1px solid rgba(10, 10, 10, 0.06);
	font-size: 0.9375rem;
}

.cw-h2-compare__feature {
	font-weight: 500;
	color: var(--h2-black);
	letter-spacing: -0.01em;
	padding-right: 0.5rem;
}

.cw-h2-compare__feature:last-child,
.cw-h2-compare__pillar-cell:last-child {
	border-bottom: 0;
}

/* Kolumna CleanWave — dominująca */
.cw-h2-compare__pillar--cw {
	position: relative;
	z-index: 2;
	margin-top: -1.25rem;
	margin-bottom: 0.5rem;
	border-radius: 10px;
	overflow: hidden;
	background: linear-gradient(165deg, #0c0f18 0%, #0a0c14 48%, #121826 100%);
	box-shadow:
		0 40px 100px rgba(10, 10, 10, 0.22),
		0 0 0 1px rgba(107, 159, 255, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transform: scale(1.04);
	transform-origin: center bottom;
}

.cw-h2-compare__pillar--cw::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(26, 92, 255, 0.2) 0%, transparent 65%);
	pointer-events: none;
}

.cw-h2-compare__pillar--cw .cw-h2-compare__pillar-head {
	position: relative;
	z-index: 1;
	min-height: 6.25rem;
	padding: 1.35rem 1.25rem 1rem;
	margin-bottom: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
}

.cw-h2-compare__badge {
	display: block;
	margin-bottom: 0.5rem;
	font-size: 0.625rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #6b9fff;
}

.cw-h2-compare__product {
	display: block;
	font-size: clamp(1.125rem, 2.2vw, 1.375rem);
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.2;
	color: #fff;
}

.cw-h2-compare__pillar-tag {
	display: block;
	margin-top: 0.4rem;
	font-size: 0.6875rem;
	color: rgba(255, 255, 255, 0.45);
	letter-spacing: 0.04em;
}

.cw-h2-compare__pillar--cw .cw-h2-compare__pillar-cell {
	position: relative;
	z-index: 1;
	justify-content: center;
	border-bottom-color: rgba(255, 255, 255, 0.08);
	color: #6b9fff;
	min-height: 3.5rem;
}

.cw-h2-compare__pillar--cw .cw-h2-compare__icon {
	width: 1.75rem;
	height: 1.75rem;
}

/* Kolumna konkurenta — mniejsza, przygaszona */
.cw-h2-compare__pillar--rival {
	z-index: 1;
	margin-bottom: 1.5rem;
	border-radius: 6px;
	background: #ecece8;
	border: 1px solid rgba(10, 10, 10, 0.06);
	opacity: 0.82;
	transform: scale(0.9);
	transform-origin: center bottom;
	filter: saturate(0.55);
}

.cw-h2-compare__pillar--rival .cw-h2-compare__pillar-head {
	min-height: 4.25rem;
	padding: 0.85rem 0.65rem 0.75rem;
	text-align: center;
}

.cw-h2-compare__rival-label {
	display: block;
	font-size: 0.625rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(10, 10, 10, 0.38);
}

.cw-h2-compare__rival-note {
	display: block;
	margin-top: 0.25rem;
	font-size: 0.5625rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(10, 10, 10, 0.28);
}

.cw-h2-compare__pillar--rival .cw-h2-compare__pillar-cell {
	justify-content: center;
	min-height: 2.75rem;
	padding: 0.5rem 0;
	color: rgba(10, 10, 10, 0.22);
}

.cw-h2-compare__icon--miss {
	width: 1rem;
	height: 1rem;
	opacity: 0.7;
}

.cw-h2-compare__footnote {
	margin: 1.5rem auto 0;
	max-width: 40rem;
	text-align: center;
	font-size: 0.75rem;
	line-height: 1.5;
	color: rgba(10, 10, 10, 0.4);
}

@media (max-width: 767px) {
	.cw-h2-compare__arena {
		grid-template-columns: minmax(7.25rem, 1fr) minmax(10rem, 1.4fr) minmax(4.75rem, 0.8fr);
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		padding: 1.25rem 1rem;
	}

	.cw-h2-compare__pillar--cw {
		margin-top: -0.5rem;
		transform: scale(1.02);
	}

	.cw-h2-compare__pillar--rival {
		transform: scale(0.92);
		margin-bottom: 0.75rem;
	}

	.cw-h2-compare__feature,
	.cw-h2-compare__pillar-cell {
		font-size: 0.8125rem;
		min-height: 2.85rem;
	}
}

/* Mood / voices — pełna sekcja */
.cw-h2-section--mood {
	position: relative;
	overflow: hidden;
	padding: clamp(4rem, 10vw, 7rem) 0;
	background: linear-gradient(125deg, #06080d 0%, #0a0c14 45%, #0d1018 100%);
}

.cw-h2-mood__visual {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.cw-h2-mood__visual img {
	position: absolute;
	right: -8%;
	top: 50%;
	width: min(58vw, 720px);
	height: auto;
	max-height: 90%;
	object-fit: cover;
	object-position: center;
	transform: translateY(-50%);
	opacity: 0.35;
	filter: saturate(0.85);
}

.cw-h2-mood__visual-scrim {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, #06080d 0%, rgba(6, 8, 13, 0.92) 42%, rgba(6, 8, 13, 0.55) 68%, transparent 100%),
		linear-gradient(180deg, rgba(6, 8, 13, 0.4) 0%, transparent 35%, transparent 75%, rgba(6, 8, 13, 0.65) 100%);
}

.cw-h2-mood {
	position: relative;
	z-index: 1;
}

.cw-h2-mood__grid {
	display: grid;
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: start;
}

@media (min-width: 960px) {
	.cw-h2-mood__grid {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
		gap: clamp(2.5rem, 5vw, 4rem);
	}
}

.cw-h2-mood__eyebrow {
	margin: 0 0 0.875rem;
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
}

.cw-h2-mood__title {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -0.035em;
	color: #fff;
	max-width: 12ch;
}

.cw-h2-mood__title .cw-h2-accent {
	color: #6b9fff;
}

.cw-h2-mood__lead {
	margin: 0;
	max-width: 42ch;
	font-size: 1rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.55);
}

.cw-h2-mood__actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.5rem;
	margin-top: 2rem;
}

.cw-h2-mood__cta {
	min-height: 52px;
}

.cw-h2-mood__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.cw-h2-mood__nav a {
	display: inline-flex;
	align-items: center;
	min-height: 2rem;
	padding: 0 0.875rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
	font-size: 0.6875rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.cw-h2-mood__nav a:hover {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.35);
	background: rgba(255, 255, 255, 0.06);
}

.cw-h2-mood__panel {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.cw-h2-mood__quote {
	margin: 0;
	padding: 0;
	border: 0;
}

.cw-h2-mood__quote--featured {
	padding: clamp(1.5rem, 3vw, 2rem);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.cw-h2-mood__quote--featured p {
	margin: 0 0 1.25rem;
	font-size: clamp(1.0625rem, 2vw, 1.25rem);
	line-height: 1.55;
	font-style: italic;
	color: rgba(255, 255, 255, 0.92);
	letter-spacing: -0.01em;
}

.cw-h2-mood__quote--featured cite {
	display: block;
	font-style: normal;
	font-size: 0.8125rem;
	font-weight: 500;
	color: #fff;
}

.cw-h2-mood__quote--featured cite span {
	display: block;
	margin-top: 0.2rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.45);
}

.cw-h2-mood__quotes-row {
	display: grid;
	gap: 0.75rem;
}

@media (min-width: 640px) {
	.cw-h2-mood__quotes-row {
		grid-template-columns: 1fr 1fr;
	}
}

.cw-h2-mood__quote--compact {
	padding: 1rem 1.125rem;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.cw-h2-mood__quote--compact p {
	margin: 0 0 0.65rem;
	font-size: 0.875rem;
	line-height: 1.5;
	font-style: italic;
	color: rgba(255, 255, 255, 0.78);
}

.cw-h2-mood__quote--compact footer {
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.42);
}

.cw-h2-mood__press {
	padding-top: 0.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cw-h2-mood__press-label {
	margin: 0 0 0.875rem;
	font-size: 0.625rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.35);
}

.cw-h2-mood__press-logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem 1.25rem;
}

.cw-h2-mood__press-logo,
.cw-h2-mood__press-item img {
	display: block;
	max-height: 1.75rem;
	width: auto;
	opacity: 0.55;
	filter: brightness(1.2) grayscale(1);
	transition: opacity 0.25s ease;
}

.cw-h2-mood__press-item a:hover img,
.cw-h2-mood__press-item a:hover .cw-h2-mood__press-logo {
	opacity: 0.9;
}

.cw-h2-mood__press-text {
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.38);
}

@media (max-width: 959px) {
	.cw-h2-mood__visual img {
		right: -25%;
		width: 85vw;
		opacity: 0.22;
	}
}

/* Product teaser — premium */
.cw-h2-section--product {
	background: linear-gradient(180deg, #fff 0%, #f6f6f4 100%);
	padding: clamp(4rem, 10vw, 7rem) 0;
}

.cw-h2-product {
	display: grid;
	gap: clamp(2rem, 5vw, 3rem);
	align-items: center;
}

@media (min-width: 960px) {
	.cw-h2-product {
		grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
		gap: clamp(1.5rem, 3vw, 2.5rem);
	}
}

.cw-h2-product__eyebrow {
	margin: 0 0 0.875rem;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--h2-gray);
}

.cw-h2-product__name {
	font-size: clamp(2.75rem, 7vw, 4.5rem);
	font-weight: 500;
	letter-spacing: -0.045em;
	margin: 0;
	line-height: 0.95;
	color: var(--h2-black);
}

.cw-h2-product__dot {
	color: var(--h2-blue);
}

.cw-h2-product__tagline {
	margin: 1.25rem 0 0;
	max-width: 38ch;
	font-size: 1rem;
	line-height: 1.65;
	color: var(--h2-gray);
}

.cw-h2-product__price-box {
	display: inline-flex;
	flex-direction: column;
	gap: 0.25rem;
	margin-top: 2rem;
	padding: 1rem 1.25rem;
	border-radius: 8px;
	background: #fff;
	border: 1px solid var(--h2-border);
	box-shadow: 0 12px 40px rgba(10, 10, 10, 0.06);
}

.cw-h2-product__price-label {
	font-size: 0.625rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--h2-gray);
}

.cw-h2-product__price {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 500;
	letter-spacing: -0.02em;
	color: var(--h2-black);
}

.cw-h2-product__price .woocommerce-Price-amount {
	font-weight: 500;
}

.cw-h2-product__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.cw-h2-product__cta-primary {
	min-height: 52px;
	padding-inline: 2rem;
}

.cw-h2-product__cta-secondary {
	min-height: 52px;
}

.cw-h2-product__specs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
}

.cw-h2-product__specs li span {
	display: inline-flex;
	align-items: center;
	min-height: 2rem;
	padding: 0 0.875rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid var(--h2-border);
	font-size: 0.8125rem;
	color: var(--h2-black);
}

.cw-h2-product__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem 1.25rem;
	list-style: none;
	margin: 1.25rem 0 0;
	padding: 1.25rem 0 0;
	border-top: 1px solid var(--h2-border);
	font-size: 0.75rem;
	color: var(--h2-gray);
}

.cw-h2-product__trust li {
	position: relative;
	padding-left: 0.875rem;
}

.cw-h2-product__trust li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--h2-blue);
}

.cw-h2-product__stage {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	min-height: clamp(380px, 52vw, 620px);
}

.cw-h2-product__stage-bg {
	position: absolute;
	inset: 0;
	border-radius: 12px;
	background:
		radial-gradient(ellipse 70% 60% at 50% 40%, rgba(26, 92, 255, 0.06) 0%, transparent 70%),
		linear-gradient(165deg, #f0f0ec 0%, #e8e8e4 100%);
	border: 1px solid var(--h2-border);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.85),
		0 32px 80px rgba(10, 10, 10, 0.08);
}

.cw-h2-product__img {
	position: relative;
	z-index: 1;
	flex: 1;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 3vw, 2rem) 0;
	min-height: 0;
}

.cw-h2-product__img img {
	width: 100%;
	max-width: 520px;
	height: 100%;
	max-height: min(58vh, 560px);
	object-fit: contain;
	object-position: center bottom;
	filter: drop-shadow(0 28px 48px rgba(10, 10, 10, 0.12));
}

.cw-h2-product__link-detail {
	position: relative;
	z-index: 1;
	display: block;
	margin-top: auto;
	padding: 1rem 1.25rem 1.25rem;
	text-align: center;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--h2-gray);
	text-decoration: none;
	border-top: 1px solid rgba(10, 10, 10, 0.06);
	background: rgba(255, 255, 255, 0.55);
	border-radius: 0 0 12px 12px;
	transition: color 0.2s ease;
}

.cw-h2-product__link-detail:hover {
	color: var(--h2-black);
}

@media (max-width: 959px) {
	.cw-h2-product__stage {
		order: -1;
		min-height: 360px;
	}

	.cw-h2-product__img img {
		max-height: 320px;
	}
}

/* End stats + blog */
.cw-h2-endstats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	list-style: none;
	margin: 0 0 2rem;
	padding: 0 0 2rem;
	border-bottom: 1px solid var(--h2-border);
}

@media (min-width: 768px) {
	.cw-h2-endstats {
		grid-template-columns: repeat(4, 1fr);
	}
}

.cw-h2-endstats strong {
	display: block;
	font-size: 2rem;
	font-weight: 500;
}

.cw-h2-endstats span {
	font-size: 0.8125rem;
	color: var(--h2-gray);
}

.cw-h2-blog {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.cw-h2-blog {
		grid-template-columns: repeat(3, 1fr);
	}
}

.cw-h2-blog__card {
	border: 1px solid var(--h2-border);
	border-radius: 8px;
	overflow: hidden;
}

.cw-h2-blog__card img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
}

.cw-h2-blog__tag {
	display: block;
	padding: 1rem 1.25rem 0;
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--h2-gray);
}

.cw-h2-blog__card h3 {
	margin: 0.5rem 1.25rem;
	font-size: 1.0625rem;
	font-weight: 500;
}

.cw-h2-blog__card time {
	display: block;
	padding: 0 1.25rem 1.25rem;
	font-size: 0.8125rem;
	color: var(--h2-gray);
}
