/**
 * CleanWave — strona główna v3 (mockup cleanwave_main).
 */

.cw-home-v3 {
	--h3-accent: var(--cw-font-accent, "Playfair Display", Georgia, serif);
	overflow-x: clip;
}

.cw-h3-accent {
	font-family: var(--h3-accent);
	font-style: italic;
	font-weight: 400;
	color: var(--cw-blue);
}

/* —— Przyciski —— */
.cw-h3-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.75rem 1.75rem;
	border-radius: var(--cw-btn-radius);
	font-family: var(--cw-font);
	font-size: 0.9375rem;
	font-weight: 600;
	text-decoration: none;
	border: 2px solid transparent;
	cursor: pointer;
	transition: background 0.25s var(--cw-ease), color 0.25s var(--cw-ease), border-color 0.25s var(--cw-ease), transform 0.2s var(--cw-ease);
}

.cw-h3-btn:active {
	transform: scale(0.98);
}

.cw-h3-btn--primary {
	background: var(--cw-blue);
	color: var(--cw-white);
}

.cw-h3-btn--primary:hover {
	background: var(--cw-blue-hover);
	color: var(--cw-white);
}

.cw-h3-btn--soft {
	background: var(--cw-blue-pastel);
	color: var(--cw-blue);
}

.cw-h3-btn--soft:hover {
	background: var(--cw-blue);
	color: var(--cw-white);
}

.cw-h3-btn--ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.6);
	color: var(--cw-white);
}

.cw-h3-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.12);
	color: var(--cw-white);
}

/* —— Nagłówki sekcji —— */
.cw-h3-section {
	padding: var(--cw-section-pad) 0;
}

.cw-h3-section__head {
	margin-bottom: clamp(2rem, 4vw, 3rem);
	max-width: 52rem;
}

.cw-h3-section__head--center {
	margin-inline: auto;
	text-align: center;
}

.cw-h3-section__eyebrow {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 0.5rem;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(107, 107, 107, 0.42);
}

.cw-h3-section__head--center .cw-h3-section__eyebrow {
	justify-content: center;
}

.cw-h3-section__eyebrow-wave {
	display: block;
	width: 1.35rem;
	height: auto;
	flex-shrink: 0;
	opacity: 0.45;
}

.cw-h3-section__title {
	margin: 0 0 0.75rem;
	font-family: var(--cw-font-heading);
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 600;
	line-height: 1.12;
	color: var(--cw-black);
}

.cw-h3-section__lead {
	margin: 0;
	font-size: clamp(0.9375rem, 2vw, 1.0625rem);
	line-height: 1.65;
	color: var(--cw-gray);
	max-width: 48ch;
}

.cw-h3-section__head--center .cw-h3-section__lead {
	margin-inline: auto;
}

@media (min-width: 768px) {
	.cw-home-v3 .cw-h3-section__head,
	.cw-home-v3 .cw-h3-section__title,
	.cw-home-v3 .cw-h3-section__lead {
		max-width: none;
	}

	.cw-home-v3 .cw-h3-section__lead {
		white-space: nowrap;
	}
}

/* —— Sekcja 1: Hero —— */
.cw-h3-hero {
	position: relative;
	background: var(--cw-white);
}

.cw-h3-hero__stage {
	position: relative;
	--cw-h3-word-max: 1320px;
	--cw-h3-word-top: clamp(2rem, 5vw, 3.5rem);
	--cw-h3-word-size: clamp(4.5rem, 23vw, 17.5rem);
	--cw-h3-word-band-h: calc(var(--cw-h3-word-size) * 0.62);
	--cw-h3-water-top: calc(var(--cw-h3-word-top) + var(--cw-h3-word-band-h));
	--cw-h3-content-depth: clamp(28rem, 44vw, 34rem);
	min-height: calc(var(--cw-h3-water-top) + var(--cw-h3-content-depth));
	padding: 0;
	overflow: hidden;
	background: var(--cw-white);
}

/* Biały pas za napisem — fale zaczynają się dopiero poniżej */
.cw-h3-hero__word-band {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: var(--cw-h3-water-top);
	background: var(--cw-white);
	z-index: 2;
}

.cw-h3-hero__word {
	position: absolute;
	top: var(--cw-h3-word-top);
	left: 50%;
	transform: translateX(-50%);
	width: min(100%, var(--cw-h3-word-max));
	max-width: var(--cw-h3-word-max);
	margin: 0;
	padding: 0 var(--cw-content-gutter);
	box-sizing: border-box;
	text-align: center;
	pointer-events: none;
	z-index: 5;
}

.cw-h3-hero__word-text {
	display: block;
	width: 100%;
	font-family: var(--cw-font-bamboy);
	font-size: var(--cw-h3-word-size);
	font-weight: 400;
	line-height: 0.82;
	letter-spacing: -0.025em;
	color: var(--cw-blue);
	white-space: nowrap;
}

/* Niebieska woda — jeden kształt: biała zatoka na copy po lewej, grzywa po prawej */
.cw-h3-hero__water {
	position: absolute;
	left: 0;
	right: 0;
	top: var(--cw-h3-water-top);
	bottom: 0;
	z-index: 3;
	color: var(--cw-blue);
	overflow: hidden;
	pointer-events: none;
}

.cw-h3-hero__water-svg {
	display: block;
	width: 106%;
	height: 100%;
	margin-left: -3%;
	animation: cw-h3-water-slide 20s ease-in-out infinite alternate;
}

@keyframes cw-h3-water-slide {
	0% { transform: translateX(-1.5%); }
	100% { transform: translateX(1.5%); }
}

.cw-h3-hero__product {
	position: absolute;
	left: 50%;
	top: calc(var(--cw-h3-word-top) - clamp(0.5rem, 1.5vw, 1rem));
	transform: translateX(-50%);
	z-index: 6;
	width: min(36vw, 19rem);
	pointer-events: none;
}

.cw-h3-hero__product::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 2%;
	transform: translateX(-50%);
	width: 55%;
	height: 18%;
	background: radial-gradient(ellipse at center, rgba(47, 141, 247, 0.55) 0%, rgba(47, 141, 247, 0.15) 45%, transparent 72%);
	filter: blur(6px);
	z-index: -1;
}

.cw-h3-hero__product-img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 18px 36px rgba(47, 141, 247, 0.2));
}

/* Copy — wyśrodkowane w białej fali (grzbiet na 25% szerokości) */
.cw-h3-hero__copy {
	position: absolute;
	left: 25%;
	bottom: clamp(14.25rem, 24vw, 17.75rem);
	top: auto;
	transform: translateX(-50%);
	z-index: 7;
	max-width: min(22rem, 38vw);
	--h3-copy-muted: #1778dd;
	--h3-copy-accent: #1778dd;
	font-family: var(--cw-font);
	color: var(--h3-copy-muted);
}

.cw-h3-hero__eyebrow {
	margin: 0 0 0.45rem;
	font-size: 0.875rem;
	font-weight: 400;
	color: var(--h3-copy-muted);
	line-height: 1.35;
}

.cw-h3-hero__title {
	margin: 0;
	font-family: inherit;
	font-size: clamp(1.75rem, 3.2vw, 2.25rem);
	font-weight: 400;
	color: var(--h3-copy-accent);
	line-height: 1.06;
	letter-spacing: -0.015em;
}

.cw-h3-hero__title-model {
	font-weight: 700;
}

.cw-h3-hero__title sup {
	font-size: 0.42em;
	font-weight: 700;
	top: -0.4em;
}

.cw-h3-hero__title-rule {
	display: block;
	width: 2.35rem;
	height: 1px;
	margin: 0.5rem 0 1rem;
	background: var(--h3-copy-muted);
	opacity: 0.55;
}

.cw-h3-hero__price-label {
	margin: 0 0 0.2rem;
	font-size: clamp(0.9375rem, 1.55vw, 1.0625rem);
	font-weight: 400;
	color: var(--h3-copy-muted);
	line-height: 1.35;
}

.cw-h3-hero__buy-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.55rem 1rem;
	margin: 0 0 0.45rem;
}

.cw-h3-hero__price-value {
	font-family: inherit;
	font-size: clamp(1.75rem, 3.2vw, 2.25rem);
	font-weight: 700;
	color: var(--h3-copy-accent);
	line-height: 1;
	letter-spacing: -0.015em;
}

.cw-h3-hero__price-value .woocommerce-Price-amount,
.cw-h3-hero__price-value bdi {
	color: inherit;
	font: inherit;
	font-weight: inherit;
}

.cw-h3-hero__price-value .woocommerce-Price-currencySymbol {
	font: inherit;
	font-weight: inherit;
}

.cw-h3-hero__cta.cw-h3-btn {
	min-height: auto;
	padding: 0.7rem 1.45rem;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	border: 0;
	border-radius: var(--cw-btn-radius);
	background: var(--h3-copy-accent);
	color: var(--cw-white);
	box-shadow: none;
}

.cw-h3-hero__cta.cw-h3-btn:hover {
	background: var(--cw-blue-hover);
	color: var(--cw-white);
}

