*,
*::before,
*::after {
	box-sizing: border-box;
}
html {
	-moz-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
	scroll-behavior: smooth;
	overflow-x: hidden;
}
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
	margin: 0;
}
ul[role="list"],
ol[role="list"] {
	list-style: none;
}
body {
	min-height: 100vh;
	line-height: 1.6;
	font-size: 16px;
	color: var(--navy);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: "Lato", sans-serif;
	font-weight: 400;
}
h1,
h2,
h3,
h4,
button,
input,
label {
	line-height: 1.1;
}
h1,
h2,
h3,
h4 {
	text-wrap: balance;
}
a:not([class]) {
	text-decoration-skip-ink: auto;
	color: currentColor;
}
img,
picture {
	max-width: 100%;
	display: block;
}
input,
button,
textarea,
select {
	font: inherit;
}
textarea:not([rows]) {
	min-height: 10em;
}

:root {
	--white: #ffffff;
	--white-second: #f9f9f7;
	--mint-first: #8fbdb5;
	--mint-second: #e6efea;
	--navy: #1f2a44;
}

p {
	text-wrap: pretty;
	font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.container {
	width: min(80%, 1600px);
	margin-inline: auto;
}

.section-title {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
}

/* NAWIGACJA KONTAKT */

.nav-contact {
	background-color: var(--navy);
	color: var(--white);
	padding: 0.5rem 0 0 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-contact .container {
	display: block;
	max-width: 1600px;
	margin: 0 auto;
}

.nav-contact-box {
	width: max-content;
	display: flex;
	gap: 1.5rem;
	margin-left: auto;
	padding-bottom: 0.4rem;
}

@media (width <= 570px) {
	.nav-contact-box {
		flex-direction: column;
		gap: 0.2rem;
		margin-left: auto;
		margin-right: 0;
		width: auto;
		align-items: flex-end;
	}
}

.nav-contact-card {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.nav-contact-card img {
	width: 1.1rem;
	height: 1.1rem;
	object-fit: contain;
	flex-shrink: 0;
}

.nav-contact-card a {
	color: var(--white);
	text-decoration: none;
	font-size: clamp(0.9rem, 1.5vw, 0.9rem);
	transition: color 0.3s ease;
}

.nav-contact-card a:hover {
	color: var(--mint-first);
}

/* NAWIGACJA */

nav {
	background-color: var(--navy);
	color: var(--white);
	position: sticky;
	top: 0;
	z-index: 100;
}

nav .container {
	display: block;
	max-width: 1600px;
	margin: 0 auto;
	padding: 0;
	position: relative;
}

nav::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(
		to right,
		var(--mint-first),
		rgba(94, 196, 176, 0.2),
		transparent
	);
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 0;
}

.nav-subpage {
	border-bottom: none;
}

.nav-logo a img {
	width: 20rem;
	display: block;
}

@media (width <= 800px) {
	.nav-logo a img {
		width: 18rem;
	}
}

@media (width <= 600px) {
	.nav-logo a img {
		width: 16rem;
	}
}

@media (width <= 450px) {
	.nav-logo a img {
		width: 14rem;
	}
}

.nav-items {
	display: flex;
	gap: 1.8rem;
}

.nav-items a {
	font-size: clamp(0.9rem, 1.5vw, 1rem);
	text-decoration: none;
	position: relative;
	transition: color 0.3s ease;
	text-transform: uppercase;
}

.nav-items a:hover {
	color: var(--mint-first);
}

/* HAMBURGER MOBILE MENU */

.hamburger-toggle {
	display: none;
	cursor: pointer;
	z-index: 15;
}

.hamburger-toggle img {
	width: 2rem;
	height: auto;
}

.close-icon {
	display: none;
}

.mobile-nav-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--navy);
	z-index: 9;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transition:
		max-height 0.4s ease-out,
		opacity 0.3s ease-out,
		visibility 0.3s ease-out 0.1s;
}

.mobile-nav-overlay.active {
	max-height: 100vh;
	opacity: 1;
	visibility: visible;
}

.mobile-nav-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	gap: 1rem;
	height: 100%;
	overflow-y: auto;
	box-sizing: border-box;
}

.mobile-nav-content a {
	text-decoration: none;
	text-transform: uppercase;
	padding: 0.8rem 1.5rem;
	font-size: clamp(0.9rem, 1.5vw, 1rem);
	color: var(--white);
}

@media (width <= 1000px) {
	.nav-items {
		display: none;
	}

	.hamburger-toggle {
		display: flex;
		align-items: center;
	}

	.menu-icon {
		display: block;
	}

	.close-icon {
		display: none;
	}

	.hamburger-toggle.active .menu-icon {
		display: none;
	}

	.hamburger-toggle.active .close-icon {
		display: block;
	}
}

/* HEADER */

header {
	background-color: var(--navy);
	min-height: 85vh;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: stretch;
}

.calc-md-header {
	all: unset;
}

header::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 48%;
	height: 100%;
	background-color: var(--white);
	clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
	z-index: 0;
}

.calc-md-header::after {
	all: unset;
}

.c-header {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 2rem;
}

.header-left {
	padding: 4rem 3rem 4rem 0;
}

.header-left h1 {
	font-size: clamp(1.6rem, 3vw, 2.8rem);
	color: var(--white);
	margin-bottom: 1.5rem;
}

.header-left h1 span {
	color: var(--mint-first);
}

.header-left p {
	font-size: clamp(1rem, 1.8vw, 1.25rem);
	color: var(--white);
	line-height: 1.75;
	max-width: 480px;
	margin-bottom: 2.5rem;
}

.header-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.btn-primary {
	display: inline-block;
	padding: 0.8rem 2rem;
	background: var(--mint-first);
	color: var(--navy);
	font-size: clamp(0.9rem, 1.5vw, 1rem);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 700;
	transition:
		background-color 0.3s,
		color 0.3s;
}

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

.header-right {
	position: relative;
	z-index: 2;
	min-height: 85vh;
	overflow: hidden;
	padding: 2rem 0;
	display: flex;
	align-items: center;
}

.photo-wrap {
	position: relative;
	width: 100%;
	height: 100%;
}

.photo-wrap img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
	max-height: calc(100% - 4rem);
	margin: 0 auto;
}

.deco-line {
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(
		to bottom,
		transparent,
		var(--mint-first) 20%,
		var(--mint-first) 80%,
		transparent
	);
	z-index: 2;
	opacity: 0.6;
}

