/* ===== SCROLLER & GLOBAL ===== */
html {
	height: 100%;
	overflow-y: auto;
	scroll-behavior: smooth;
	scroll-snap-type: y mandatory; /* proximity -> łagodniej, mandatory -> mocniej */
}

body {
	min-height: 100%;
	margin: 0;
	font-family: 'Inter',sans-serif;
	color: #333;
}

/* ===== SEKCJE SNAP ===== */
.hero,
.section-snap {
	scroll-snap-align: start;
	scroll-snap-stop: always;
	min-height: 100svh; /* stabilne na mobile */
	display: block;
}

/* ===== HERO ===== */
.hero {
	position: relative;
	width: 100%;
	background: #e8fff4; /* tło paska z logo (widoczne pod headerem) */
}

	/* Pasek z logo u góry */
	.hero > header {
		padding: 20px;
		text-align: center;
		background: #e8fff4;
	}

.logo {
	max-width: 80vw;
	height: auto;
}

/* Dwie kolumny 70/30 pod headerem */
.hero-body {
	display: grid;
	grid-template-columns: 70% 30%;
	height: calc(100svh - 88px); /* 88px ~ wysokość paska z logo – dopasuj w razie potrzeby */
}

/* Lewa płaszczyzna z treścią */
.hero-left {
	background: #cf8fa0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 24px;
}

.hero-content {
	max-width: 720px;
	color: #fff;
	text-align: left;
}

	.hero-content h1 {
		font-size: clamp(2.2rem,5vw,4rem);
		line-height: 1.1;
		letter-spacing: .3px;
		text-shadow: 0 2px 6px rgba(0,0,0,.25);
		margin: 0 0 16px;
	}

	.hero-content p {
		font-size: clamp(1rem,2vw,1.3rem);
		color: #fff;
		opacity: .95;
		margin: 0 0 28px;
	}

/* Prawa kolumna – pełne zdjęcie */
.hero-right {
	position: relative;
	overflow: hidden;
}

	.hero-right img {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

/* Przycisk */
.buttons {
	display: flex;
	gap: 14px;
	align-items: center;
}

.btn {
	background: #333;
	color: #fff;
	text-decoration: none;
	padding: 14px 28px;
	border-radius: 999px;
	font-weight: 600;
	transition: opacity .2s;
}

	.btn:hover {
		opacity: .9;
	}

/* ===== SEKCJA 2 (INFO) ===== */
.section-snap.info,
.section-snap.why {
	
}

.container {
	width: min(1100px,92%);
	margin-inline: auto;
}

.info-combined {
	display: flex;
	align-items: center;
	padding: 64px 0;
	text-align: center;
	background: #e8fff4;
}

	.info-combined h2 {
		font-size: clamp(1.6rem,2.6vw,2.2rem);
		margin-bottom: 18px;
	}

	.info-combined .lead {
		font-size: clamp(1rem,1.4vw,1.15rem);
		color: #222;
		line-height: 1.7;
		margin-bottom: 14px;
	}

/* ===== SEKCJA 3 (WHY) ===== */
.why {
	display: flex;
	align-items: center;
	padding: 72px 0;
}

.grid-2 {
	display: grid;
	grid-template-columns: 48% 52%;
	gap: 48px;
	align-items: center;
}

.why-img img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 6px;
}

.why-text h3 {
	font-size: clamp(1.4rem,2.2vw,2rem);
	margin-bottom: 16px;
}

.dots {
	list-style: disc;
	margin-left: 1.1rem;
	display: grid;
	gap: 10px;
	font-size: clamp(1rem,1.4vw,1.1rem);
}