.cw-h3-hero__finance {
	margin: 0;
	font-size: 0.875rem;
	font-weight: 400;
	color: var(--h3-copy-muted);
	line-height: 1.35;
}

/* Na niebieskiej części — prawo od toalety */
/* Watch Video — wyśrodkowany w niebieskiej fali (dolina na 75% szerokości) */
.cw-h3-hero__video-wrap {
	position: absolute;
	left: 75%;
	bottom: clamp(20rem, 33vw, 24.5rem);
	top: auto;
	transform: translateX(-50%);
	z-index: 7;
	display: flex;
	align-items: center;
}

.cw-h3-hero__video-btn {
	display: inline-flex;
	align-items: center;
	gap: clamp(0.85rem, 1.6vw, 1.15rem);
	padding: 0.35rem 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--cw-white);
	font-family: var(--cw-font);
	font-size: clamp(1.25rem, 2.2vw, 1.625rem);
	font-weight: 400;
	line-height: 1.1;
	cursor: pointer;
	box-shadow: none;
	outline: none;
	appearance: none;
	-webkit-tap-highlight-color: transparent;
	transition: color 0.25s var(--cw-ease);
}

.cw-h3-hero__video-btn:hover,
.cw-h3-hero__video-btn:focus,
.cw-h3-hero__video-btn:focus-visible,
.cw-h3-hero__video-btn:active {
	background: transparent;
	color: var(--cw-white);
	outline: none;
	box-shadow: none;
}

.cw-h3-hero__video-btn[aria-disabled="true"] {
	cursor: default;
}

.cw-h3-hero__video-icon {
	position: relative;
	display: grid;
	place-items: center;
	flex-shrink: 0;
	width: clamp(3.5rem, 5.75vw, 4.25rem);
	height: clamp(3.5rem, 5.75vw, 4.25rem);
	border-radius: 50%;
	background: transparent;
	border: 0;
	overflow: visible;
}

.cw-h3-hero__video-icon::before {
	content: "";
	position: absolute;
	inset: -55%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.45) 38%, rgba(255, 255, 255, 0.12) 58%, transparent 74%);
	opacity: 0;
	transform: scale(0.75);
	transition: opacity 0.3s var(--cw-ease), transform 0.3s var(--cw-ease);
	z-index: 0;
	pointer-events: none;
}

.cw-h3-hero__video-svg {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	overflow: visible;
	transition: filter 0.3s var(--cw-ease);
}

.cw-h3-hero__video-ring {
	fill: none;
	stroke: var(--cw-white);
	stroke-width: 1.75;
	transition: fill 0.28s var(--cw-ease), stroke 0.28s var(--cw-ease);
}

.cw-h3-hero__video-play {
	fill: var(--cw-white);
	transition: fill 0.28s var(--cw-ease);
}

.cw-h3-hero__video-btn:hover .cw-h3-hero__video-icon::before,
.cw-h3-hero__video-btn:focus-visible .cw-h3-hero__video-icon::before {
	opacity: 1;
	transform: scale(1);
}

.cw-h3-hero__video-btn:hover .cw-h3-hero__video-svg,
.cw-h3-hero__video-btn:focus-visible .cw-h3-hero__video-svg {
	filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.55)) drop-shadow(0 0 24px rgba(255, 255, 255, 0.35));
}

.cw-h3-hero__video-btn:hover .cw-h3-hero__video-ring,
.cw-h3-hero__video-btn:focus-visible .cw-h3-hero__video-ring {
	fill: var(--cw-white);
	stroke: var(--cw-white);
}

.cw-h3-hero__video-btn:hover .cw-h3-hero__video-play,
.cw-h3-hero__video-btn:focus-visible .cw-h3-hero__video-play {
	fill: #1778dd;
}

.cw-h3-hero__video-label {
	letter-spacing: 0.01em;
}

.cw-h3-hero__video-label strong {
	font-weight: 700;
}

/* Benefits bar — falowy pas: jasne fale na zewnątrz, mocniejszy niebieski w środku */
.cw-h3-benefits {
	position: relative;
	z-index: 4;
	background: var(--cw-white);
	padding: 0;
	margin-top: clamp(-8rem, -12vw, -9rem);
	font-family: var(--cw-font);
}

.cw-h3-benefits__wave {
	display: block;
	width: 100%;
	height: clamp(3rem, 6.5vw, 4.75rem);
}

.cw-h3-benefits__wave--top {
	margin-bottom: -1px;
}

.cw-h3-benefits__wave--bottom {
	margin-top: -1px;
}

.cw-h3-benefits__band {
	background: #5aa8ff;
	padding: clamp(0.35rem, 1vw, 0.75rem) 0;
}

.cw-h3-benefits__list {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem 1.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.cw-h3-benefits__item {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
}

.cw-h3-benefits__pill {
	display: none;
}

.cw-h3-benefits__detail {
	display: contents;
}

.cw-h3-benefits__lead {
	font-family: inherit;
	font-size: clamp(1.25rem, 2.2vw, 1.5rem);
	font-weight: 700;
	color: var(--cw-white);
	line-height: 1.1;
}

.cw-h3-benefits__label {
	font-family: inherit;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--cw-white);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.cw-h3-benefits__desc {
	margin-top: 0.45rem;
	font-size: 0.75rem;
	line-height: 1.5;
	color: var(--cw-white);
	opacity: 0.92;
	max-width: 15rem;
}

/* Modal video */
.cw-h3-modal[hidden] {
	display: none !important;
}

.cw-h3-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
}

.cw-h3-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, 0.72);
	backdrop-filter: blur(4px);
}

.cw-h3-modal__dialog {
	position: relative;
	width: min(22.5rem, 100%, calc((100vh - 3rem) * 9 / 16));
	background: var(--cw-black);
	border-radius: var(--cw-radius-lg);
	overflow: hidden;
	box-shadow: var(--cw-shadow-md);
}

.cw-h3-modal__close {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	color: var(--cw-white);
	font-family: inherit;
	font-size: 1.5rem;
	font-weight: 300;
	line-height: 1;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}

.cw-h3-modal__video-wrap {
	position: relative;
	aspect-ratio: 9 / 16;
	width: 100%;
}

.cw-h3-modal__iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* —— Sekcja 2: Pillars — pastelowy pas za tekstem; lekki występ zdjęcia i falki —— */
.cw-h3-pillars {
	position: relative;
	margin-top: clamp(3rem, 6vw, 5rem);
	padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(2.5rem, 5vw, 4rem);
	background: var(--cw-white);
	overflow: visible;
}

.cw-h3-pillars__inner {
	position: relative;
	z-index: 2;
}

/* Pas tła — obejmuje nagłówek i zakładki; zostawia niewielki margines na występ zdjęcia */
.cw-h3-pillars__band {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: clamp(2.25rem, 5vw, 3.75rem);
	z-index: 0;
	display: flex;
	flex-direction: column;
	pointer-events: none;
}

.cw-h3-pillars--has-watermark {
	overflow: hidden;
}

.cw-h3-pillars--has-watermark .cw-h3-pillars__band {
	bottom: 0;
	overflow: hidden;
}

.cw-h3-pillars__band-fill {
	flex: 1;
	position: relative;
	background: var(--cw-blue-pastel-light);
}

/* Znak wodny — ten sam kształt fal co pastelowe tło */
.cw-h3-pillars__band-media {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: flex;
	flex-direction: column;
	pointer-events: none;
	--cw-pillars-wave-mask-top: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 72' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' d='M0,72 L0,24 C180,52 360,8 540,36 C720,64 900,16 1080,44 C1260,72 1440,28 1440,28 L1440,72 Z'/%3E%3C/svg%3E");
	--cw-pillars-wave-mask-bottom: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 72' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' d='M0,0 L0,48 C180,20 360,64 540,36 C720,8 900,56 1080,28 C1260,0 1440,44 1440,44 L1440,0 Z'/%3E%3C/svg%3E");
}

.cw-h3-pillars__media-top,
.cw-h3-pillars__media-fill,
.cw-h3-pillars__media-bottom {
	position: relative;
	background-image: var(--cw-pillars-bg-image);
	background-size: cover;
	background-position: 72% center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.cw-h3-pillars__media-top::after,
.cw-h3-pillars__media-fill::after,
.cw-h3-pillars__media-bottom::after {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--cw-blue-pastel-light);
	opacity: 0.8;
	pointer-events: none;
}

.cw-h3-pillars__media-top {
	flex-shrink: 0;
	height: clamp(1.5rem, 3vw, 2.25rem);
	-webkit-mask-image: var(--cw-pillars-wave-mask-top);
	mask-image: var(--cw-pillars-wave-mask-top);
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}

.cw-h3-pillars__media-top::after {
	-webkit-mask-image: inherit;
	mask-image: inherit;
	-webkit-mask-size: inherit;
	mask-size: inherit;
	-webkit-mask-repeat: inherit;
	mask-repeat: inherit;
}

.cw-h3-pillars__media-fill {
	flex: 1;
}