@media (width <= 892px) {
	.c-header {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.header-left {
		padding: 4rem 1.5rem 2rem 1.5rem;
	}

	.header-left h1 {
		font-size: clamp(2rem, 6vw, 2.8rem);
	}

	.header-left p {
		font-size: clamp(1rem, 3vw, 1.15rem);
		max-width: none;
	}

	.header-buttons {
		justify-content: center;
	}

	.header-right {
		min-height: unset;
		padding: 1rem 1.5rem;
		display: block;
	}

	.photo-wrap {
		max-width: 400px;
		margin: 0 auto;
		height: auto;
	}

	.photo-wrap img {
		max-height: 400px;
		width: auto;
	}

	.deco-line {
		display: none;
	}

	header::after {
		display: none;
	}
}

@media (width <= 768px) {
	header {
		min-height: unset;
		padding-bottom: 2rem;
	}

	.header-right {
		padding: 1rem;
	}

	.photo-wrap {
		max-width: 300px;
	}

	.photo-wrap img {
		max-height: 300px;
	}
}

@media (width <= 576px) {
	.header-left h1 {
		font-size: clamp(1.8rem, 7vw, 2.5rem);
	}

	.header-left p {
		font-size: clamp(0.9rem, 3.5vw, 1.1rem);
	}

	.btn-primary {
		padding: 0.7rem 1.8rem;
		font-size: 0.8rem;
	}
}

/* O MNIE */

.o-mnie {
	padding: 10dvh 0;
}

.om-top {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 1px;
	background: rgba(26, 39, 68, 0.1);
	margin-bottom: 1px;
	align-items: stretch;
}

.om-title {
	background-color: var(--navy);
	padding: 2.5rem 2.8rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.om-title .section-label {
	color: var(--mint-first);
	margin-bottom: 0.6rem;
}

.om-title h2 {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 400;
	color: var(--white);
}

.om-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: rgba(26, 39, 68, 0.1);
}

.om-stat {
	background-color: var(--white);
	padding: 1.4rem 1.6rem;
	transition: background-color 0.25s;
}

.om-stat:hover {
	background-color: var(--mint-second);
}

.om-stat-num {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	color: var(--navy);
	margin-bottom: 0.35rem;
}

.om-stat-num span {
	color: var(--mint-first);
}

.om-stat-label {
	font-size: clamp(0.9rem, 1.5vw, 1rem);
	text-transform: uppercase;
}

.om-body {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.om-col-left {
	padding: 3.5rem 4rem 3.5rem 2.8rem;
	border-right: 1px solid rgba(26, 39, 68, 0.07);
}

.om-col-right {
	padding: 3.5rem 2.8rem 3.5rem 4rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.om-col-left h2 {
	font-size: clamp(1.3rem, 2.5vw, 1.8rem);
	font-weight: 400;
	margin-bottom: 2rem;
	border-left: 5px solid var(--mint-first);
	padding-left: 1rem;
}

.om-para {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	margin-bottom: 1.2rem;
}
.om-para:last-child {
	margin-bottom: 0;
}

.om-mba {
	background-color: var(--navy);
	padding: 1.6rem 1.8rem;
	position: relative;
}

.om-mba::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 5px;
	background: var(--mint-first);
}

.om-mba .mba-label {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	text-transform: uppercase;
	font-weight: 700;
	color: var(--mint-first);
	margin-bottom: 0.6rem;
	display: block;
}

.om-mba p {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	color: var(--white);
}

.kliknij-obszar {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.om-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.8rem;
}

.om-tags a {
	text-decoration: none;
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	background-color: var(--mint-first);
	padding: 0.3rem 0.8rem;
	transition: background-color 0.3s ease;
}

.om-tags a:hover {
	background-color: var(--mint-second);
}

@media (width <= 1100px) {
	.om-top {
		grid-template-columns: 1fr;
	}
	.om-title {
		padding: 2rem 2rem;
	}
	.om-stats {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (width <= 800px) {
	.om-stats {
		grid-template-columns: 1fr 1fr;
	}
	.om-body {
		grid-template-columns: 1fr;
	}
	.om-col-left {
		padding: 2.5rem 1.5rem;
		border-right: none;
		border-bottom: 1px solid rgba(26, 39, 68, 0.07);
	}
	.om-col-right {
		padding: 2.5rem 1.5rem;
	}
}

@media (width <= 480px) {
	.o-mnie {
		padding: 6dvh 0;
	}
	.om-title {
		padding: 1.8rem 1.2rem;
	}
	.om-stat {
		padding: 1rem 1.2rem;
	}

	.om-col-left,
	.om-col-right {
		padding: 2rem 1.2rem;
	}
	.om-col-left h2 {
		font-size: 1.2rem;
		border-left-width: 3px;
	}
	.om-mba {
		padding: 1.2rem 1.4rem;
	}
	.om-tag {
		padding: 0.25rem 0.65rem;
	}
}

/* CZYM SIE ZAJMUJE OFERTA */

.container-oferta {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}

#oferta {
	padding: 10dvh 0;
}

#oferta h2 {
	text-align: center;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 400;
	margin-bottom: 6rem;
}

#oferta h2 span {
	color: var(--mint-first);
}

.timeline {
	position: relative;
	padding: 0;
}

.timeline::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	background: linear-gradient(
		to bottom,
		transparent,
		var(--mint-first) 5%,
		var(--mint-first) 95%,
		transparent
	);
}

.timeline-item {
	display: grid;
	grid-template-columns: 1fr 60px 1fr;
	gap: 0;
	margin-bottom: 4rem;
	position: relative;
}

.timeline-item:nth-child(odd) .tl-image {
	grid-column: 1;
	grid-row: 1;
}
.timeline-item:nth-child(odd) .tl-center {
	grid-column: 2;
	grid-row: 1;
}
.timeline-item:nth-child(odd) .tl-text {
	grid-column: 3;
	grid-row: 1;
}

.timeline-item:nth-child(even) .tl-text {
	grid-column: 1;
	grid-row: 1;
}
.timeline-item:nth-child(even) .tl-center {
	grid-column: 2;
	grid-row: 1;
}
.timeline-item:nth-child(even) .tl-image {
	grid-column: 3;
	grid-row: 1;
}

.tl-center {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding-top: 1.5rem;
	gap: 0.4rem;
	z-index: 2;
}

.tl-dot {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background-color: var(--mint-first);
	border: 3px solid var(--white);
	box-shadow: 0 0 0 2px var(--mint-first);
	flex-shrink: 0;
}

.tl-image {
	overflow: hidden;
	min-height: 280px;
}

.timeline-item:nth-child(odd) .tl-image {
	padding-right: 2rem;
}

.timeline-item:nth-child(even) .tl-image {
	padding-left: 2rem;
}

.tl-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: grayscale(20%);
	transition: transform 0.4s ease;
}

.tl-image:hover img {
	transform: scale(1.03);
}

.tl-text {
	background-color: var(--mint-second);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.timeline-item:nth-child(odd) .tl-text {
	padding-left: 2rem;
}

.timeline-item:nth-child(even) .tl-text {
	padding-right: 2rem;
}

.tl-text h3 {
	font-size: clamp(1rem, 1.5vw, 1.3rem);
	text-transform: uppercase;
	font-weight: 700;
	border-left: 4px solid var(--mint-first);
	padding-left: 0.7rem;
	margin-bottom: 1rem;
	flex-shrink: 0;
	line-height: 1.4;
}

.tl-text h3 span {
	color: var(--mint-first);
}

.tl-text p {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	margin-bottom: 0.6rem;
	flex-shrink: 1;
	overflow: hidden;
}

.p-program {
	font-weight: 700;
}

.tl-text .btn,
.tl-cta-note .btn,
.kp-footer-btn .btn  {
	display: inline-block;
	margin-top: auto;
	padding: 0.45rem 1.1rem;
	background: var(--mint-first);
	color: var(--navy);
	text-decoration: none;
	font-size: clamp(0.9rem, 1.5vw, 1.1rem);
	width: fit-content;
	flex-shrink: 0;
	letter-spacing: 0.06em;
	transition:
		background 0.3s,
		color 0.3s;
}

.tl-text .btn:hover,
.tl-cta-note .btn:hover,
.kp-footer-btn .btn:hover {
	background: var(--navy);
	color: var(--white);
}

.tl-cta-note {
	margin-top: 4rem;
	border-left: 4px solid var(--mint-first);
	padding: 1.6rem 2rem;
	background: var(--mint-second);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.tl-cta-note p {
	font-size: clamp(1rem, 1.4vw, 1.1rem);
	/* max-width: 680px; */
}

@media (width <= 1024px) {
	.tl-image {
		min-height: 220px;
	}
	.tl-text {
		padding: 1.5rem;
	}
	.timeline-item:nth-child(odd) .tl-image {
		padding-right: 1rem;
	}
	.timeline-item:nth-child(even) .tl-image {
		padding-left: 1rem;
	}
}

@media (width <= 900px) {
	.timeline::before {
		left: 24px;
	}
	#oferta h2 {
		margin-bottom: 3.5rem;
	}
	.timeline-item {
		grid-template-columns: 48px 1fr;
		grid-template-rows: auto auto;
		margin-bottom: 2.5rem;
	}

	.timeline-item:nth-child(odd) .tl-image,
	.timeline-item:nth-child(even) .tl-image {
		grid-column: 2;
		grid-row: 1;
		padding: 0;
		min-height: 200px;
		max-height: 260px;
	}

	.timeline-item:nth-child(odd) .tl-center,
	.timeline-item:nth-child(even) .tl-center {
		grid-column: 1;
		grid-row: 1 / 3;
		justify-content: flex-start;
		padding-top: 1rem;
	}

	.timeline-item:nth-child(odd) .tl-text,
	.timeline-item:nth-child(even) .tl-text {
		grid-column: 2;
		grid-row: 2;
		padding: 1.2rem;
	}
}

@media (width <= 480px) {
	.container-oferta {
		padding: 0 1rem;
	}
	#oferta {
		padding: 5dvh 0;
	}
	.timeline-item {
		grid-template-columns: 36px 1fr;
		margin-bottom: 2rem;
	}
	.timeline::before {
		left: 18px;
	}
	.tl-dot {
		width: 14px;
		height: 14px;
	}
	.timeline-item:nth-child(odd) .tl-image,
	.timeline-item:nth-child(even) .tl-image {
		min-height: 160px;
		max-height: 200px;
	}
	.timeline-item:nth-child(odd) .tl-text,
	.timeline-item:nth-child(even) .tl-text {
		padding: 1rem;
	}

	.tl-text .btn {
		padding: 0.5rem 1rem;
	}
}