/* ===== RESPONSYWNOŚĆ ===== */
@media (max-width: 991.98px) {
	.hero-body {
		grid-template-columns: 1fr;
		height: auto;
		min-height: calc(100svh - 88px);
	}

	.hero-right {
		order: -1;
		height: 40vh;
	}

	.hero-left {
		min-height: 60vh;
	}

	.hero-content {
		text-align: center;
	}

	.buttons {
		justify-content: center;
		flex-direction: column;
	}

	.grid-2 {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.why-img {
		order: -1;
	}
	/* obraz nad tekstem */

	
}

/* CTA */
.cta.section-snap {
	background: #cf8fa0;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.cta .container {
	padding: 72px 0;
}

.cta h2 {
	font-size: clamp(2rem,6vw,3.6rem);
	line-height: 1.12;
	margin: 0 0 20px;
	text-shadow: 0 2px 6px rgba(0,0,0,.18);
}
/* przycisk używa Twojej .btn (pigułka) */
.cta .btn {
	background: #444;
}
/* opcjonalnie ciut jaśniejszy niż #333 */

/* wariant nie-fullscreen (opcjonalnie) */
.cta--slim {
	min-height: 60svh;
}
/* zamiast pełnego 100svh */


/* BENEFITS + LISTA */
.benefits.section-snap {
	background: #e8fff4;
	display: flex;
	align-items: flex-start;
	padding: 72px 0;
	text-align: center;
}

.benefits .container {
	width: min(1100px,92%);
	margin-inline: auto;
}

.benefits-row {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 48px;
	align-items: start;
	margin-bottom: 48px;
}

.benefit img {
	width: 48px;
	height: 48px;
	display: block;
	margin: 0 auto 12px;
}

.benefit h4 {
	font-weight: 700;
	font-size: clamp(1rem,1.6vw,1.25rem);
	margin: 6px 0 4px;
	color: #333;
}

.benefit p {
	font-size: clamp(.95rem,1.2vw,1.05rem);
	color: #4b5563;
	line-height: 1.55;
}

.section-title {
	font-size: clamp(1.8rem,2.8vw,2.2rem);
	margin: 8px 0 22px;
}

.features-list {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	max-width: 980px;
	display: grid;
	gap: 18px;
	text-align: center;
	color: #222;
	font-size: clamp(1rem,1.3vw,1.1rem);
}

	.features-list li span {
		display: block;
		font-weight: 700;
		margin-bottom: 2px;
	}

/* RWD */
@media (max-width:991.98px) {
	.benefits-row {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}


/* SERDUSZKOMANIA */
.hearts {
	background: #e8fff4;
	display: flex;
	align-items: flex-start;
	padding: 72px 0 40px;
	text-align: center;
}

.hearts-top {
	display: grid;
	grid-template-columns: 62% 38%;
	gap: 34px;
	align-items: start;
	margin-bottom: 32px;
}

.hearts-copy h2 {
	font-size: clamp(1.6rem, 2.6vw, 2.2rem);
	margin: 0 0 8px;
	font-weight: 700;
}

.hearts-copy h3 {
	font-size: clamp(1.2rem, 2vw, 1.6rem);
	margin: 0 0 14px;
	font-weight: 700;
}

.hearts-copy p {
	font-size: clamp(1rem, 1.3vw, 1.1rem);
	color: #1f2937;
	line-height: 1.7;
	margin: 0 0 10px;
}

/* Karta z grafiką po prawej */
.hearts-badge {
	position: relative;
	background: #fff;
	border-radius: 10px;
	padding: 16px;
	box-shadow: 0 6px 22px rgba(0,0,0,.08);
}

	.hearts-badge img {
		display: block;
		width: 100%;
		height: auto;
		border-radius: 8px;
	}

.hearts-badge-text {
	position: absolute;
	right: 14px;
	bottom: 14px;
	background: rgba(255,255,255,.92);
	padding: 10px 14px;
	border-radius: 8px;
	font-weight: 700;
	font-size: clamp(.95rem,1.4vw,1.05rem);
	color: #1f2937;
	text-align: right;
	line-height: 1.25;
}

/* Duży baner pod treścią */
.hearts-banner img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 10px;
	box-shadow: 0 8px 26px rgba(0,0,0,.07);
	margin-top: 8px;
}

/* RWD */
@media (max-width: 991.98px) {
	.hearts-top {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.hearts-badge-text {
		position: static;
		margin-top: 10px;
		text-align: center;
		background: transparent;
		padding: 0;
	}
}