.cw-h3-pillars__media-bottom {
	flex-shrink: 0;
	height: clamp(1.5rem, 3vw, 2.25rem);
	-webkit-mask-image: var(--cw-pillars-wave-mask-bottom);
	mask-image: var(--cw-pillars-wave-mask-bottom);
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}

.cw-h3-pillars__media-bottom::after {
	-webkit-mask-image: inherit;
	mask-image: inherit;
	-webkit-mask-size: inherit;
	mask-size: inherit;
	-webkit-mask-repeat: inherit;
	mask-repeat: inherit;
}

.cw-h3-pillars__wave {
	display: block;
	width: 100%;
	height: clamp(1.5rem, 3vw, 2.25rem);
	flex-shrink: 0;
	color: var(--cw-blue-pastel-light);
}

.cw-h3-pillars__wave--top {
	margin-bottom: -1px;
}

.cw-h3-pillars__wave--bottom {
	margin-top: -1px;
}

.cw-h3-pillars .cw-h3-section__head {
	margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
}

.cw-h3-pillars__nav-wrap {
	position: relative;
}

.cw-h3-pillars__layout {
	display: grid;
	gap: 2rem;
}

.cw-h3-pillars__nav {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.cw-h3-pillars__tab {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	width: 100%;
	padding: 1rem 0 1rem 1rem;
	border: 0;
	border-left: 3px solid transparent;
	background: transparent;
	text-align: left;
	cursor: pointer;
	transition: border-color 0.25s var(--cw-ease), opacity 0.25s var(--cw-ease);
	opacity: 0.45;
}

.cw-h3-pillars__tab:hover,
.cw-h3-pillars__tab:focus,
.cw-h3-pillars__tab:focus-visible,
.cw-h3-pillars__tab:active {
	background: transparent;
	color: inherit;
	box-shadow: none;
	outline: none;
	opacity: 0.8;
}

.cw-h3-pillars__tab:focus-visible {
	border-left-color: var(--cw-blue);
}

.cw-h3-pillars__tab.is-active,
.cw-h3-pillars__tab.is-active:hover,
.cw-h3-pillars__tab.is-active:focus,
.cw-h3-pillars__tab.is-active:active {
	border-left-color: var(--cw-blue);
	background: transparent;
	opacity: 1;
}

.cw-h3-pillars__tab-num {
	font-family: var(--cw-font-heading);
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--cw-blue);
	min-width: 1.75rem;
}

.cw-h3-pillars__tab-title {
	display: block;
	font-family: var(--cw-font-heading);
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--cw-black);
	margin-bottom: 0.25rem;
}

.cw-h3-pillars__tab-desc {
	display: block;
	font-size: 0.875rem;
	line-height: 1.55;
	color: var(--cw-gray);
}

.cw-h3-pillars__tab:not(.is-active) .cw-h3-pillars__tab-desc {
	display: none;
}

.cw-h3-pillars__visual {
	position: relative;
	z-index: 3;
	min-height: clamp(14rem, 28vw, 24rem);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: clamp(-2.5rem, -5vw, -3.5rem);
}

.cw-h3-pillars__panel[hidden] {
	display: none;
}

.cw-h3-pillars__carousel {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 0.75rem;
}

.cw-h3-pillars__circle {
	position: relative;
	width: clamp(14rem, 28vw, 26rem);
	aspect-ratio: 1;
	margin-inline: auto;
	overflow: visible;
	background: transparent;
}

.cw-h3-pillars__slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	opacity: 0;
	transform: scale(1.04);
	transition: opacity 0.55s var(--cw-ease), transform 0.8s var(--cw-ease);
}

.cw-h3-pillars__slide.is-active {
	opacity: 1;
	transform: scale(1);
}

/* Wygaszone podglądy poprzedniej/następnej grafiki po bokach */
.cw-h3-carousel__ghost {
	position: relative;
	width: clamp(5rem, 10vw, 9.5rem);
	aspect-ratio: 1;
	padding: 0;
	border: 0;
	overflow: visible;
	background: transparent;
	opacity: 0.35;
	filter: saturate(0.7);
	cursor: pointer;
	transition: opacity 0.3s var(--cw-ease), transform 0.3s var(--cw-ease);
	flex-shrink: 0;
	align-self: center;
}

/* Gradientowe wygaszenie: poprzedni znika w lewo, następny w prawo */
.cw-h3-carousel__ghost--prev {
	-webkit-mask-image: linear-gradient(to left, #000 25%, transparent 92%);
	mask-image: linear-gradient(to left, #000 25%, transparent 92%);
}

.cw-h3-carousel__ghost--next {
	-webkit-mask-image: linear-gradient(to right, #000 25%, transparent 92%);
	mask-image: linear-gradient(to right, #000 25%, transparent 92%);
}

.cw-h3-carousel__ghost img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	opacity: 1;
	transition: opacity 0.2s var(--cw-ease);
}

.cw-h3-carousel__ghost img.is-switching {
	opacity: 0;
}

.cw-h3-carousel__ghost:hover,
.cw-h3-carousel__ghost:focus-visible {
	opacity: 0.65;
	transform: scale(1.05);
}

.cw-h3-carousel__dots {
	grid-column: 1 / -1;
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 0.5rem;
}

.cw-h3-carousel__dot {
	width: 0.5rem;
	height: 0.5rem;
	border: 0;
	border-radius: 50%;
	background: var(--cw-border);
	cursor: pointer;
	padding: 0;
}

.cw-h3-carousel__dot.is-active {
	background: var(--cw-blue);
	transform: scale(1.2);
}

/* —— Sekcja 3: Features —— */
.cw-h3-features {
	background: var(--cw-white);
	padding-bottom: clamp(3rem, 6vw, 5rem);
}

.cw-h3-features__track-wrap {
	position: relative;
	overflow: visible;
}

.cw-h3-features__track {
	--cw-h3-feature-gap: 0.35rem;
	--cw-h3-feature-visible: 4.12;
	--cw-h3-feature-shadow-room: clamp(1.5rem, 3vw, 2.5rem);
	display: flex;
	align-items: center;
	gap: var(--cw-h3-feature-gap);
	padding:
		var(--cw-h3-feature-shadow-room)
		0
		calc(var(--cw-h3-feature-shadow-room) + 0.75rem)
		var(--cw-content-gutter);
	overflow-x: auto;
	overflow-y: visible;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.cw-h3-features__track::-webkit-scrollbar {
	display: none;
}

.cw-h3-features__card {
	--cw-h3-feature-card-size: clamp(
		14.5rem,
		calc((100vw - 2 * var(--cw-content-gutter) - 3 * var(--cw-h3-feature-gap)) / var(--cw-h3-feature-visible)),
		20rem
	);
	flex: 0 0 var(--cw-h3-feature-card-size);
	align-self: center;
	scroll-snap-align: center;
	position: relative;
	z-index: 1;
	margin: 0;
	overflow: visible;
	cursor: pointer;
	filter: drop-shadow(0 10px 24px rgba(47, 141, 247, 0.14));
	transition: filter 0.35s var(--cw-ease), z-index 0s;
}

.cw-h3-features__card.is-center {
	z-index: 4;
	filter:
		drop-shadow(0 14px 34px rgba(47, 141, 247, 0.22))
		drop-shadow(0 6px 14px rgba(47, 141, 247, 0.1));
}

.cw-h3-features__card-media {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: var(--cw-radius-lg);
	overflow: hidden;
	background: var(--cw-blue);
	transform: scale(1);
	transform-origin: center center;
	transition: transform 0.4s var(--cw-ease);
	will-change: transform;
}

.cw-h3-features__card.is-center .cw-h3-features__card-media {
	transform: scale(1.18);
}

.cw-h3-features__card-media::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: var(--cw-blue);
	opacity: 0;
	transition: opacity 0.35s var(--cw-ease);
	pointer-events: none;
}

.cw-h3-features__card:not(.is-center) .cw-h3-features__card-media::before {
	opacity: 0.48;
}

.cw-h3-features__card-media::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(0deg, rgba(47, 141, 247, 0.72) 0%, rgba(47, 141, 247, 0.22) 40%, transparent 62%);
	pointer-events: none;
}

.cw-h3-features__card.is-center .cw-h3-features__card-media::after {
	background: linear-gradient(0deg, rgba(47, 141, 247, 0.7) 0%, rgba(90, 168, 255, 0.18) 38%, transparent 58%);
}

.cw-h3-features__card:not(.is-center) .cw-h3-features__card-media::after {
	background: linear-gradient(0deg, rgba(13, 74, 138, 0.38) 0%, rgba(47, 141, 247, 0.1) 45%, transparent 100%);
}

.cw-h3-features__card-photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cw-h3-features__card-open-wrap {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	left: auto;
	z-index: 3;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	gap: 0.5rem;
	transform: none;
	pointer-events: none;
}

.cw-h3-features__card-cta {
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--cw-white);
	white-space: nowrap;
	opacity: 0;
	max-width: 0;
	overflow: hidden;
	transition: opacity 0.3s var(--cw-ease), max-width 0.3s var(--cw-ease);
}

.cw-h3-features__card.is-center .cw-h3-features__card-cta {
	opacity: 1;
	max-width: 7rem;
}

.cw-h3-features__open {
	display: grid;
	place-items: center;
	width: 2.25rem;
	height: 2.25rem;
	padding: 0;
	border: 2px solid rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	color: var(--cw-blue);
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1;
	cursor: pointer;
	pointer-events: auto;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
	transition: background 0.25s var(--cw-ease), transform 0.25s var(--cw-ease), color 0.25s var(--cw-ease);
	appearance: none;
	-webkit-appearance: none;
	flex-shrink: 0;
}

.cw-h3-features__card.is-center .cw-h3-features__open {
	width: 2.5rem;
	height: 2.5rem;
	font-size: 1.3rem;
	background: rgba(90, 168, 255, 0.92);
	color: var(--cw-white);
	border-color: rgba(255, 255, 255, 0.65);
	box-shadow: 0 8px 24px rgba(47, 141, 247, 0.35);
}

.cw-h3-features__open:hover,
.cw-h3-features__open:focus-visible {
	background: var(--cw-blue);
	color: var(--cw-white);
	transform: scale(1.06);
}

.cw-h3-features__card-overlay {
	position: absolute;
	inset: auto 0 0;
	z-index: 2;
	padding: 1rem 0.85rem 0.9rem;
	background: transparent;
	color: var(--cw-white);
}

.cw-h3-features__card-wave {
	display: block;
	width: 1.25rem;
	max-width: 1.25rem;
	height: auto;
	margin-bottom: 0.35rem;
	flex-shrink: 0;
	object-fit: contain;
}

.cw-h3-features__card-title {
	margin: 0;
	font-family: var(--cw-font-heading);
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.2;
}

.cw-h3-features__dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	margin-top: 0.75rem;
	padding: 0 var(--cw-content-gutter);
}