/* QUOTE*/

.quote-section {
	padding: 6rem 2rem;
	background-color: var(--white-second);
}

.quote-inner {
	max-width: 1400px;
	margin: 0 auto;
}

.quote-top {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.quote-top-line {
	flex: 1;
	height: 1px;
	background: rgba(26, 39, 68, 0.1);
}

.quote-text {
	font-size: clamp(1.8rem, 4vw, 3.5rem);
	line-height: 1.25;
}

.quote-text em {
	color: var(--mint-first);
	font-style: normal;
}

.quote-author {
	margin-top: 2.5rem;
	font-size: clamp(0.9rem, 1.5vw, 1rem);
	text-transform: uppercase;
	color: rgba(26, 39, 68, 0.35);
}

@media (wisth <= 600px) {
	.quote-section {
		padding: 4rem 2rem;
	}
}

/* LOGA ZAUFALI MI */

.zaufali {
	padding: 5rem 2rem;
}

.zaufali-inner {
	max-width: 1600px;
	margin: 0 auto;
}

.zaufali-header {
	text-align: center;
	margin-bottom: 3.5rem;
}

.zaufali-header h2 {
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 400;
}

.logos-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	max-width: 900px;
	margin: 0 auto;
}

@media (width <= 600px) {
	.logos-grid {
		grid-template-columns: 1fr;
	}
}

.logo-cell {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2.2rem 2.5rem;
	min-height: 100px;
}

.logo-cell img {
	max-width: 200px;
	max-height: 80px;
	width: 100%;
	height: auto;
	object-fit: contain;
}

/* WSPÓŁPRACA */

.wspolpraca {
	padding: 5rem 2rem;
}

.wspolpraca-inner {
	max-width: 1400px;
	margin: 0 auto;
}

.wspolpraca-header {
	margin-bottom: 3.5rem;
	text-align: center;
}

.wspolpraca-header h2 {
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 400;
	margin-bottom: 1.5rem;
}

.wspolpraca-header-line {
	width: 100%;
	height: 1px;
	background: linear-gradient(to right, rgba(94, 196, 176, 0.3), transparent);
}

.namir-card {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1px;
	max-width: 800px;
}

.namir-logo-cell {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3rem 3.5rem;
}

.namir-logo-cell img {
	max-width: 180px;
	width: 100%;
	height: auto;
	object-fit: contain;
	display: block;
}

.namir-info-cell {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 1.5rem 2rem;
}

.btn-namir {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.75rem 1.6rem;
	background-color: var(--mint-first);
	color: var(--navy);
	text-decoration: none;
	font-size: clamp(0.9rem, 1.5vw, 1.1rem);
	text-transform: uppercase;
	width: fit-content;
	letter-spacing: 0.1em;
	transition:
		background-color 0.3s,
		color 0.3s;
}

.btn-namir:hover {
	background: var(--navy);
	color: var(--white);
}

@media (width <= 600px) {
	.wspolpraca {
		padding: 3.5rem 1.5rem;
	}
	.namir-card {
		grid-template-columns: 1fr;
		max-width: 100%;
	}
	.namir-logo-cell {
		padding: 2rem 2rem 1.5rem;
	}
	.namir-info-cell {
		padding: 1.5rem 2rem 2rem;
		justify-content: center;
		align-items: center;
	}
}

@media (width <= 400px) {
	.wspolpraca {
		padding: 3rem 1rem;
	}
	.namir-logo-cell img {
		max-width: 140px;
	}
	.btn-namir {
		padding: 0.65rem 1.3rem;
		width: 100%;
		justify-content: center;
	}
}

/* FAQ PYTANIA */

.faq {
	padding: 7rem 2rem;
	background: var(--navy);
	color: var(--white);
	position: relative;
	overflow: hidden;
}

.faq-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 6rem;
	align-items: start;
	position: relative;
	z-index: 1;
}

@media (width <= 900px) {
	.faq-inner {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.faq {
		padding: 4rem 2rem;
	}
}

.faq-header h2 {
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 400;
	margin-bottom: 1rem;
	color: var(--white);
}

.faq-header h2 span {
	color: var(--mint-first);
}

.faq-list {
	display: flex;
	flex-direction: column;
}

.faq-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
	width: 100%;
	background-color: var(--navy);
	color: var(--white);
	border: none;
	font-size: clamp(1rem, 1.4vw, 1.1rem);
	text-align: left;
	padding: 1.5rem 0;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	transition: color 0.2s;
}

.faq-question:hover {
	color: var(--mint-first);
}

.faq-item.active .faq-question {
	color: var(--mint-first);
}

.faq-icons {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	flex-shrink: 0;
}

.faq-icons img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	max-width: 22px;
	max-height: 22px;
}

.icon-up {
	display: none;
}

.faq-item.active .icon-down {
	display: none;
}

.faq-item.active .icon-up {
	display: block;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.faq-answer p {
	font-size: clamp(0.9rem, 1.4vw, 1rem);
	padding-bottom: 1.5rem;
}

/* WSPOLPRACA NIE DLA KAZDEGO */

.nie-dla-kazdego {
	padding: 7rem 2rem;
	background-color: var(--white-second);
}

.ndke-inner {
	max-width: 1400px;
	margin: 0 auto;
}

@media (width <= 700px) {
	.nie-dla-kazdego {
		padding: 4rem 2rem;
	}
}

.ndke-inner h2 {
	font-size: clamp(1.6rem, 3.5vw, 2.4rem);
	font-weight: 400;
	border-left: 5px solid var(--mint-first);
	padding-left: 1rem;
	margin-bottom: 3rem;
}

.nie-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1px;
	margin-bottom: 2rem;
	margin-left: -2.5rem;
}

.nie-list li {
	background-color: var(--white);
	padding: 1.1rem 1.3rem;
	display: flex;
	align-items: flex-start;
	gap: 0.9rem;
	font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.nie-icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	margin-top: 3px;
	position: relative;
	opacity: 0.35;
}
.nie-icon::before,
.nie-icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 1.5px;
	background: var(--navy);
	border-radius: 1px;
}
.nie-icon::before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.nie-icon::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.ndke-middle {
	background-color: var(--navy);
	color: var(--white);
	padding: 1.8rem 2rem;
	position: relative;
	margin-bottom: 1.5rem;
}

.ndke-middle::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 5px;
	background: var(--mint-first);
}

.ndke-middle p {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.ndke-reject {
	background-color: var(--white);
	border-left: 3px solid var(--mint-second);
	padding: 1.2rem 1.5rem;
	margin-bottom: 3rem;
}

.ndke-reject p {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.ndke-separator {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

.ndke-separator::before,
.ndke-separator::after {
	content: "";
	flex: 1;
	height: 1px;
	background: rgba(26, 39, 68, 0.1);
}
.ndke-separator span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--mint-first);
	display: block;
	flex-shrink: 0;
}

/* KONTAKT */

.kontakt {
	overflow: hidden;
	/* outline: 3px solid red; */
}

.kontakt-inner {
	/* max-width: 1600px;
	margin: 0 auto; */
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 640px;
}

@media (width <= 900px) {
	.kontakt-inner {
		grid-template-columns: 1fr;
	}
}

.kontakt-photo {
	position: relative;
	overflow: hidden;
	min-height: 480px;
}

.kontakt-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
}

.kontakt-photo::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 5px;
	height: 100%;
	background: linear-gradient(
		to bottom,
		transparent,
		var(--mint-first) 20%,
		var(--mint-first) 80%,
		transparent
	);
	z-index: 2;
	opacity: 0.7;
}

