/* jak-zamowic.css — sekcja "To naprawdę proste"
   Karty / badge / pasek CTA rysowane w czystym CSS (bez ciężkich PNG-ów z cieniem,
   które przyciemniały się na wspólnym tle). Ilustracyjne PNG zostają: ikony kroków,
   przerywana linia z serduszkami, serduszka, złote iskry. */

.jz {
	position: relative;
	padding: clamp(3rem, 5vw, 5.5rem) 1.5rem clamp(3rem, 5vw, 5rem);
}
.jz__inner {
	position: relative;
	z-index: 1;
	max-width: 1240px;
	margin: 0 auto;
}

/* nagłówek */
.jz__header {
	text-align: center;
	margin-bottom: clamp(2.4rem, 4vw, 3.6rem);
}
.jz__eyebrow {
	display: inline-block;
	letter-spacing: 0.34em;
	text-transform: uppercase;
	color: #b98a4e;
	font-size: 1.1rem;
	border-bottom: 1px solid #e3b3bf;
	padding-bottom: 0.45rem;
}
.jz__heart {
	display: block;
	width: 26px;
	height: auto;
	margin: 0.6rem auto 0.3rem;
}
.jz__title {
	font-family: var(--heading-font);
	font-weight: 600;
	color: var(--heading-color);
	font-size: var(--heading-size);
	line-height: 1.05;
	margin: 0;
}
.jz__subtitle {
	color: #6b5645;
	font-size: var(--subtitle-size);
	line-height: var(--subtitle-lh);
	margin: var(--subtitle-gap) 0 0;
}

/* siatka kroków */
.jz__grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1.4rem, 3vw, 3rem);
	align-items: stretch;
	margin-top: 2.8rem;
}
/* przerywana linia z serduszkami łącząca karty (widoczna w odstępach) */
.jz__connector {
	position: absolute;
	z-index: 0;
	top: 34%;
	left: 6%;
	width: 88%;
	height: auto;
	pointer-events: none;
	opacity: 0.85;
}

/* karta kroku — czysty CSS */
.jz-step {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 3.6rem 2rem 2.6rem;
	background: #fbf6ec;
	border: 1px solid #efe2cf;
	border-radius: 20px;
	box-shadow: 0 12px 30px rgba(90, 60, 40, 0.10);
}

/* badge 01/02/03 — okrągły, przerywany, nachodzi na górę karty */
.jz-step__badge {
	position: absolute;
	top: -26px;
	left: 50%;
	transform: translateX(-50%);
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fbf6ec;
	border: 2px dashed #d99aa6;
	border-radius: 50%;
	font-family: 'Playfair Display', serif;
	font-weight: 600;
	font-size: 1.5rem;
	color: #c67d8b;
	box-shadow: 0 4px 10px rgba(90, 60, 40, 0.08);
	z-index: 2;
}
.jz-step__icon {
	width: auto;
	height: 118px;
	margin: 1rem 0 1.3rem;
}
.jz-step__title {
	font-family: 'Playfair Display', serif;
	font-weight: 600;
	color: #3a2a22;
	font-size: 1.9rem;
	margin: 0 0 1.3rem;
}
.jz-step__text {
	color: #6b5645;
	font-size: 1.16rem;
	line-height: 1.55;
	margin: 0;
	max-width: 20rem;
}

/* pasek CTA — czysty CSS */
.jz-cta {
	position: relative;
	display: flex;
	align-items: center;
	gap: 1.4rem;
	max-width: 1000px;
	margin: clamp(2.6rem, 4vw, 3.8rem) auto 0;
	padding: 1.8rem 2.4rem;
	background: #fbf6ec;
	border: 1px solid #efe2cf;
	border-radius: 18px;
	box-shadow: 0 12px 30px rgba(90, 60, 40, 0.10);
}
.jz-cta__badge {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	padding-left: 0.4rem;
}
.jz-cta__badge img.spark {
	width: 26px;
	height: auto;
}
.jz-cta__badge img.bubble {
	width: 48px;
	height: auto;
}
.jz-cta__text {
	flex: 1;
	text-align: center;
}
.jz-cta__text strong {
	display: block;
	font-family: 'Comfortaa', sans-serif;
	font-style: normal;
	font-weight: 700;
	color: #5a3e2b;
	font-size: 1.6rem;
}
.jz-cta__text span {
	color: #7a6553;
	font-size: 1.2rem;
	line-height: 1.4;
}
.jz-cta__btn {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	background: #d98a97;
	color: #fff;
	padding: 0.9em 2em;
	border-radius: 12px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.06em;
	font-size: 1.2rem;
	text-decoration: none;
	box-shadow: 0 9px 20px rgba(217, 138, 151, 0.4);
	transition: background 0.2s ease, transform 0.2s ease;
}
.jz-cta__btn:hover {
	background: #c8707f;
	transform: translateY(-2px);
}

/* responsywność */
@media (max-width: 900px) {
	.jz__grid {
		grid-template-columns: 1fr;
		max-width: 460px;
		margin: 2.8rem auto 0;
		gap: 3.4rem;
	}
	.jz__connector {
		display: none;
	}
}
@media (max-width: 620px) {
	.jz-cta {
		flex-direction: column;
		text-align: center;
		padding: 2rem 1.4rem;
	}
}