.cw-h3-features__dot {
	width: 0.5rem;
	height: 0.5rem;
	padding: 0;
	border: 2px solid var(--cw-blue);
	border-radius: 999px;
	background: transparent;
	cursor: pointer;
	transition: width 0.3s var(--cw-ease), background 0.3s var(--cw-ease);
	flex-shrink: 0;
}

.cw-h3-features__dot.is-active {
	width: 1.75rem;
	background: var(--cw-blue);
}

/* Feature popup */
.cw-h3-feature-modal[hidden] {
	display: none !important;
}

.cw-h3-feature-modal {
	position: fixed;
	inset: 0;
	z-index: 100001;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(0.65rem, 2vh, 1rem) 1.25rem clamp(2.25rem, 9vh, 3.75rem);
}

.cw-h3-feature-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, 0.72);
	backdrop-filter: blur(8px);
}

.cw-h3-feature-modal__frame {
	--cw-h3-modal-brand-offset: clamp(1.85rem, 5vw, 2.4rem);
	--cw-h3-modal-scroll-inset: 0.7rem;
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: min(34rem, 92vw) auto;
	grid-template-rows: 1fr auto;
	column-gap: 0.85rem;
	row-gap: 0.75rem;
	align-items: start;
	max-height: min(92vh, 54rem);
	width: min(calc(34rem + 2.5rem), 96vw);
}

.cw-h3-feature-modal__shell {
	position: relative;
	grid-column: 1;
	grid-row: 1;
	display: flex;
	flex-direction: column;
	width: 100%;
	min-width: 0;
	background: transparent;
	box-shadow: none;
	overflow: visible;
}

.cw-h3-feature-modal__brand {
	position: relative;
	z-index: 2;
	flex-shrink: 0;
	margin: 0 0 0.3rem;
	padding-left: 0.15rem;
	pointer-events: none;
}

.cw-h3-feature-modal__brand-img {
	display: block;
	width: clamp(4.5rem, 13vw, 6rem);
	height: auto;
	object-fit: contain;
}

.cw-h3-feature-modal__brand-img.is-inverted {
	filter: brightness(0) invert(1);
}

.cw-h3-feature-modal__panel {
	position: relative;
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 0;
	max-height: calc(min(92vh, 54rem) - var(--cw-h3-modal-brand-offset));
	background: transparent;
	border-radius: 0;
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
	overflow: visible;
}

.cw-h3-feature-modal__close {
	position: absolute;
	top: clamp(0.45rem, 1.6vw, 0.7rem);
	right: clamp(-0.2rem, -0.8vw, -0.05rem);
	z-index: 4;
	display: grid;
	place-items: center;
	width: 2.35rem;
	height: 2.35rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--cw-blue-deep);
	color: var(--cw-white);
	font-family: inherit;
	font-size: 1.25rem;
	font-weight: 300;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
	appearance: none;
	-webkit-appearance: none;
}

.cw-h3-feature-modal__block-photo,
.cw-h3-feature-modal__block-media-stack > .cw-h3-feature-modal__block-video,
.cw-h3-feature-modal__block-media-stack > .cw-h3-feature-modal__block-video-file {
	display: block;
	width: 100%;
	height: auto;
	border-radius: var(--cw-radius);
	box-shadow: 0 14px 32px rgba(47, 141, 247, 0.18);
}

.cw-h3-feature-modal__nav {
	display: none;
}

.cw-h3-feature-modal__scroll {
	flex: 1;
	min-height: 0;
	overflow-y: auto;
	padding: 0.35rem 1.5rem 1.1rem;
	background: var(--cw-white);
	scrollbar-width: none;
}

.cw-h3-feature-modal__scroll::-webkit-scrollbar {
	display: none;
}

.cw-h3-feature-modal__wave {
	display: block;
	width: 100%;
	height: clamp(2rem, 5vw, 2.75rem);
	flex-shrink: 0;
	color: var(--cw-white);
	pointer-events: none;
}

.cw-h3-feature-modal__wave--top {
	margin-bottom: -1px;
}

.cw-h3-feature-modal__wave--bottom {
	margin-top: -1px;
}

.cw-h3-feature-modal__eyebrow {
	margin: 0 0 0.15rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(107, 107, 107, 0.55);
}

.cw-h3-feature-modal__title {
	margin: 0 0 1.35rem;
	font-family: var(--cw-font-heading);
	font-size: clamp(1.2rem, 3.2vw, 1.5rem);
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: var(--cw-black);
}

.cw-h3-feature-modal__block {
	position: relative;
	margin-bottom: 0.85rem;
	padding: 1rem 1rem 3.25rem;
	border-radius: var(--cw-radius-lg);
	background: var(--cw-blue-pastel-light);
}

.cw-h3-feature-modal__block.is-featured {
	padding: 0;
	margin-bottom: 1.35rem;
	background: transparent;
	overflow: visible;
}

.cw-h3-feature-modal__block-featured-panel {
	position: relative;
	overflow: visible;
	border-radius: var(--cw-radius-lg);
	background: transparent;
}

.cw-h3-feature-modal__block-featured-panel > .cw-h3-feature-modal__block-copy {
	padding: 1rem 1rem 0.35rem;
	border-radius: var(--cw-radius-lg) var(--cw-radius-lg) 0 0;
	background: linear-gradient(180deg, #c3e4fd 0%, #a8d4fa 48%, #95c8f7 100%);
}

.cw-h3-feature-modal__block.is-featured .cw-h3-feature-modal__block-media {
	--cw-h3-media-icon-space: clamp(1.65rem, 5vw, 2.1rem);
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
	margin: 0 0 -1.15rem;
	padding: 0 0.85rem;
}

.cw-h3-feature-modal__block-media-blue {
	display: block;
	grid-area: 1 / 1;
	align-self: start;
	justify-self: stretch;
	width: 100%;
	height: calc(var(--cw-h3-media-icon-space) + (100% - var(--cw-h3-media-icon-space)) * 0.8);
	background: linear-gradient(180deg, #95c8f7 0%, #a8d4fa 52%, #b6ddf9 100%);
	border-radius: 0;
	pointer-events: none;
	z-index: 0;
}

.cw-h3-feature-modal__block-media-stack {
	grid-area: 1 / 1;
	z-index: 1;
	padding-top: var(--cw-h3-media-icon-space);
}

.cw-h3-feature-modal__block-media-icon {
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 2;
	width: clamp(3.35rem, 11vw, 4.35rem);
	height: auto;
	object-fit: contain;
	transform: translate(-50%, -50%);
	filter: drop-shadow(0 10px 18px rgba(47, 141, 247, 0.28));
	pointer-events: none;
}

.cw-h3-feature-modal__block h4 {
	margin: 0 0 0.5rem;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--cw-black);
}

.cw-h3-feature-modal__block p {
	margin: 0;
	font-size: 0.8125rem;
	line-height: 1.65;
	color: rgba(26, 26, 26, 0.72);
}

.cw-h3-feature-modal__block-media {
	position: relative;
	margin-top: 0.85rem;
	border-radius: var(--cw-radius);
	overflow: visible;
}

.cw-h3-feature-modal__block-video {
	position: relative;
	padding-top: 56.25%;
	border-radius: var(--cw-radius);
	overflow: hidden;
}

.cw-h3-feature-modal__block-video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.cw-h3-feature-modal__block-video-file {
	display: block;
	width: 100%;
	height: auto;
	border-radius: var(--cw-radius);
}

.cw-h3-feature-modal__block-icon {
	position: absolute;
	right: 0.65rem;
	bottom: 0.65rem;
	display: block;
	width: clamp(2.75rem, 8vw, 3.35rem);
	height: clamp(2.75rem, 8vw, 3.35rem);
	background: transparent;
	color: var(--cw-white);
	pointer-events: none;
}

.cw-h3-feature-modal__block-icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 8px 16px rgba(47, 141, 247, 0.22));
}