.kontakt-content {
	background-color: var(--navy);
	color: var(--white);
	padding: 5rem 4rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

@media (width <= 900px) {
	.kontakt-content {
		padding: 3.5rem 2rem;
	}
}

.kontakt-content h2 {
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 400;
	color: var(--white);
	margin-bottom: 1rem;
	position: relative;
	z-index: 1;
}

.kontakt-content h2 span {
	color: var(--mint-first);
}

.kontakt-lead {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	margin-bottom: 1rem;
	position: relative;
	z-index: 1;
}

.kontakt-promise {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	margin-bottom: 2.5rem;
	padding-left: 1rem;
	border-left: 3px solid rgba(94, 196, 176, 0.3);
	position: relative;
	z-index: 1;
}

.kontakt-data {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	margin-bottom: 2.5rem;
	position: relative;
	z-index: 1;
}

.kontakt-data-item {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.kontakt-data-item .kd-icon {
	width: 32px;
	height: 32px;
	border: 1px solid rgba(94, 196, 176, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.kontakt-data-item .kd-icon img {
	width: 16px;
	height: 16px;
	stroke: var(--mint-first);
	fill: none;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.kontakt-data-item a {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	text-decoration: none;
	transition: color 0.2s;
}

.kontakt-data-item a:hover {
	color: var(--mint-first);
}

.kontakt-data-item p {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.kontakt-separator {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
	position: relative;
	z-index: 1;
}

.kontakt-separator::before,
.kontakt-separator::after {
	content: "";
	flex: 1;
	height: 1px;
	background: rgba(255, 255, 255, 0.08);
}

.kontakt-separator span {
	font-size: clamp(0.8rem, 1.5vw, 0.9rem);
	color: var(--white);
	text-transform: uppercase;
}

.btn-napisz {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 2.2rem;
	background-color: var(--mint-first);
	color: var(--navy);
	text-decoration: none;
	font-size: clamp(0.9rem, 1.5vw, 1rem);
	text-transform: uppercase;
	font-weight: 700;
	width: fit-content;
	position: relative;
	z-index: 1;
	letter-spacing: 0.1em;
	transition: background-color 0.3s;
}

.btn-napisz:hover {
	background-color: var(--white);
}

/* PRZYCISK W GÓRĘ */

#przyciskDoGory {
	display: none;
	position: fixed;
	bottom: 5rem;
	right: 1.5rem;
	z-index: 99;
	outline: none;
	cursor: pointer;
	background-color: var(--mint-first);
	padding: 0.3rem;
}

#przyciskDoGory img {
	width: 1.5rem;
	height: 1.5rem;
	display: block;
}

@media (width <= 1000px) {
	#przyciskDoGory {
		display: none !important;
	}
}

/* FORMULARZ KONTAKT PODSTRONA */

.contact-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 6rem;
	align-items: start;
}

@media (width <= 900px) {
	.contact-inner {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.main {
		padding: 4rem 2rem;
	}
}

.contact-info h2 {
	font-size: clamp(1.2rem, 2.5vw, 1.6rem);
	font-weight: 400;

	border-left: 5px solid var(--mint-first);
	padding-left: 1rem;
	margin-bottom: 2rem;
}

.contact-info p {
	font-size: clamp(0.9rem, 1.5vw, 1.1rem);
	margin-bottom: 2rem;
}

.contact-items {
	display: flex;
	flex-direction: column;
	gap: 1px;
	margin-bottom: 2rem;
}

.contact-item {
	padding: 1.2rem 1.4rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	text-decoration: none;
	transition: background-color 0.25s;
}

.contact-item:hover {
	background-color: var(--mint-second);
}

.ci-icon {
	width: 40px;
	height: 40px;
	border: 1px solid rgba(94, 196, 176, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.ci-icon img {
	width: 16px;
	height: 16px;
	stroke: var(--mint-first);
	fill: none;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ci-label {
	font-size: clamp(0.8rem, 1.5vw, 0.9rem);
	text-transform: uppercase;
	color: rgba(26, 39, 68, 0.4);
	margin-bottom: 0.15rem;
	display: block;
}

.ci-value {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	color: var(--navy);
}

.contact-promise {
	background-color: var(--navy);
	padding: 1.6rem 1.8rem;
	position: relative;
}

.contact-promise::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 5px;
	background: var(--mint-first);
}

.contact-promise p {
	font-size: clamp(0.9rem, 1.5vw, 1.1rem);
	color: var(--white);
	margin: 0;
}

/* honeypot */

.honeypot {
	display: none !important;
}

.form-container h3 {
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 400;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(26, 39, 68, 0.08);
	color: var(--navy);
}

form {
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
}

.form-field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.form-field label {
	font-size: clamp(0.9rem, 1.5vw, 1rem);
	text-transform: uppercase;
}

.form-field input,
.form-field textarea {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 1px solid rgba(26, 39, 68, 0.15);
	border-bottom: 2px solid rgba(26, 39, 68, 0.15);
	background: var(--white);
	font-size: clamp(0.9rem, 1.5vw, 1rem);
	color: var(--navy);
	outline: none;
	transition:
		border-color 0.25s,
		background 0.25s;
	appearance: none;
	border-radius: 0;
}

.form-field input:focus,
.form-field textarea:focus {
	border-color: rgba(26, 39, 68, 0.15);
	border-bottom-color: var(--mint-first);
	background: var(--mint-second);
}

.form-field textarea {
	resize: vertical;
	min-height: 140px;
}

.checkbox {
	display: flex;
	gap: 0.9rem;
	align-items: flex-start;
}

.checkbox input[type="checkbox"] {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	margin-top: 2px;
	accent-color: var(--mint-first);
	cursor: pointer;
}

.checkbox label {
	font-size: clamp(0.8rem, 1.5vw, 0.8rem);
	cursor: pointer;
}

.checkbox label a {
	color: var(--mint-first);
}

.btn-submit {
	display: inline-flex;
	align-items: center;
	padding: 1rem 2.2rem;
	background: var(--mint-first);
	color: var(--navy);
	border: none;
	font-size: clamp(0.8rem, 1.5vw, 1rem);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	width: fit-content;
	margin-top: 0.4rem;
	transition:
		background-color 0.3s,
		color 0.3s,
		gap 0.3s;
}

.btn-submit:hover {
	background-color: var(--navy);
	color: var(--white);
}

/* Style dla pop-upu */

.form-message-popup {
	background-color: var(--navy);
	color: var(--white);
	padding: 1rem;
	text-align: center;
	font-size: clamp(0.9rem, 1vw + 0.5rem, 1.2rem);
	display: none;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	max-width: 30rem;
	box-sizing: border-box;
	position: fixed;
	top: 2rem;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 4rem);
	z-index: 1000;
}

.form-message-popup.show {
	display: block;
	opacity: 1;
}

/* CENNIK */

.main-cennik {
	padding: 5rem 2rem 6rem;
}

.main-inner-cennik {
	max-width: 1100px;
	margin: 0 auto;
}

.cat-section {
	margin-bottom: 4rem;
}

.cat-section:last-child {
	margin-bottom: 0;
}

.section-header {
	display: flex;
	align-items: flex-end;
	gap: 1.2rem;
	margin-bottom: 1.2rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid rgba(94, 196, 176, 0.18);
}

.section-num {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	font-weight: 700;
	color: var(--mint-first);
	line-height: 1;
	flex-shrink: 0;
}

.section-title {
	font-size: clamp(1.1rem, 1.5vw, 1.3rem);
	font-weight: 400;
}

.svc-table {
	width: 100%;
	border-collapse: collapse;
}
.svc-table tbody tr {
	border-bottom: 1px solid rgba(26, 39, 68, 0.07);
}

.svc-table tbody tr:last-child {
	border-bottom: none;
}

.svc-table td {
	padding: 1.1rem 0.8rem;
	vertical-align: middle;
}

.svc-table td:first-child {
	padding-left: 0;
}

.svc-name {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.td-price {
	text-align: right;
	white-space: nowrap;
	min-width: 160px;
}

.price {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.price-unit {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	display: block;
	margin-top: 0.1rem;
}

.td-lnk {
	text-align: right;
	width: 40px;
}

.row-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background-color: var(--mint-second);
	text-decoration: none;
}

.td-lnk img {
	width: 1.5rem;
	height: 1.5rem;
	display: block;
}

.cat-divider {
	height: 1px;
	background: linear-gradient(
		to right,
		rgba(94, 196, 176, 0.3),
		rgba(94, 196, 176, 0.03)
	);
	margin-bottom: 4rem;
}

/* OFERTA 1 AUDYT DOKUMENTACJI PODMIOTU MEDYCZNEGO */

.hero {
	background-color: var(--navy);
	padding: 5rem 2rem 5rem;
	position: relative;
	overflow: hidden;
}

.hero-inner {
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.hero-inner h1 {
	font-size: clamp(2rem, 5vw, 3.5rem);
	color: var(--white);
	margin-bottom: 1.5rem;
	font-weight: 500;
}

.hero-inner h1 span {
	color: var(--mint-first);
}

.hero-lead {
	color: var(--white);
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	max-width: 680px;
	margin-bottom: 1rem;
}

.hero-price {
	display: inline-block;
	margin-top: 2rem;
	padding: 0.6rem 1.6rem;
	background-color: var(--mint-first);
	color: var(--navy);
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	letter-spacing: 0.1em;
}

.main {
	padding: 6rem 2rem;
}

.main-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: start;
}

@media (width <= 800px) {
	.main-inner {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
}

.main-image {
	position: sticky;
	top: 2rem;
}

.main-image-wrap {
	overflow: hidden;
	height: 480px;
}

.main-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.image-caption {
	background-color: var(--mint-second);
	padding: 1.2rem 1.4rem;
	border-left: 4px solid var(--mint-first);
	margin-top: 1rem;
}

.image-caption p {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.image-caption .caption-label {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	text-transform: uppercase;
	color: var(--mint-first);
	margin-bottom: 0.5rem;
	display: block;
	letter-spacing: 0.1em;
	font-weight: 900;
}

.section-label {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	text-transform: uppercase;
	/* letter-spacing: 0.15em; */
	color: var(--mint-first);
	margin-bottom: 0.6rem;
	display: block;
	font-weight: 900;
}

.main-text h2 {
	font-size: clamp(1.2rem, 2.5vw, 1.6rem);
	border-left: 5px solid var(--mint-first);
	padding-left: 1rem;
	margin-bottom: 1.5rem;
}

.main-text p {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	margin-bottom: 1rem;
}

.list-label {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	text-transform: uppercase;
	color: var(--navy);
	margin: 1.5rem 0 0.8rem;
	display: block;
}

.audit-list {
	list-style: none;
	margin-bottom: 1.5rem;
	margin-left: -2rem;
}

.audit-list li {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	padding: 0.5rem 0 0.5rem 1.5rem;
	position: relative;
	border-bottom: 1px solid rgba(94, 196, 176, 0.2);
}

.audit-list li:last-child {
	border-bottom: none;
}

.audit-list li::before {
	content: "\2192";
	position: absolute;
	left: 0;
	color: var(--mint-first);
	font-size: clamp(1.1rem, 1.5vw, 1.2rem);
	flex-shrink: 0;
	margin-top: -0.2rem;
}

.result-box {
	background-color: var(--mint-second);
	color: var(--navy);
	padding: 1.8rem 2rem;
	margin: 2rem 0;
	position: relative;
}

.result-box::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 5px;
	background: var(--mint-first);
}

.result-box .result-label {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	text-transform: uppercase;
	color: var(--navy);
	margin-bottom: 0.7rem;
	display: block;
	font-weight: 900;
}

.result-box p {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	margin: 0;
}

.discount-box {
	background: var(--mint-second);
	border-left: 4px solid var(--mint-first);
	padding: 1.3rem 1.5rem;
	margin: 1.5rem 0;
}

.discount-box p {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	margin: 0 0 0.5rem;
}

.discount-box p:last-child {
	margin: 0;
}

.discount-box .footnote {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	font-style: italic;
}

.cta-section {
	background-color: var(--navy);
	padding: 6rem 2rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 60px solid transparent;
	border-right: 60px solid transparent;
	border-top: 40px solid var(--white);
}

.cta-section h2 {
	font-size: clamp(1.5rem, 4vw, 2.8rem);
	color: var(--white);
	font-weight: 400;
	margin-bottom: 1rem;
}

.cta-section p {
	color: var(--white);
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	margin-bottom: 2.5rem;
}

.btn-cta {
	display: inline-block;
	padding: 0.9rem 2.5rem;
	background-color: var(--mint-first);
	color: var(--navy);
	text-decoration: none;
	font-size: clamp(0.8rem, 1.5vw, 1rem);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition:
		background-color 0.3s,
		color 0.3s;
	font-weight: 700;
}

.btn-cta:hover {
	background-color: var(--white);
}

@media (width <= 800px) {
	.main-image {
		position: static;
	}
	.main-image-wrap {
		height: 280px;
	}
	.main {
		padding: 3.5rem 2rem;
	}
}

/* OFERTA 2 MINI AUDYT ONLINE */

.hero-details {
	margin-top: 2rem;
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.hero-detail-chip {
	background-color: var(--mint-first);
	color: var(--navy);
	padding: 0.55rem 1.2rem;
	font-size: clamp(0.9rem, 1.5vw, 1.1rem);
	letter-spacing: 0.08em;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.hero-detail-chip .chip-icon {
	font-size: clamp(0.9rem, 1.5vw, 1.1rem);
}

.for-whom {
	background-color: var(--mint-second);
	padding: 1.5rem 1.6rem;
	border-left: 4px solid var(--mint-first);
	margin-top: 1rem;
}

.for-whom .fw-label {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	text-transform: uppercase;
	font-weight: 900;
	color: var(--mint-first);
	margin-bottom: 0.7rem;
	display: block;
}

.for-whom p {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.steps {
	margin: 2rem 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.step {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 1rem;
	padding: 1.2rem 0;
	border-bottom: 1px solid rgba(94, 196, 176, 0.2);
	align-items: center;
}

.step:last-child {
	border-bottom: none;
}

.step-num {
	width: 36px;
	height: 36px;
	border: 2px solid var(--mint-first);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(0.9rem, 1.5vw, 1rem);
	color: var(--mint-first);
	flex-shrink: 0;
	margin-top: 2px;
}

.step-text {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.areas {
	background-color: var(--mint-second);
	color: var(--navy);
	padding: 1.8rem 2rem;
	margin: 1.5rem 0;
	position: relative;
}

.areas::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 5px;
	background: var(--mint-first);
}

.areas .areas-label {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	text-transform: uppercase;
	color: var(--navy);
	margin-bottom: 0.8rem;
	display: block;
	font-weight: 700;
}

.areas-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.area-chip {
	background-color: var(--mint-first);
	color: var(--navy);
	padding: 0.35rem 0.9rem;
	font-size: clamp(1rem, 1.5vw, 1.1rem);
}

/* OFERTA 3 ZAKUP PEŁNYCH PAKIETÓW TEMATYCZNYCH */

.pakiety-nav {
	padding: 3rem 2rem 0;
	max-width: 1100px;
	margin: 0 auto;
}

#pakiety-nav {
	background-color: var(--white-second);
}

.pakiety-nav-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

@media (width <= 900px) {
	.pakiety-nav-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (width <= 500px) {
	.pakiety-nav-grid {
		grid-template-columns: 1fr;
	}
}

.nav-card {
	background-color: var(--mint-first);
	padding: 1.5rem 1.2rem;
	text-decoration: none;
	color: var(--navy);
	display: flex;
	flex-direction: column;
	border-bottom: 3px solid transparent;
	transition: background-color 0.3s;
}

.nav-card:hover {
	background-color: var(--mint-second);
}

.nav-card .nav-num {
	font-size: clamp(0.9rem, 1.5vw, 0.9rem);
	color: var(--navy);
	margin-bottom: 0.5rem;
	display: block;
}

.nav-card .nav-title {
	font-size: clamp(0.9rem, 1.5vw, 1rem);
	text-transform: uppercase;
	font-weight: 700;
}

.nav-card .nav-price {
	margin-top: 0.8rem;
	font-size: clamp(0.9rem, 1.5vw, 0.9rem);
	font-weight: 700;
}

.container-pakiety {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 2rem;
}

.pakiet-section {
	padding: 6rem 0;
}

.pakiet-section:last-child {
	border-bottom: none;
}

.pakiet-section:nth-child(odd) {
	background-color: var(--white-second);
}

.pakiet-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

@media (width <= 800px) {
	.pakiet-layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

.pakiet-section:nth-child(even) .pakiet-layout {
	direction: rtl;
}

.pakiet-section:nth-child(even) .pakiet-layout > * {
	direction: ltr;
}

.pakiet-image {
	position: relative;
	overflow: hidden;
	height: 420px;
}

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

.pakiet-header {
	margin-bottom: 2rem;
}

.pakiet-number {
	font-size: clamp(0.9rem, 1.5vw, 1rem);
	color: var(--mint-first);
	text-transform: uppercase;
	margin-bottom: 0.6rem;
	display: block;
	font-weight: 700;
}

.pakiet-content h2 {
	font-size: clamp(1.3rem, 3vw, 2rem);
	font-weight: 400;
	border-left: 5px solid var(--mint-first);
	padding-left: 1rem;
	margin-bottom: 1.2rem;
	text-transform: uppercase;
}

.pakiet-lead {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	margin-bottom: 1.5rem;
}

.pakiet-list {
	list-style: none;
	margin-bottom: 1.5rem;
	margin-left: -2rem;
}

.pakiet-list li {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	padding: 0.45rem 0 0.45rem 1.7rem;
	position: relative;
	border-bottom: 1px solid rgba(94, 196, 176, 0.15);
}

.pakiet-list li:last-child {
	border-bottom: none;
}

.pakiet-list li::before {
	content: "\2192";
	position: absolute;
	left: 0;
	color: var(--mint-first);
	font-size: clamp(1.1rem, 1.5vw, 1.2rem);
	flex-shrink: 0;
	margin-top: -0.1rem;
}

.pakiet-note {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	margin-bottom: 1.2rem;
}

.podstawa {
	background: var(--mint-second);
	border-left: 4px solid var(--mint-first);
	padding: 1.2rem 1.4rem;
	margin-top: 1.5rem;
}

.podstawa-title {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	text-transform: uppercase;
	color: var(--mint-first);
	margin-bottom: 0.6rem;
	display: block;
	font-weight: 700;
}

.podstawa p {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.podstawa .obowiazek {
	margin-top: 0.6rem;
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	font-weight: 700;
}

.pakiet-sublist {
	margin: 0.5rem 0 1rem 1rem;
	padding: 0;
}

.pakiet-sublist li {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	padding: 0.2rem 0 0.2rem 0;
	position: relative;
}

.pakiet-extra-note {
	background-color: var(--mint-second);
	border-left: 4px solid var(--mint-first);
	padding: 1rem 1.2rem;
	margin: 1.2rem 0;
	font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.pakiet-extra-note strong {
	color: var(--mint-first);
	display: block;
	margin-bottom: 0.3rem;
	text-transform: uppercase;
	font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.pakiet-extra-note p {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
}

/* OFERTA 4 PAKIET SEGREGATOR */

.hero-lead-accent {
	color: var(--white);
	font-size: clamp(1rem, 1.5vw, 1rem);
	max-width: 680px;
	border-left: 3px solid var(--mint-first);
	padding-left: 1.2rem;
	margin-top: 1.2rem;
	margin-bottom: 2rem;
}

.for-whom-strip {
	background-color: var(--mint-second);
	padding: 3rem 2rem;
}

.for-whom-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 3rem;
	align-items: center;
}

@media (width <= 700px) {
	.for-whom-inner {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

.fw-label-big {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	text-transform: uppercase;
	font-weight: 700;
	color: var(--mint-first);
	white-space: nowrap;
	padding-right: 2rem;
	border-right: 2px solid var(--mint-first);
}

@media (width <= 700px) {
	.fw-label-big {
		border-right: none;
		border-bottom: 2px solid var(--mint-first);
		padding: 0 0 0.8rem;
	}
}

.fw-items {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.fw-item {
	display: flex;
	align-items: flex-start;
	gap: 0.06rem;
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	color: var(--navy);
	flex: 1 1 200px;
}

.fw-item::before {
	content: "\2192";
	color: var(--mint-first);
	font-size: clamp(1.1rem, 1.5vw, 1.2rem);
	flex-shrink: 0;
	margin-right: 1rem;
	margin-top: -0.1rem;
}

.main-seg {
	padding: 6rem 2rem;
}

.main-seg-inner {
	max-width: 1100px;
	margin: 0 auto;
}

.main-seg-inner .section-label {
	text-align: center;
	margin-bottom: 2rem;
}

.result {
	margin-top: 2rem;
}

.result p {
	text-align: center;
}

.pakiet-components {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
}

@media (width <= 900px) {
	.pakiet-components {
		grid-template-columns: 1fr;
	}
}

.component-card {
	padding: 3rem 2.5rem;
	border-right: 1px solid rgba(94, 196, 176, 0.2);
	border-bottom: 1px solid rgba(94, 196, 176, 0.2);
	position: relative;
	transition: background-color 0.3s;
	display: flex;
	flex-direction: column;
}

.component-card:hover {
	background-color: var(--mint-second);
}

.component-card:nth-child(3n) {
	border-right: none;
}

@media (width <= 900px) {
	.component-card {
		border-right: none;
	}
	.component-card:last-child {
		border-bottom: none;
	}
}

.component-num {
	font-size: clamp(1.2rem, 1.5vw, 1.7rem);
	color: rgba(94, 196, 176, 0.2);
	margin-bottom: 1rem;
	font-weight: 700;
	transition: color 0.3s;
}

.component-card:hover .component-num {
	color: rgba(94, 196, 176, 0.5);
}

.component-card h3 {
	font-size: clamp(1rem, 1.8vw, 1.2rem);
	text-transform: uppercase;
	border-left: 4px solid var(--mint-first);
	padding-left: 0.8rem;
	margin-bottom: 1.2rem;
	letter-spacing: 0.02em;
}

.component-card p {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	margin-bottom: 1rem;
	min-height: 80px;
}

.component-list {
	list-style: none;
	margin-left: 0;
	padding-left: 0;
}

.component-list li {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	padding: 0.4rem 0;
	position: relative;
	border-bottom: 1px solid rgba(94, 196, 176, 0.15);
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	margin-left: 0;
}

.component-list li:last-child {
	border-bottom: none;
}

.component-list li::before {
	content: "\2192";
	color: var(--mint-first);
	font-size: clamp(1.1rem, 1.5vw, 1.2rem);
	flex-shrink: 0;
	text-align: right;
	margin-top: -0.2rem;
}

.result p {
	font-size: clamp(1.1rem, 1.5vw, 1.2rem);
}

/* OFERTA 5 DOKUMENTACJA SZYTA NA MIARĘ */

.process-section {
	background-color: var(--white);
	padding: 2rem 2rem 8rem 2rem;
}

.process-inner {
	max-width: 1100px;
	margin: 0 auto;
}

.process-header {
	text-align: center;
	margin-bottom: 4rem;
}

.process-header h2 {
	font-size: clamp(1.5rem, 3vw, 1.8rem);
	font-weight: 400;
}

.flow {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	position: relative;
	padding-top: 2rem;
}

@media (width <= 1000px) {
	.flow {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (width <= 600px) {
	.flow {
		grid-template-columns: 1fr;
		padding-top: 0;
	}
}

.flow-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 1rem 2rem;
	position: relative;
	z-index: 1;
	flex-grow: 1;
}

.flow-dot {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: var(--white);
	border: 2px solid var(--mint-first);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.2rem;
	flex-shrink: 0;
	position: relative;
	transition: background-color 0.3s;
}

.flow-step:hover .flow-dot {
	background-color: var(--mint-first);
}

.flow-dot-num {
	font-size: clamp(0.9rem, 1.5vw, 1rem);
	color: var(--mint-first);
	font-weight: 700;
	transition: color 0.3s;
}

.flow-step:hover .flow-dot-num {
	color: var(--white);
}

.flow-step:last-child .flow-dot {
	background-color: var(--mint-first);
	border-color: var(--mint-first);
}

.flow-step:last-child .flow-dot-num {
	color: var(--white);
}

.flow-title {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	text-transform: uppercase;
	font-weight: 700;
	margin-top: 1.2rem;
	margin-bottom: 1rem;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.flow-desc {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	color: rgba(26, 39, 68, 0.65);
	max-width: 300px;
}

.flow-step:last-child .flow-title {
	color: var(--mint-first);
}

@media (width <= 600px) {
	.flow-step {
		padding: 1rem 0.5rem;
	}

	.flow-title {
		min-height: unset;
	}

	.flow-desc {
		max-width: none;
	}
}

/*  */

/* OFERTA 6 AUDYTY */

.zakres-box {
	background-color: var(--mint-second);
	border-left: 4px solid var(--mint-first);
	padding: 1.4rem 1.6rem;
	margin-top: 1rem;
}

.zakres-box .zb-label {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	text-transform: uppercase;
	color: var(--mint-first);
	margin-bottom: 0.7rem;
	display: block;
	font-weight: 700;
}

.zakres-list {
	list-style: none;
	margin-left: -2rem;
}

.zakres-list li {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	padding: 0.3rem 0 0.3rem 1.7rem;
	position: relative;
	border-bottom: 1px solid rgba(94, 196, 176, 0.2);
	gap: 0.5rem;
}

.zakres-list li:last-child {
	border-bottom: none;
}

.zakres-list li::before {
	content: "\2192";
	position: absolute;
	left: 0;
	color: var(--mint-first);
	font-size: clamp(1.1rem, 1.5vw, 1.2rem);
	flex-shrink: 0;
	margin-top: -0.1rem;
}

/* OFERTA 7 PRZYGOTOWANIE DO KONTROLI */

.kontrole-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-top: 1.5rem;
}

.kontrole-chip {
	background-color: var(--mint-first);
	color: var(--navy);
	padding: 0.4rem 1rem;
	font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.pilny-section {
	padding: 2rem 2rem 6rem 2rem;
}

.pilny-inner {
	max-width: 1100px;
	margin: 0 auto;
}

.pilny-header {
	display: flex;
	align-items: flex-start;
	gap: 2rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.pilny-badge {
	background-color: var(--mint-first);
	padding: 0.7rem 1.4rem;
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	white-space: nowrap;
	flex-shrink: 0;
	align-self: flex-start;
	margin-top: 0.3rem;
}

.pilny-header-text h2 {
	font-size: clamp(1.3rem, 3vw, 2rem);
	font-weight: 400;
	margin-bottom: 0.5rem;
}

.pilny-header-text .pilny-price {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	color: var(--mint-first);
	font-weight: 700;
	margin-left: 0.3rem;
}

.pilny-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

@media (width <= 700px) {
	.pilny-grid {
		grid-template-columns: 1fr;
	}
}

.pilny-card {
	background-color: var(--white-second);
	padding: 2rem;
	border-top: 3px solid var(--mint-first);
	transition: box-shadow 0.3s;
}

.pilny-card:hover {
	box-shadow: 0 8px 32px rgba(26, 39, 68, 0.08);
}

.pilny-card .pc-label {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	text-transform: uppercase;
	font-weight: 700;
	color: var(--mint-first);
	margin-bottom: 0.7rem;
	display: block;
}

.pilny-card h3 {
	font-size: clamp(1rem, 1.7vw, 1.1rem);
	font-weight: 400;
	margin-bottom: 0.8rem;
}

.pilny-card p {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	color: rgba(26, 39, 68, 0.78);
}

.pilny-result {
	background-color: var(--navy);
	padding: 2rem 2.5rem;
	margin-top: 2rem;
	border-left: 5px solid var(--mint-first);
	grid-column: 1 / -1;
	color: var(--white);
}

.pilny-result .pr-label {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	text-transform: uppercase;
	font-weight: 700;
	color: var(--mint-first);
	margin-bottom: 0.7rem;
	display: block;
}

.pilny-result p {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	margin: 0;
}

.pilny-result p strong {
	color: var(--mint-first);
	font-weight: 400;
}

/* OFERTA 8 KOMPLEKSOWE WSPARCIE INTERIM MANAGER */

.hero-details {
	display: flex;
	gap: 1.2rem;
	flex-wrap: wrap;
}

.hero-chip {
	background-color: var(--mint-first);
	padding: 0.45rem 1.1rem;
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.image-tag {
	margin-top: 2rem;
	background-color: var(--navy);
	border-left: 5px solid var(--mint-first);
	padding: 1.4rem 1.6rem;
	color: var(--white);
}

.image-tag p {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
}

/*  OFERTA 9 WSPARCIE W ZAKŁADANIU PODMIOTÓW */

.image-areas {
	background-color: var(--mint-second);
	border-left: 4px solid var(--mint-first);
	padding: 1.4rem 1.6rem;
	margin-top: 1rem;
}

.image-areas .ia-label {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	text-transform: uppercase;
	color: var(--mint-first);
	margin-bottom: 0.7rem;
	display: block;
	font-weight: 700;
}

.areas-inline {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.area-tag {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	background-color: var(--mint-first);
	padding: 0.25rem 0.7rem;
}

.avoid-box {
	background-color: var(--navy);
	color: var(--white);
	padding: 1.8rem 2rem;
	margin: 2rem 0;
	position: relative;
}

.avoid-box::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 5px;
	background-color: var(--mint-first);
}

.avoid-box .avoid-label {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	text-transform: uppercase;
	color: var(--mint-first);
	margin-bottom: 0.8rem;
	display: block;
	font-weight: 700;
}

.avoid-list {
	list-style: none;
	margin-left: -2rem;
}

.avoid-list li {
	font-size: clamp(1rem, 1.2vw, 1.1rem);
	padding: 0.4rem 0 0.4rem 1.4rem;
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.avoid-list li:last-child {
	border-bottom: none;
}

.avoid-list li::before {
	content: "✕";
	position: absolute;
	left: 0;
	color: var(--mint-first);
	font-size: clamp(0.9rem, 1.5vw, 1rem);
}

/* OFERTA 10 STAŁE WSPARCIE DOKUMENTACYJNE ABONAMENT */

.hero-price-box {
	display: inline-flex;
	flex-direction: column;
	background-color: var(--mint-first);
	padding: 0.8rem 1.8rem;
}

.hero-price-box .price-amount {
	font-size: clamp(1rem, 1.5vw, 1.3rem);
	color: var(--navy);
}

.hero-price-box .price-period {
	font-size: clamp(0.9rem, 1.5vw, 1.1rem);
	text-transform: uppercase;
	margin-top: 0.3rem;
	text-align: center;
}

.image-caption .ic-label {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	text-transform: uppercase;
	font-weight: 700;
	color: var(--mint-first);
	margin-bottom: 0.7rem;
	display: block;
}

.cover-list {
	list-style: none;
	margin-left: -2rem;
}

.cover-list li {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	padding: 0.35rem 0 0.35rem 1.7rem;
	position: relative;
	border-bottom: 1px solid rgba(94, 196, 176, 0.2);
}

.cover-list li:last-child {
	border-bottom: none;
}

.cover-list li::before {
	content: "\2192";
	position: absolute;
	left: 0;
	color: var(--mint-first);
	font-size: clamp(1.1rem, 1.5vw, 1.2rem);
	flex-shrink: 0;
	margin-top: -0.1rem;
}

/* OFERTA 11 SZKOLENIA */

.nav-strip {
	background-color: var(--mint-second);
	padding: 2.5rem 2rem;
	overflow-x: auto;
}

.nav-strip-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	gap: 0.6rem;
	flex-wrap: wrap;
}

.nav-pill {
	display: inline-block;
	padding: 0.45rem 1rem;
	border: 1px solid rgba(26, 39, 68, 0.2);
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	letter-spacing: 0.06em;
	color: var(--navy);
	text-decoration: none;
	transition:
		background 0.2s,
		border-color 0.2s,
		color 0.2s;
	white-space: nowrap;
}

.nav-pill:hover {
	background: var(--mint-first);
	border-color: var(--mint-first);
}

.szkolenie-section {
	padding: 5rem 2rem;
}

.szkolenie-section:nth-child(even) {
	background: var(--white-second);
}

.sz-inner {
	max-width: 1100px;
	margin: 0 auto;
}

.sz-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
}

.sz-num {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	color: var(--mint-first);
	margin-bottom: 0.4rem;
	display: block;
}

.sz-header h2 {
	font-size: clamp(1.2rem, 2.5vw, 1.8rem);
	font-weight: 400;
	border-left: 5px solid var(--mint-first);
	padding-left: 1rem;
}

.sz-meta {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.4rem;
	flex-shrink: 0;
}

.sz-price {
	font-size: clamp(1.1rem, 2vw, 1.5rem);
	color: var(--mint-first);
	letter-spacing: 0.05em;
}

.sz-time {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.sz-body-simple {
	max-width: 760px;
}

.sz-body-simple p {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	margin-bottom: 0.9rem;
}

.sz-note {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	margin-top: 0.5rem;
	border-left: 3px solid var(--mint-first);
	padding-left: 0.8rem;
}

.sz-body-complex {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

@media (width <= 800px) {
	.sz-body-complex {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.sz-meta {
		align-items: flex-start;
	}
}

.sz-text p {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	margin-bottom: 0.9rem;
}

.sz-components {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	background-color: var(--mint-second);
	border: 1px solid rgba(94, 196, 176, 0.15);
}

.sz-component {
	background-color: var(--white-second);
	padding: 1.3rem 1.5rem;
}

.sz-component-title {
	font-size: clamp(1rem, 1.3vw, 1.2rem);
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.sz-component-title .c-num {
	color: var(--mint-first);
}

.sz-component p {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.dla-kogo-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-top: 1rem;
}

.dk-tag {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	background: var(--mint-first);
	border: 1px solid rgba(94, 196, 176, 0.4);
	padding: 0.25rem 0.7rem;
	color: var(--navy);
}

.modules-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	background-color: var(--mint-second);
	border: 1px solid rgba(94, 196, 176, 0.15);
	margin-top: 1.5rem;
}

@media (width <= 600px) {
	.modules-grid {
		grid-template-columns: 1fr;
	}
}

.module-card {
	background-color: var(--white);
	padding: 1.4rem 1.5rem;
}

.module-card .m-num {
	font-size: clamp(1rem, 1.5vw, 1rem);
	margin-bottom: 0.4rem;
	display: block;
	color: var(--mint-first);
}

.module-card h4 {
	font-size: clamp(1.1rem, 1.3vw, 1.2rem);
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.module-card p {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.otrzymywac {
	margin-top: 2rem;
}

.otrzymuje-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.4rem 2rem;
	margin-top: 1.2rem;
	margin-left: -1.3rem;
}

@media (width <= 600px) {
	.otrzymuje-list {
		grid-template-columns: 1fr;
	}
}

.otrzymuje-list li {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	padding-left: 1.3rem;
	position: relative;
}

li::marker {
	color: var(--mint-first);
}

.efekt-grid-container {
	margin-top: 2rem;
}

.efekt-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1.2rem;
}

.efekt-item {
	background-color: var(--navy);
	color: var(--white);
	padding: 0.5rem 1rem;
	font-size: clamp(1rem, 1.5vw, 1.1rem);
}

/* OFERTA 12 KSIEGI REJESTRY I OZNAKOWANIA */

#ksiegi-nav {
	padding: 3rem 2rem 0;
}

.ksiegi-nav {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	gap: 1rem;
}

.ksiegi-nav a {
	padding: 1.5rem 1.2rem;
	text-decoration: none;
	color: var(--navy);
	background-color: var(--mint-second);
}

@media (width <= 600px) {
	.ksiegi-nav {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
		max-width: unset;
		margin: 0;
	}

	.ksiegi-nav a {
		padding: 1rem 0.8rem;
	}
}

.ksiegi-nav a span {
	font-size: clamp(0.9rem, 1.5vw, 1rem);
	text-transform: uppercase;
}

.ksiegi-intro {
	padding: 5rem 2rem 4rem;
}

.ksiegi-intro-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 280px;
	gap: 4rem;
}

@media (width <= 800px) {
	.ksiegi-intro-inner {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

.ksiegi-intro-text {
	max-width: 100%;
}

.ksiegi-intro-text h2 {
	font-size: clamp(1.4rem, 2.5vw, 2rem);
	font-weight: 500;
	margin-bottom: 1.5rem;
}

.ksiegi-intro-text p {
	font-size: clamp(0.9rem, 1.5vw, 1.1rem);
	margin-bottom: 0.8rem;
}

.ksiegi-intro-text p span {
	font-weight: 700;
}

.ks-stats-row {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

@media (width <= 800px) {
	.ks-stats-row {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (width <= 500px) {
	.ks-stats-row {
		grid-template-columns: 1fr;
	}
}

.ks-stat {
	background-color: var(--mint-second);
	padding: 1.8rem 1.6rem;
	display: flex;
	flex-direction: column;
}

.ks-stat-num {
	font-size: clamp(1.4rem, 2.5vw, 2rem);
	margin-bottom: 0.4rem;
}

.ks-stat-label {
	font-size: clamp(0.9rem, 1.5vw, 1.1rem);
}

.ks-sep {
	padding: 1.2rem 2rem;
}

.ks-sep-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 2rem;
}

.ks-sep-text {
	font-size: clamp(1.5rem, 1.5vw, 1.8rem);
}

.ks-sep-sub {
	display: block;
	font-size: clamp(0.9rem, 1.5vw, 1.1rem);
	margin-top: 0.3rem;
}

.ksiegi-sekcja {
	padding: 4rem 2rem;
}

.ksiegi-container {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.kp-item {
	display: flex;
	flex-direction: column;
	border: 1px solid #eeeeee;
	overflow: hidden;
	background-color: var(--mint-second);
}

.kp-img {
	width: 100%;
	height: 250px;
	background-color: var(--mint-second);
}

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

.kp-body {
	padding: 2rem 1rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.kp-title {
	font-size: clamp(1.1rem, 1.5vw, 1.2rem);
	margin-bottom: 1rem;
	text-transform: uppercase;
	font-weight: 800;
	border-left: 4px solid var(--mint-first);
	padding-left: 0.7rem;
}

.kp-desc {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	margin-bottom: 2rem;
}

.kp-footer-btn {
	display: flex;
	justify-content: space-between;
}

.kp-footer {
	margin-top: auto;
}

.kp-price {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	font-weight: 700;
}

.kp-inne-list {
	padding: 0;
	margin: 1rem 0 2rem 0;
	list-style: none;
}

.kp-inne-list li {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	padding: 0.2rem 0;
	display: flex;
	align-items: flex-start;
}

.kp-inne-list li::before {
	content: "•";
	margin-right: 8px;
	color: var(--mint-first);
}


@media (max-width: 850px) {
	.ksiegi-container {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

/* FOOTER */

#footer {
	background-color: var(--navy);
	color: var(--white);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding: 1rem 0;
}

.footer-text {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.footer-text p {
	font-size: clamp(0.8rem, 1vw + 0.5rem, 0.9rem);
}

.footer-text p a {
	text-decoration: none;
	transition: color 0.3s;
}

.footer-text p a:hover {
	color: var(--mint-first);
}

.blog-inner {
	max-width: 1100px;
	margin: 0 auto;
}

.posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1rem;
}

.post-card {
	display: grid;
	grid-template-rows: auto 1fr auto;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.06);
	cursor: pointer;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.post-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.post-card a {
	text-decoration: none;
	display: contents;
}

.card-img {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

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

.card-body {
	padding: 1rem;
	display: grid;
	grid-template-rows: auto auto 1fr;
	gap: 0.5rem;
}

.card-body span {
	font-size: clamp(0.9rem, 1.5vw, 0.9rem);
	color: #555;
}

.card-body h3 {
	font-size: clamp(1.2rem, 1.5vw, 1.3rem);
	text-transform: uppercase;
	line-height: 1.2;
}

.card-body p {
	font-size: clamp(1rem, 1.5vw, 1rem);
	line-height: 1.5;
	margin-bottom: 0;
}

.card-read-more {
	border-top: 1px solid #ede8e0;
	font-size: clamp(1rem, 1.5vw, 1rem);
	color: var(--mint-first);
	padding-top: 0.5rem;
	align-self: end;
}

.article-box {
	max-width: 820px;
	margin: 0 auto;
}

.article-box h3 {
	font-size: clamp(2.2rem, 5vw, 2.6rem);
	text-transform: uppercase;
	margin-bottom: 2rem;
}

.article-box p {
	margin-bottom: 0.3rem;
}

.article-box p a {
	text-decoration: none;
	color: var(--mint-first);
}

.article-img {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	margin-bottom: 2rem;
}

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

/* .article-text {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.article-text > div {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.article-text p {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	padding: 0;
}

.article-text div p a {
	text-decoration: none;
	color: var(--mint-first);
} */