.cw-h3-feature-modal__block-icon svg {
	width: 1.35rem;
	height: 1.35rem;
}

.cw-h3-feature-modal__block-icon:not(:has(img)) {
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--cw-blue);
	box-shadow: 0 8px 18px rgba(47, 141, 247, 0.28);
}

.cw-h3-feature-modal__scrollbar {
	grid-column: 2;
	grid-row: 1;
	align-self: stretch;
	display: flex;
	justify-content: center;
	margin-top: var(--cw-h3-modal-brand-offset);
	padding: 0;
	min-height: 8rem;
}

.cw-h3-feature-modal__scrollbar-track {
	--cw-h3-modal-scroll-inset: 0.7rem;
	position: relative;
	width: 3px;
	height: calc(100% + (var(--cw-h3-modal-scroll-inset) * 2));
	margin: calc(var(--cw-h3-modal-scroll-inset) * -1) 0;
	min-height: 8rem;
	background: rgba(255, 255, 255, 0.35);
	border-radius: var(--cw-radius-pill);
}

.cw-h3-feature-modal__scrollbar-thumb {
	position: absolute;
	left: 50%;
	width: 0.65rem;
	height: 0.65rem;
	margin-left: -0.325rem;
	background: var(--cw-white);
	border-radius: 50%;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
	transition: top 0.1s linear;
}

.cw-h3-feature-modal__dots {
	grid-column: 1;
	grid-row: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.45rem;
	padding: 0;
}

.cw-h3-feature-modal__dot {
	width: 0.5rem;
	height: 0.5rem;
	border: 2px solid rgba(255, 255, 255, 0.85);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.35);
	cursor: pointer;
	padding: 0;
	transition: width 0.3s var(--cw-ease), background 0.3s var(--cw-ease);
}

.cw-h3-feature-modal__dot.is-active {
	width: 1.65rem;
	border-radius: var(--cw-radius-pill);
	background: var(--cw-white);
	border-color: var(--cw-white);
}

/* —— Sekcja 4: Variants —— */
.cw-h3-variants {
	--cw-h3-variant-ink: #004487;
	--cw-h3-variant-solo-bg: #a7d3ff;
	--cw-h3-variant-frame-bg: #268ff9;
	background: var(--cw-white);
}

.cw-h3-variants .cw-h3-section__head {
	max-width: none;
}

.cw-h3-variants__grid {
	display: grid;
	gap: clamp(1rem, 2.5vw, 1.35rem);
	align-items: start;
}

.cw-h3-variants__col-frame {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	min-width: 0;
	padding-block: 0.4rem;
	overflow: visible;
}

.cw-h3-variants__card {
	--cw-h3-variant-img-max: clamp(12rem, 42vw, 18.5rem);
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: visible;
	background: transparent;
}

.cw-h3-variants__media {
	position: relative;
	z-index: 2;
	flex-shrink: 0;
	margin: clamp(1.35rem, 3.75vw, 2.15rem) clamp(0.45rem, 2vw, 0.8rem) 0;
	padding-top: 0;
	overflow: visible;
	pointer-events: none;
}

.cw-h3-variants__media img {
	display: block;
	width: 100%;
	height: auto;
	max-height: var(--cw-h3-variant-img-max);
	object-fit: contain;
	object-position: center bottom;
}

.cw-h3-variants__body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	flex: 1;
	margin-top: calc(var(--cw-h3-variant-img-max) * -0.75);
	padding: calc(var(--cw-h3-variant-img-max) * 0.75 + 0.4rem) clamp(1.25rem, 3.2vw, 1.65rem) clamp(1.2rem, 3vw, 1.5rem);
	border-radius: var(--cw-radius-lg);
}

.cw-h3-variants__card--solo .cw-h3-variants__body {
	background: var(--cw-h3-variant-solo-bg);
	color: var(--cw-h3-variant-ink);
}

.cw-h3-variants__card--frame .cw-h3-variants__body {
	background: var(--cw-h3-variant-frame-bg);
	color: var(--cw-white);
}

.cw-h3-variants__kicker {
	margin: 0 0 0.35rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: rgba(0, 68, 135, 0.72);
}

.cw-h3-variants__card--frame .cw-h3-variants__kicker {
	color: rgba(255, 255, 255, 0.84);
}

.cw-h3-variants__name {
	margin: 0 0 0.5rem;
	font-family: var(--cw-font-heading);
	font-size: clamp(1.35rem, 3.1vw, 1.65rem);
	font-weight: 700;
	line-height: 1.15;
	color: var(--cw-h3-variant-ink);
}

.cw-h3-variants__card--frame .cw-h3-variants__name {
	color: var(--cw-white);
}

.cw-h3-variants__desc {
	margin: 0 0 0.95rem;
	font-size: 0.9375rem;
	line-height: 1.62;
	color: var(--cw-h3-variant-ink);
}

.cw-h3-variants__card--frame .cw-h3-variants__desc {
	color: rgba(255, 255, 255, 0.94);
}

.cw-h3-variants__list {
	margin: 0 0 1.1rem;
	padding: 0;
	list-style: none;
}

.cw-h3-variants__list li {
	position: relative;
	padding-left: 1rem;
	font-size: 0.875rem;
	line-height: 1.55;
	margin-bottom: 0.4rem;
	color: var(--cw-h3-variant-ink);
}

.cw-h3-variants__card--frame .cw-h3-variants__list li {
	color: rgba(255, 255, 255, 0.92);
}

.cw-h3-variants__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 0.35rem;
	height: 0.35rem;
	border-radius: 50%;
	background: currentColor;
	opacity: 0.55;
}

.cw-h3-variants__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.85rem;
	margin-top: auto;
	padding-top: 0.95rem;
	border-top: 1px solid rgba(0, 68, 135, 0.16);
}

.cw-h3-variants__card--frame .cw-h3-variants__foot {
	border-top-color: rgba(255, 255, 255, 0.28);
}

.cw-h3-variants__price {
	margin: 0;
	flex: 1;
	min-width: 0;
	font-family: var(--cw-font-heading);
	font-size: clamp(1.25rem, 2.9vw, 1.45rem);
	font-weight: 700;
	line-height: 1.15;
	color: var(--cw-h3-variant-ink);
}

.cw-h3-variants__card--solo .cw-h3-variants__price .woocommerce-Price-amount {
	color: var(--cw-h3-variant-ink);
}

.cw-h3-variants__card--frame .cw-h3-variants__price,
.cw-h3-variants__card--frame .cw-h3-variants__price .woocommerce-Price-amount {
	color: var(--cw-white);
}

.cw-h3-variants__cta {
	flex-shrink: 0;
	min-height: 0;
	padding: 0.5rem 1.35rem;
	border-radius: 0.65rem;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
}

.cw-h3-variants__card--solo .cw-h3-variants__cta {
	background: transparent;
	border: 1.5px solid var(--cw-h3-variant-ink);
	color: var(--cw-h3-variant-ink);
}

.cw-h3-variants__card--solo .cw-h3-variants__cta:hover {
	background: var(--cw-h3-variant-ink);
	color: var(--cw-white);
}

.cw-h3-variants__card--frame .cw-h3-variants__cta {
	background: transparent;
	border: 1.5px solid rgba(255, 255, 255, 0.92);
	color: var(--cw-white);
}

.cw-h3-variants__card--frame .cw-h3-variants__cta:hover {
	background: rgba(255, 255, 255, 0.14);
	color: var(--cw-white);
}

.cw-h3-variants__frame-link {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	height: 2.125rem;
	margin: 0.35rem 0 0;
	padding: 0 1.15rem 0 4.05rem;
	border-radius: 0.85rem;
	background: var(--cw-h3-variant-frame-bg);
	color: var(--cw-white);
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.2;
	text-decoration: none;
	overflow: visible;
	transition: background 0.25s var(--cw-ease), color 0.25s var(--cw-ease);
}

.cw-h3-variants__frame-link-text {
	position: relative;
	z-index: 1;
	margin-left: 0.35rem;
}

.cw-h3-variants__frame-link-text strong {
	font-weight: 700;
}

.cw-h3-variants__frame-link:hover {
	background: #1f82ea;
	color: var(--cw-white);
}

.cw-h3-variants__frame-icon {
	position: absolute;
	left: 0.7rem;
	top: 50%;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 2.5rem;
	height: 2.5rem;
	margin: 0;
	border-radius: 50%;
	background: #3b9cfe;
	border: 2px solid #268ff9;
	color: var(--cw-white);
	transform: translateY(-50%);
	box-shadow:
		0 0 10px rgba(190, 225, 255, 0.55),
		0 0 18px rgba(155, 205, 255, 0.32);
}

.cw-h3-variants__frame-icon::before,
.cw-h3-variants__frame-icon::after {
	content: none;
	display: none;
}

.cw-h3-variants__frame-icon svg {
	position: relative;
	z-index: 1;
	display: block;
	width: 1rem;
	height: 1rem;
}

.cw-h3-variants__frame-link:hover .cw-h3-variants__frame-icon {
	background: #45a3fe;
	border-color: #268ff9;
	box-shadow:
		0 0 12px rgba(190, 225, 255, 0.62),
		0 0 20px rgba(155, 205, 255, 0.38);
}

/* —— Sekcja 5: Automation —— */
.cw-h3-automation {
	--cw-h3-auto-dark: #1675d5;
	--cw-h3-auto-wave-lift: clamp(2rem, 4.5vw, 3.25rem);
	position: relative;
	overflow: visible;
	padding: 0;
	margin-top: clamp(1.25rem, 3vw, 2rem);
	color: var(--cw-white);
	background: var(--cw-h3-auto-dark);
}

.cw-h3-automation__backdrop {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: flex;
	flex-direction: column;
	overflow: visible;
	pointer-events: none;
	background: var(--cw-h3-auto-dark);
}

.cw-h3-automation__split {
	position: relative;
	flex: 1 0 0;
	min-height: 0;
	background: var(--cw-h3-auto-dark);
}

.cw-h3-automation__band--dark {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: var(--cw-h3-auto-dark);
}

.cw-h3-automation__wave {
	display: block;
	flex-shrink: 0;
	width: 100%;
	line-height: 0;
}

.cw-h3-automation__wave--top {
	position: relative;
	z-index: 2;
	height: clamp(4rem, 8vw, 6rem);
	margin-top: calc(var(--cw-h3-auto-wave-lift) * -0.35);
	margin-bottom: 0;
}

.cw-h3-automation__wave--bottom {
	height: clamp(3rem, 6.5vw, 4.75rem);
	margin-top: -2px;
	margin-bottom: -2px;
}

.cw-h3-automation__inner {
	position: relative;
	z-index: 1;
	padding: clamp(2.75rem, 6.5vw, 4.25rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.cw-h3-automation__layout {
	position: relative;
	display: grid;
	gap: 2rem;
	align-items: start;
}

.cw-h3-automation__brand {
	margin: 0 0 1rem;
}

.cw-h3-automation__brand-img {
	display: block;
	width: clamp(4.5rem, 13vw, 6rem);
	height: auto;
	object-fit: contain;
}

.cw-h3-automation__brand-img.is-inverted {
	filter: brightness(0) invert(1);
}

.cw-h3-automation__title {
	margin: 0 0 1.5rem;
	font-family: var(--cw-font-heading);
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 600;
	line-height: 1.15;
	color: var(--cw-white);
}

.cw-h3-automation__title .cw-h3-accent {
	color: rgba(255, 255, 255, 0.95);
}

.cw-h3-automation__detail h3 {
	margin: 0 0 0.75rem;
	font-family: var(--cw-font-heading);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.cw-h3-automation__detail p {
	margin: 0 0 1rem;
	font-size: 0.9375rem;
	line-height: 1.65;
	opacity: 0.88;
	max-width: 36ch;
}

.cw-h3-automation__more {
	min-height: 2.5rem;
	padding: 0.45rem 1.35rem;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	font-weight: 500;
}

.cw-h3-automation__nav {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin-top: 1.5rem;
}

.cw-h3-automation__tab {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.5rem 0 0.5rem 0.75rem;
	border: 0;
	border-left: 2px solid transparent;
	background: transparent;
	color: rgba(255, 255, 255, 0.45);
	text-align: left;
	cursor: pointer;
	transition: color 0.25s var(--cw-ease), border-color 0.25s var(--cw-ease);
}

.cw-h3-automation__tab:hover,
.cw-h3-automation__tab:focus,
.cw-h3-automation__tab:focus-visible,
.cw-h3-automation__tab:active {
	background: transparent;
	color: rgba(255, 255, 255, 0.75);
	box-shadow: none;
	outline: none;
}

.cw-h3-automation__tab.is-active,
.cw-h3-automation__tab.is-active:hover,
.cw-h3-automation__tab.is-active:focus,
.cw-h3-automation__tab.is-active:active {
	border-left-color: var(--cw-white);
	background: transparent;
	color: var(--cw-white);
}

.cw-h3-automation__tab-num {
	font-size: 0.75rem;
	font-weight: 700;
	min-width: 1.5rem;
}

.cw-h3-automation__tab-label {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.cw-h3-automation__visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	margin-top: -0.5rem;
}

.cw-h3-automation__circle {
	position: relative;
	width: min(100%, clamp(17rem, 54vw, 27rem));
	aspect-ratio: 1;
	margin-inline: auto;
	margin-bottom: clamp(-2rem, -5vw, -3rem);
	border-radius: 50%;
	overflow: hidden;
	border: 4px solid rgba(255, 255, 255, 0.28);
	box-shadow:
		0 28px 72px rgba(0, 36, 82, 0.28),
		0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.cw-h3-automation__circle img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.35s var(--cw-ease);
}

.cw-h3-automation__badge {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	padding: 0.35rem 0.75rem;
	border-radius: var(--cw-radius-pill);
	background: var(--cw-blue);
	color: var(--cw-white);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.06em;
}

/* —— Sekcja 6: Scenarios —— */
.cw-h3-scenarios {
	overflow: visible;
	margin-top: -1px;
	padding-top: calc(var(--cw-section-pad) + clamp(1.5rem, 4vw, 2.5rem));
	background: var(--cw-white);
}

.cw-h3-scenarios .cw-container {
	overflow: visible;
}

.cw-h3-scenarios .cw-h3-section__head {
	margin-inline: 0;
	max-width: none;
	text-align: left;
}

.cw-h3-scenarios__featured {
	--cw-h3-scenarios-featured-lift: clamp(2.5rem, 5vw, 3.75rem);
	--cw-h3-scenarios-media-lift: clamp(3.75rem, 7vw, 5.5rem);
	--cw-h3-scenarios-bg-offset: clamp(1.25rem, 2vw, 1.875rem);
	--cw-h3-scenarios-media-bottom-gap: var(--cw-h3-scenarios-bg-offset);
	--cw-h3-scenarios-bg-inset-r: var(--cw-h3-scenarios-bg-offset);
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: 0;
	align-items: stretch;
	min-height: clamp(18rem, 32vw, 26rem);
	margin-top: clamp(2rem, 4vw, 3rem);
	margin-bottom: clamp(1.5rem, 3vw, 2rem);
	padding-top: var(--cw-h3-scenarios-featured-lift);
	overflow: visible;
	border-radius: 0;
	background: transparent;
	text-decoration: none;
	color: inherit;
	transition: transform 0.25s var(--cw-ease);
}

.cw-h3-scenarios__featured::before {
	content: "";
	position: absolute;
	top: var(--cw-h3-scenarios-featured-lift);
	right: var(--cw-h3-scenarios-bg-inset-r);
	bottom: 0;
	left: 0;
	z-index: 0;
	border-radius: var(--cw-radius-lg);
	background: #a7d3ff;
}

.cw-h3-scenarios__featured:hover {
	transform: translateY(-2px);
}

.cw-h3-scenarios__featured-copy {
	position: relative;
	z-index: 1;
	grid-column: 1;
	grid-row: 1;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: clamp(2rem, 4.5vw, 3.5rem) clamp(2rem, 4vw, 3rem);
	background: transparent;
}

.cw-h3-scenarios__kicker {
	margin: 0 0 0.35rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--cw-blue);
}

.cw-h3-scenarios__featured .cw-h3-scenarios__kicker {
	color: var(--cw-black);
}

.cw-h3-scenarios__featured-title {
	margin: 0 0 0.75rem;
	font-family: var(--cw-font-heading);
	font-size: clamp(1.25rem, 3vw, 1.75rem);
	font-weight: 700;
	color: var(--cw-black);
}

.cw-h3-scenarios__featured-desc {
	margin: 0 0 1rem;
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--cw-black);
}

.cw-h3-scenarios__featured .cw-h3-scenarios__link {
	margin-top: auto;
}

.cw-h3-scenarios__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--cw-blue);
	text-decoration: none;
}

.cw-h3-scenarios__link-text {
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.cw-h3-scenarios__link-icon {
	display: grid;
	place-items: center;
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 50%;
	background: var(--cw-blue);
	color: var(--cw-white);
}

.cw-h3-scenarios__link-icon svg {
	width: 0.875rem;
	height: 0.875rem;
}

.cw-h3-scenarios__featured-media {
	position: relative;
	z-index: 2;
	grid-column: 2;
	grid-row: 1;
	align-self: start;
	width: 100%;
	margin-top: calc(var(--cw-h3-scenarios-media-lift) * -1);
	margin-bottom: var(--cw-h3-scenarios-media-bottom-gap);
	overflow: hidden;
	border-radius: var(--cw-radius-lg);
}

.cw-h3-scenarios__featured-media img {
	display: block;
	width: 100%;
	height: auto;
	min-height: clamp(16rem, 27vw, 22rem);
	border-radius: var(--cw-radius-lg);
	aspect-ratio: 4 / 3.2;
	object-fit: cover;
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}

.cw-h3-scenarios__grid {
	display: grid;
	gap: 1.25rem;
}

.cw-h3-scenarios__card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: var(--cw-radius-lg);
	background: transparent;
	text-decoration: none;
	color: inherit;
	transition: transform 0.25s var(--cw-ease);
}

.cw-h3-scenarios__card:hover {
	transform: translateY(-2px);
}

.cw-h3-scenarios__card-media {
	overflow: hidden;
	border-radius: 0;
	aspect-ratio: 16 / 10;
}

.cw-h3-scenarios__card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cw-h3-scenarios__card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1.25rem;
	border-radius: 0;
}

.cw-h3-scenarios__card:nth-child(1) .cw-h3-scenarios__card-body {
	background: #c6e2ff;
}

.cw-h3-scenarios__card:nth-child(2) .cw-h3-scenarios__card-body {
	background: #a7d3ff;
}

.cw-h3-scenarios__card:nth-child(3) .cw-h3-scenarios__card-body {
	background: #ddedff;
}

.cw-h3-scenarios__card-title {
	margin: 0 0 0.5rem;
	font-family: var(--cw-font-heading);
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--cw-black);
}

.cw-h3-scenarios__card-desc {
	margin: 0 0 1rem;
	font-size: 0.8125rem;
	line-height: 1.55;
	color: var(--cw-black);
	flex: 1;
}

.cw-h3-scenarios__link--small {
	margin-top: auto;
	align-self: flex-end;
	justify-content: flex-start;
	color: var(--cw-black);
}

.cw-h3-scenarios__link--small .cw-h3-scenarios__link-icon {
	background: var(--cw-black);
	color: var(--cw-white);
}

/* —— Sekcja 7: Realizations wave —— */
.cw-h3-realizations {
	--cw-h3-realizations-tile-w: clamp(13rem, 20vw, 17rem);
	--cw-h3-realizations-duration: 360s;
	overflow: hidden;
	background: var(--cw-white);
	padding-bottom: clamp(3rem, 6vw, 5rem);
}

.cw-h3-realizations__viewport {
	width: 100vw;
	max-width: 100vw;
	margin-top: clamp(1.25rem, 3vw, 2rem);
	margin-left: calc(50% - 50vw);
	overflow: hidden;
	clip-path: url(#cw-h3-wave-clip);
}

.cw-h3-realizations__track {
	display: flex;
	width: max-content;
	will-change: transform;
	animation: cw-h3-realizations-marquee var(--cw-h3-realizations-duration, 90s) linear infinite;
}

.cw-h3-realizations__viewport:hover .cw-h3-realizations__track {
	animation-play-state: paused;
}

.cw-h3-realizations__group {
	display: flex;
	flex-shrink: 0;
}

.cw-h3-realizations__tile {
	flex: 0 0 var(--cw-h3-realizations-tile-w);
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	appearance: none;
}

.cw-h3-realizations__tile:focus-visible {
	outline: 2px solid var(--cw-blue);
	outline-offset: -2px;
}

.cw-h3-realizations__tile img {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
}

.cw-h3-realizations-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
}

.cw-h3-realizations-lightbox[hidden] {
	display: none !important;
}

.cw-h3-realizations-lightbox__figure {
	position: relative;
	max-width: min(92vw, 72rem);
	margin: 0;
}

.cw-h3-realizations-lightbox__panel {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--cw-white);
	box-shadow: var(--cw-shadow-md);
	overflow: visible;
}

.cw-h3-realizations-lightbox__wave {
	display: block;
	width: 100%;
	height: clamp(2rem, 5vw, 3rem);
	flex-shrink: 0;
	color: var(--cw-white);
	pointer-events: none;
}

.cw-h3-realizations-lightbox__wave--top {
	margin-bottom: -1px;
}

.cw-h3-realizations-lightbox__wave--bottom {
	margin-top: -1px;
}

.cw-h3-realizations-lightbox__media {
	background: var(--cw-white);
	padding: clamp(0.75rem, 2.5vw, 1.5rem) clamp(1rem, 3.5vw, 2rem);
}

.cw-h3-realizations-lightbox__img {
	display: block;
	max-width: 100%;
	max-height: min(78vh, 48rem);
	width: auto;
	height: auto;
	margin: 0 auto;
	border-radius: 0;
	box-shadow: none;
}

.cw-h3-realizations-lightbox__close {
	position: absolute;
	top: clamp(0.35rem, 1.5vw, 0.65rem);
	right: clamp(-0.35rem, -1vw, -0.15rem);
	z-index: 2;
	display: grid;
	place-items: center;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(30, 30, 30, 0.88);
	color: var(--cw-white);
	font-family: inherit;
	font-size: 1.5rem;
	font-weight: 300;
	line-height: 1;
	cursor: pointer;
	box-shadow: var(--cw-shadow-sm);
}

.cw-h3-realizations__viewport.is-paused .cw-h3-realizations__track {
	animation-play-state: paused;
}

@keyframes cw-h3-realizations-marquee {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(calc(-1 * var(--cw-h3-realizations-shift, 25%)), 0, 0);
	}
}

/* —— Responsive —— */
@media (min-width: 768px) {
	.cw-h3-benefits__list {
		grid-template-columns: repeat(5, 1fr);
	}

	.cw-h3-pillars__layout {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
		align-items: start;
		gap: clamp(2rem, 4vw, 3rem);
	}

	.cw-h3-pillars__visual {
		margin-top: clamp(0.5rem, 1.5vw, 1rem);
		margin-bottom: clamp(-2.5rem, -4.5vw, -3.25rem);
	}

	.cw-h3-variants__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.cw-h3-automation__layout {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
		gap: clamp(2rem, 4vw, 3.5rem);
		align-items: center;
	}

	.cw-h3-automation__visual {
		justify-content: flex-end;
		margin-top: clamp(-1rem, -2vw, -0.25rem);
	}

	.cw-h3-scenarios__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1024px) {
	.cw-h3-hero__product {
		width: min(28vw, 21rem);
	}

	.cw-h3-hero__copy {
		max-width: 22rem;
	}

	.cw-h3-feature-modal__frame {
		width: min(calc(36rem + 2.75rem), 94vw);
		grid-template-columns: min(36rem, 90vw) auto;
	}
}

@media (max-width: 767px) {
	/* —— Hero mobile (mockup) —— */
	.cw-h3-hero {
		overflow: visible;
	}

	.cw-h3-hero__stage {
		--cw-h3-word-top: 0.5rem;
		--cw-h3-word-size: clamp(4.75rem, 27vw, 7.25rem);
		--cw-h3-content-depth: clamp(17.5rem, 48vw, 20.5rem);
		--cw-h3-mobile-stack-top: calc(var(--cw-h3-water-top) + 0.35rem);
		--cw-h3-mobile-text-left: calc(var(--cw-content-gutter) + 0.85rem);
		min-height: calc(var(--cw-h3-water-top) + var(--cw-h3-content-depth));
		overflow: visible;
	}

	.cw-h3-hero__word {
		text-align: center;
	}

	.cw-h3-hero__product {
		left: auto;
		right: 0;
		transform: translateX(50%);
		width: min(88vw, 23rem);
		top: calc(var(--cw-h3-water-top) + 0.85rem);
		z-index: 9;
	}

	.cw-h3-hero__water {
		bottom: 0;
	}

	.cw-h3-hero__water-svg {
		width: 112%;
		margin-left: -6%;
	}

	.cw-h3-hero__video-wrap {
		left: var(--cw-h3-mobile-text-left);
		right: auto;
		top: calc(var(--cw-h3-mobile-stack-top) + 3rem);
		bottom: auto;
		transform: none;
		justify-content: flex-start;
		max-width: min(15rem, 56vw);
		z-index: 8;
	}

	.cw-h3-hero__video-btn {
		width: auto;
		justify-content: flex-start;
		padding: 0.2rem 0;
		border-radius: 0;
		background: transparent;
		color: var(--cw-blue);
		font-size: 1.0625rem;
		gap: 0.75rem;
	}

	.cw-h3-hero__video-icon {
		width: 2.85rem;
		height: 2.85rem;
		box-shadow: none;
	}

	.cw-h3-hero__video-ring {
		stroke: var(--cw-blue);
	}

	.cw-h3-hero__video-play {
		fill: var(--cw-blue);
	}

	.cw-h3-hero__video-btn:hover,
	.cw-h3-hero__video-btn:focus,
	.cw-h3-hero__video-btn:focus-visible,
	.cw-h3-hero__video-btn:active {
		color: var(--cw-blue);
	}

	.cw-h3-hero__video-btn:hover .cw-h3-hero__video-ring,
	.cw-h3-hero__video-btn:focus-visible .cw-h3-hero__video-ring {
		fill: var(--cw-blue);
		stroke: var(--cw-blue);
	}

	.cw-h3-hero__video-btn:hover .cw-h3-hero__video-play,
	.cw-h3-hero__video-btn:focus-visible .cw-h3-hero__video-play {
		fill: var(--cw-white);
	}

	.cw-h3-hero__copy {
		left: var(--cw-h3-mobile-text-left);
		top: calc(var(--cw-h3-mobile-stack-top) + 6.65rem);
		bottom: auto;
		transform: none;
		max-width: min(15rem, 56vw);
		width: auto;
		z-index: 8;
	}

	.cw-h3-hero__eyebrow {
		font-size: 0.8125rem;
		margin-bottom: 0.35rem;
	}

	.cw-h3-hero__title {
		font-size: 1.5rem;
	}

	.cw-h3-hero__title-rule {
		width: 2rem;
		margin: 0.4rem 0 0.75rem;
	}

	.cw-h3-hero__price-label {
		font-size: 0.875rem;
	}

	.cw-h3-hero__buy-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.65rem;
		margin-bottom: 0.45rem;
	}

	.cw-h3-hero__price-value {
		font-size: 1.75rem;
	}

	.cw-h3-hero__cta.cw-h3-btn {
		display: inline-flex;
		min-height: 2.75rem;
		padding: 0.7rem 1.5rem;
		font-size: 0.9375rem;
		font-weight: 700;
		border-radius: var(--cw-btn-radius);
	}

	.cw-h3-hero__finance {
		font-size: 0.875rem;
	}

	/* —— Benefits mobile — pigułki na niebieskich paskach, poniżej treści —— */
	.cw-h3-benefits {
		--cw-h3-benefit-stripe: 2.35rem;
		--cw-h3-benefit-gap: 1.2rem;
		--cw-h3-benefit-pill-w: min(13.25rem, 51vw);
		position: relative;
		z-index: 6;
		margin-top: 0;
	}

	.cw-h3-benefits__wave {
		display: none;
	}

	.cw-h3-benefits__band {
		background: var(--cw-white);
		padding: clamp(5rem, 14vw, 7.5rem) 0 1.75rem;
	}

	.cw-h3-benefits .cw-container {
		padding-inline: 0;
	}

	.cw-h3-benefits__list {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		width: 100%;
		margin: 0;
		padding: 0;
	}

	.cw-h3-benefits__item {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		width: 100vw;
		max-width: 100vw;
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
		margin-top: var(--cw-h3-benefit-gap);
		min-height: var(--cw-h3-benefit-stripe);
		padding: 0.22rem 0 0.22rem calc(100vw / 4);
		box-sizing: border-box;
		background: #e7f2fd;
	}

	.cw-h3-benefits__item:first-child {
		margin-top: var(--cw-h3-benefit-gap);
	}

	.cw-h3-benefits__pill {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: var(--cw-h3-benefit-pill-w);
		min-width: var(--cw-h3-benefit-pill-w);
		min-height: 2.05rem;
		padding: 0.45rem 1rem;
		border-radius: var(--cw-radius-pill);
		background: var(--cw-blue);
		color: var(--cw-white);
		font-size: 0.875rem;
		font-weight: 600;
		line-height: 1.2;
		text-align: center;
		white-space: nowrap;
		flex-shrink: 0;
		box-sizing: border-box;
	}

	.cw-h3-benefits__detail {
		display: none;
	}

	.cw-h3-variants__grid {
		max-width: min(21.5rem, 86vw);
		margin-inline: auto;
	}

	.cw-h3-variants__card {
		--cw-h3-variant-img-max: clamp(10.5rem, 38vw, 13.5rem);
	}

	.cw-h3-variants__body {
		padding-inline: clamp(1rem, 4.5vw, 1.25rem);
	}

	.cw-h3-variants__frame-link {
		font-size: 0.6875rem;
		padding: 0 0.65rem 0 3.75rem;
		min-height: 2.125rem;
		height: auto;
	}

	.cw-h3-variants__frame-link-text {
		white-space: nowrap;
	}

	.cw-h3-variants {
		padding-bottom: clamp(2.5rem, 6vw, 3.25rem);
	}

	.cw-h3-automation {
		margin-top: clamp(1.75rem, 5vw, 2.5rem);
	}

	.cw-h3-automation__wave--top {
		margin-top: 0;
	}

	.cw-h3-automation__inner {
		padding-bottom: clamp(3.5rem, 9vw, 4.75rem);
	}

	.cw-h3-automation__circle {
		margin-bottom: 0;
	}

	.cw-h3-automation__visual {
		margin-bottom: clamp(1.75rem, 5vw, 2.5rem);
	}

	.cw-h3-scenarios {
		padding-top: calc(var(--cw-section-pad) + clamp(2.5rem, 7vw, 3.5rem));
	}

	.cw-h3-features__track {
		--cw-h3-feature-visible: 2.18;
	}

	.cw-h3-features__card.is-center {
		margin-inline: -0.45rem;
	}

	.cw-h3-feature-modal__frame {
		width: min(calc(100vw - 2rem), 34rem);
		column-gap: 0.55rem;
	}

	.cw-h3-scenarios__featured {
		--cw-h3-scenarios-featured-img-inset: clamp(1.75rem, 7vw, 2.75rem);
		--cw-h3-scenarios-featured-img-h: calc((100% - var(--cw-h3-scenarios-featured-img-inset)) * 3 / 4);
		--cw-h3-scenarios-featured-shelf: calc(var(--cw-h3-scenarios-featured-img-h) * 0.9);
		--cw-h3-scenarios-featured-gap: clamp(1.1rem, 3.5vw, 1.5rem);
		display: flex;
		flex-direction: column;
		gap: 0;
		min-height: 0;
		margin-top: clamp(1.5rem, 4vw, 2rem);
		margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
		padding-top: 0;
		padding-bottom: calc(var(--cw-h3-scenarios-featured-img-h) * 0.1);
	}

	.cw-h3-scenarios__featured::before {
		display: none;
	}

	.cw-h3-scenarios__featured-copy {
		position: relative;
		z-index: 1;
		grid-column: auto;
		grid-row: auto;
		min-height: 0;
		padding: clamp(1.35rem, 4.5vw, 1.65rem);
		padding-bottom: calc(var(--cw-h3-scenarios-featured-gap) + var(--cw-h3-scenarios-featured-shelf));
		border-radius: var(--cw-radius-lg);
		background: #a7d3ff;
	}

	.cw-h3-scenarios__featured-title {
		font-size: clamp(1.35rem, 5vw, 1.55rem);
		line-height: 1.2;
	}

	.cw-h3-scenarios__featured .cw-h3-scenarios__link {
		align-self: flex-start;
		margin-top: 0.75rem;
	}

	.cw-h3-scenarios__featured-media {
		position: relative;
		z-index: 2;
		grid-column: auto;
		grid-row: auto;
		width: calc(100% - var(--cw-h3-scenarios-featured-img-inset));
		margin-inline: auto;
		margin-top: calc(-1 * var(--cw-h3-scenarios-featured-shelf));
		margin-bottom: 0;
		border-radius: var(--cw-radius-lg);
		overflow: hidden;
	}

	.cw-h3-scenarios__featured-media img {
		display: block;
		width: 100%;
		min-height: 0;
		border-radius: var(--cw-radius-lg);
		aspect-ratio: 4 / 3;
		object-fit: cover;
		box-shadow: none;
	}

	.cw-h3-scenarios__grid {
		gap: 0.85rem;
	}

	.cw-h3-scenarios__card-media {
		display: none !important;
	}

	.cw-h3-scenarios__card {
		border-radius: var(--cw-radius-lg);
		overflow: hidden;
	}

	.cw-h3-scenarios__card-body {
		padding: clamp(1.35rem, 4.5vw, 1.65rem);
		border-radius: var(--cw-radius-lg);
	}

	.cw-h3-scenarios__link--small {
		align-self: flex-start;
		flex-direction: row-reverse;
		justify-content: flex-end;
		margin-top: 0.75rem;
		color: var(--cw-blue);
	}

	.cw-h3-scenarios__link--small .cw-h3-scenarios__link-icon {
		background: var(--cw-blue);
		color: var(--cw-white);
	}
}

@media (prefers-reduced-motion: reduce) {
	.cw-h3-hero__water-svg {
		animation: none;
	}

	.cw-h3-pillars__slide {
		transform: none;
		transition: opacity 0.2s linear;
	}

	.cw-h3-features__card-media {
		transition: none;
	}

	.cw-h3-features__card.is-center .cw-h3-features__card-media {
		transform: scale(1.18);
	}

	.cw-h3-realizations__track {
		animation: none;
	}

	.cw-h3-realizations__viewport {
		overflow-x: auto;
		scrollbar-width: none;
	}

	.cw-h3-realizations__viewport::-webkit-scrollbar {
		display: none;
	}
}

html.cw-h3-modal-open,
body.cw-h3-modal-open {
	overflow: hidden;
}
