﻿/* ============================================
   BAU GREEN - MAIN CSS
   Smart Cleanup Version - All Functions Preserved
   ============================================ */

@import url(fontawesome-all.min.css);
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;800&display=swap&subset=latin-ext");

/* ============================================
   CSS RESET - HTML5 UP SPECTRAL BASE
   ============================================ */

html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	-webkit-text-size-adjust: none;
}

mark {
	background-color: transparent;
	color: inherit;
}

input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input, select, textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
}

/* ============================================
   CSS VARIABLES - EASY CUSTOMIZATION
   ============================================ */

:root {
    --color-navy: #0f2a37;
    --color-slate: #152733;
    --color-outline: #2a3c49;
    --color-teal-start: #1fd1b0;
    --color-teal-end: #3994a6;
    --color-cyan-start: #50c7f7;
    --color-cyan-end: #4da6d8;
    --color-indigo-start: #7a87ff;
    --color-indigo-end: #5060e9;
    --color-jade-start: #53dfb8;
    --color-jade-end: #2baa93;
    --color-warm-start: #f2a65a;
    --color-warm-end: #db7f3f;
    --halo-color: rgba(127, 239, 226, 0.3);
    --shadow-elevated: 0 12px 28px rgba(0, 0, 0, 0.35);
    --primary-color: var(--color-teal-start);
    --secondary-color: var(--color-slate);
    --accent-color: var(--color-warm-start);
    --dark-bg: var(--color-navy);
    --light-text: #ffffff;
    --overlay-dark: rgba(21, 39, 51, 0.72);
    /* Brand palette for icon borders */
    --oxide-teal: #2E8C82;   /* Oxide Teal */
    --steel-blue: #436D8E;   /* Steel Blue */
    --baltic-indigo: #3F5677;/* Baltic Indigo */
    --fog-cyan: #6FA6B2;     /* Fog Cyan */
}

/* ============================================
   BASIC TYPOGRAPHY & LAYOUT
   ============================================ */

@-ms-viewport {
	width: device-width;
}

html {
	box-sizing: border-box;
}

*, *:before, *:after {
	box-sizing: inherit;
}

body {
	background: var(--color-navy);
}

/* ============================================
   PRELOAD SCREEN - LIQUID GLASS LOADING
   ============================================ */

/* PRELOAD STATE - LIQUID GLASS BACKGROUND */
body.is-preload {
	background: linear-gradient(135deg, 
        rgba(46, 56, 66, 0.9) 0%,
        rgba(46, 56, 66, 0.8) 25%,
        rgba(62, 72, 82, 0.9) 50%,
        rgba(46, 56, 66, 0.8) 75%,
        rgba(46, 56, 66, 0.9) 100%
    ) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    position: relative;
    overflow: hidden;
}

/* ANIMATED GRADIENT OVERLAY FOR LOADING */
body.is-preload::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg,
		transparent 0%,
		rgba(255, 255, 255, 0.05) 25%,
		rgba(255, 255, 255, 0.1) 50%,
		rgba(255, 255, 255, 0.05) 75%,
		transparent 100%
	);
	background-size: 400% 400%;
	animation: loadingGradient 3s ease-in-out infinite;
	z-index: -1;
}

@keyframes loadingGradient {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

/* FLOATING PARTICLES EFFECT */
body.is-preload::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
		radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
		radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.4), transparent),
		radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.3), transparent),
		radial-gradient(2px 2px at 160px 30px, rgba(255,255,255,0.2), transparent);
	background-repeat: repeat;
	background-size: 200px 200px;
	animation: floatingParticles 20s linear infinite;
	z-index: -1;
	opacity: 0.6;
}

@keyframes floatingParticles {
	0% { transform: translateY(0px) rotate(0deg); }
	100% { transform: translateY(-200px) rotate(360deg); }
}

body, input, select, textarea {
	color: #fff;
	font-family: "Open Sans", Helvetica, sans-serif;
	font-size: 15pt;
	font-weight: 400;
	letter-spacing: 0.075em;
	line-height: 1.65em;
}

/* RESPONSIVE TYPOGRAPHY */
@media screen and (max-width: 1680px) {
	body, input, select, textarea {
		font-size: 13pt;
	}
}

@media screen and (max-width: 1280px) {
	body, input, select, textarea {
		font-size: 12pt;
	}
}

@media screen and (max-width: 736px) {
	body, input, select, textarea {
		font-size: 11pt;
		letter-spacing: 0.0375em;
	}
}

/* LINKS */
a {
	-moz-transition: color 0.2s ease, border-bottom-color 0.2s ease;
	-webkit-transition: color 0.2s ease, border-bottom-color 0.2s ease;
	-ms-transition: color 0.2s ease, border-bottom-color 0.2s ease;
	transition: color 0.2s ease, border-bottom-color 0.2s ease;
	border-bottom: dotted 1px;
	color: inherit;
	text-decoration: none;
}

a:hover {
	border-bottom-color: transparent;
}

/* TYPOGRAPHY */
strong, b {
	color: #fff;
	font-weight: 600;
}

em, i {
	font-style: italic;
}

p {
	margin: 0 0 2em 0;
}

h1, h2, h3, h4, h5, h6 {
	color: #fff;
	font-weight: 800;
	letter-spacing: 0.225em;
	line-height: 1em;
	margin: 0 0 1em 0;
	text-transform: uppercase;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: inherit;
	text-decoration: none;
}

h2 {
	font-size: 1.35em;
	line-height: 1.75em;
}

@media screen and (max-width: 736px) {
	h2 {
		font-size: 1.1em;
		line-height: 1.65em;
	}
}

h3 {
	font-size: 1.15em;
	line-height: 1.75em;
}

@media screen and (max-width: 736px) {
	h3 {
		font-size: 1em;
		line-height: 1.65em;
	}
}

h4 {
	font-size: 1em;
	line-height: 1.5em;
}

h5 {
	font-size: 0.8em;
	line-height: 1.5em;
}

h6 {
	font-size: 0.7em;
	line-height: 1.5em;
}

hr {
	border: 0;
	border-bottom: solid 2px #fff;
	margin: 3em 0;
}

hr.major {
	margin: 4.5em 0;
}

/* ============================================
   SECTION/ARTICLE COMPONENTS
   ============================================ */

section.special, article.special {
	text-align: center;
}

header p {
	color: rgba(255, 255, 255, 0.5);
	position: relative;
	top: -0.25em;
}

header h3 + p {
	font-size: 1.1em;
}

header h4 + p,
header h5 + p,
header h6 + p {
	font-size: 0.9em;
}

header.major {
	margin: 0 0 3.5em 0;
}

header.major h2, header.major h3, header.major h4, header.major h5, header.major h6 {
	border-bottom: solid 2px #fff;
	display: inline-block;
	padding-bottom: 1em;
	position: relative;
}

header.major h2:after, header.major h3:after, header.major h4:after, header.major h5:after, header.major h6:after {
	content: '';
	display: block;
	height: 1px;
}

header.major p {
	color: #fff;
	top: 0;
}

@media screen and (max-width: 736px) {
	header.major {
		margin: 0 0 2em 0;
	}
}

@media screen and (max-width: 980px) {
	header br {
		display: none;
	}
}

/* ============================================
   ICONS SYSTEM
   ============================================ */

.icon {
	text-decoration: none;
	border-bottom: none;
	position: relative;
}

.icon:before {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	text-transform: none !important;
	font-family: 'Font Awesome 5 Free';
	font-weight: 400;
}

.icon > .label {
	display: none;
}

.icon:before {
	line-height: inherit;
}

.icon.solid:before {
	font-weight: 900;
}

.icon.brands:before {
	font-family: 'Font Awesome 5 Brands';
}

.icon.major {
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	border-radius: 3px;
	border: solid 2px #fff;
	display: inline-block;
	font-size: 1.35em;
	height: calc(3em + 2px);
	line-height: 3em;
	text-align: center;
	width: calc(3em + 2px);
}

.icon.major:before {
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	display: inline-block;
	font-size: 1.5em;
}

@media screen and (max-width: 736px) {
	.icon.major {
		font-size: 1em;
	}
}

/* ICON COLORS */
.icon.style1 {
	color: #1d71c5;
}

.icon.style2 {
	color: #00f0ff;
}

.icon.style3 {
	color: #76ddff;
}

/* ============================================
   IMAGE COMPONENTS
   ============================================ */

.image {
	border-radius: 3px;
	border: 0;
	display: inline-block;
	position: relative;
}

.image img {
	border-radius: 3px;
	display: block;
}

.image.left {
	float: left;
	margin: 0 2em 2em 0;
	top: 0.25em;
}

.image.right {
	float: right;
	margin: 0 0 2em 2em;
	top: 0.25em;
}

.image.left, .image.right {
	max-width: 40%;
}

.image.left img, .image.right img {
	width: 100%;
}

.image.fit {
	display: block;
	margin: 0 0 2em 0;
	width: 100%;
}

.image.fit img {
	width: 100%;
}

/* ============================================
   LISTS & ACTIONS
   ============================================ */

ol {
	list-style: decimal;
	margin: 0 0 2em 0;
	padding-left: 1.25em;
}

ol li {
	padding-left: 0.25em;
}

ul {
	list-style: disc;
	margin: 0 0 2em 0;
	padding-left: 1em;
}

ul li {
	padding-left: 0.5em;
}

ul.alt {
	list-style: none;
	padding-left: 0;
}

ul.alt li {
	border-top: solid 1px #fff;
	padding: 0.5em 0;
}

ul.alt li:first-child {
	border-top: 0;
	padding-top: 0;
}

/* ACTIONS */
ul.actions {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	cursor: default;
	list-style: none;
	margin-left: -1em;
	padding-left: 0;
}

ul.actions li {
	padding: 0 0 0 1em;
	vertical-align: middle;
}

ul.actions.special {
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	width: 100%;
	margin-left: 0;
}

ul.actions.special li:first-child {
	padding-left: 0;
}

ul.actions.stacked {
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-left: 0;
}

ul.actions.stacked li {
	padding: 1em 0 0 0;
}

ul.actions.stacked li:first-child {
	padding-top: 0;
}

ul.actions.fit {
	width: calc(100% + 1em);
}

ul.actions.fit li {
	-moz-flex-grow: 1;
	-webkit-flex-grow: 1;
	-ms-flex-grow: 1;
	flex-grow: 1;
	-moz-flex-shrink: 1;
	-webkit-flex-shrink: 1;
	-ms-flex-shrink: 1;
	flex-shrink: 1;
	width: 100%;
}

ul.actions.fit li > * {
	width: 100%;
}

ul.actions.fit.stacked {
	width: 100%;
}

/* MOBILE ACTIONS */
@media screen and (max-width: 480px) {
	ul.actions:not(.fixed) {
		-moz-flex-direction: column;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		margin-left: 0;
		width: 100% !important;
	}

	ul.actions:not(.fixed) li {
		-moz-flex-grow: 1;
		-webkit-flex-grow: 1;
		-ms-flex-grow: 1;
		flex-grow: 1;
		-moz-flex-shrink: 1;
		-webkit-flex-shrink: 1;
		-ms-flex-shrink: 1;
		flex-shrink: 1;
		padding: 1em 0 0 0;
		text-align: center;
		width: 100%;
	}

	ul.actions:not(.fixed) li > * {
		width: 100%;
	}

	ul.actions:not(.fixed) li:first-child {
		padding-top: 0;
	}

	ul.actions:not(.fixed) li input[type="submit"],
	ul.actions:not(.fixed) li input[type="reset"],
	ul.actions:not(.fixed) li input[type="button"],
	ul.actions:not(.fixed) li button,
	ul.actions:not(.fixed) li .button {
		width: 100%;
	}

	ul.actions:not(.fixed) li input[type="submit"].icon:before,
	ul.actions:not(.fixed) li input[type="reset"].icon:before,
	ul.actions:not(.fixed) li input[type="button"].icon:before,
	ul.actions:not(.fixed) li button.icon:before,
	ul.actions:not(.fixed) li .button.icon:before {
		margin-left: -0.5em;
	}
}

/* ICONS LISTS */
ul.icons {
	cursor: default;
	list-style: none;
	padding-left: 0;
}

ul.icons li {
	display: inline-block;
	padding: 0 1em 0 0;
}

ul.icons li:last-child {
	padding-right: 0 !important;
}

ul.icons.major {
	padding: 1em 0;
}

ul.icons.major li {
	padding-right: 3.5em;
}

@media screen and (max-width: 736px) {
	ul.icons.major li {
		padding: 0 1em !important;
	}
}

/* ============================================
   BUTTON SYSTEM
   ============================================ */

input[type="submit"],
input[type="reset"],
input[type="button"],
button,
.button {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
	-moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	-webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	-ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	background-color: transparent;
	border-radius: 3px;
	border: 0;
	box-shadow: inset 0 0 0 2px #fff;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 0.8em;
	font-weight: 600;
	height: 3.125em;
	letter-spacing: 0.225em;
	line-height: 3.125em;
	max-width: 30em;
	padding: 0 2.75em;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover,
.button:hover {
	background-color: rgba(144, 144, 144, 0.25);
}

input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active,
button:active,
.button:active {
	background-color: rgba(144, 144, 144, 0.5);
}

input[type="submit"].icon:before,
input[type="reset"].icon:before,
input[type="button"].icon:before,
button.icon:before,
.button.icon:before {
	margin-right: 0.5em;
}

input[type="submit"].fit,
input[type="reset"].fit,
input[type="button"].fit,
button.fit,
.button.fit {
	width: 100%;
}

input[type="submit"].small,
input[type="reset"].small,
input[type="button"].small,
button.small,
.button.small {
	font-size: 0.8em;
}

input[type="submit"].large,
input[type="reset"].large,
input[type="button"].large,
button.large,
.button.large {
	font-size: 1.35em;
}

input[type="submit"].primary,
input[type="reset"].primary,
input[type="button"].primary,
button.primary,
.button.primary {
	background-color: #d75a4a;
	box-shadow: none !important;
	color: #ffffff !important;
}

input[type="submit"].primary:hover,
input[type="reset"].primary:hover,
input[type="button"].primary:hover,
button.primary:hover,
.button.primary:hover {
	background-color: #ef5e4a !important;
}

input[type="submit"].primary:active,
input[type="reset"].primary:active,
input[type="button"].primary:active,
button.primary:active,
.button.primary:active {
	background-color: #eb341c !important;
}

input[type="submit"].disabled, input[type="submit"]:disabled,
input[type="reset"].disabled,
input[type="reset"]:disabled,
input[type="button"].disabled,
input[type="button"]:disabled,
button.disabled,
button:disabled,
.button.disabled,
.button:disabled {
	pointer-events: none;
	opacity: 0.25;
}

@media screen and (max-width: 736px) {
	input[type="submit"],
	input[type="reset"],
	input[type="button"],
	button,
	.button {
		height: 3.75em;
		line-height: 3.75em;
	}
}

/* ============================================
   FEATURES GRID SYSTEM
   ============================================ */

.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
	gap: clamp(1.5rem, 4vw, 2.5rem);
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
}

.features li {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: clamp(1.25rem, 3.5vw, 2rem);
	border-radius: 16px;
	background: rgba(10, 24, 36, 0.75) !important;
	backdrop-filter: blur(3px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 20px 45px -25px rgba(0, 0, 0, 0.75);
	min-height: 16rem;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.features li:hover {
	transform: translateY(-2px);
	box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.85);
}

.features li:before { display: none !important; }

/* remove accent bar near h3 headings */
.features li h3 {
    position: static;
    padding-left: 0;
}
.features li h3::before {
    content: none !important;
    display: none !important;
}

/* FEATURES RESPONSIVE */
@media screen and (max-width: 980px) {
	.features {
		grid-template-columns: repeat(2, minmax(14rem, 1fr));
	}

	.features li {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: clamp(1.25rem, 3.5vw, 2rem);
	border-radius: 16px;
	background: rgba(10, 24, 36, 0.75) !important;
	backdrop-filter: blur(3px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 20px 45px -25px rgba(0, 0, 0, 0.75);
	min-height: 16rem;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
}

@media screen and (max-width: 736px) {
	.features {
		grid-template-columns: 1fr;
	}

	.features li {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: clamp(1.25rem, 3.5vw, 2rem);
	border-radius: 16px;
	background: rgba(10, 24, 36, 0.75) !important;
	backdrop-filter: blur(3px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 20px 45px -25px rgba(0, 0, 0, 0.75);
	min-height: 16rem;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
}

/* ============================================
   SPOTLIGHT SYSTEM
   ============================================ */

.spotlight {
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
}

.spotlight .image {
	-moz-order: 1;
	-webkit-order: 1;
	-ms-order: 1;
	order: 1;
	border-radius: 0;
	width: 35%;
}

.spotlight .image img {
	border-radius: 0;
	width: 90%;
}

.spotlight .content {
	padding: 2em 4em 0.1em 4em;
	-moz-order: 2;
	-webkit-order: 2;
	-ms-order: 2;
	order: 2;
	max-width: 48em;
	width: 70%;
}

.spotlight:nth-child(2n) {
	-moz-flex-direction: row-reverse;
	-webkit-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

/* ============================================
   SPOTLIGHT IMPROVED GRADIENTS - TRANSPARENT EDGES Ă˘â€ â€™ DARK CENTER
   ============================================ */

/* BASE SPOTLIGHT - BETTER GRADIENT */
.spotlight {
	background: linear-gradient(to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.1) 15%,
        rgba(0, 0, 0, 0.4) 30%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.4) 70%,
        rgba(0, 0, 0, 0.1) 85%,
        transparent 100%
    ) !important;
    backdrop-filter: blur(3px) !important;
    position: relative !important;
}

/* SPOTLIGHT PROGRESSIVE BACKGROUNDS - TRANSPARENT EDGES TO DARK CENTER */
.spotlight:nth-child(1),
.spotlight:first-of-type {
	background: linear-gradient(to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.05) 15%,
        rgba(0, 0, 0, 0.25) 30%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.25) 70%,
        rgba(0, 0, 0, 0.05) 85%,
        transparent 100%
    ) !important;
    backdrop-filter: blur(2px) !important;
}

.spotlight:nth-child(2),
.spotlight:nth-of-type(2) {
	background: linear-gradient(to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.1) 15%,
        rgba(0, 0, 0, 0.3) 30%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.3) 70%,
        rgba(0, 0, 0, 0.1) 85%,
        transparent 100%
    ) !important;
    backdrop-filter: blur(2px) !important;
}

.spotlight:nth-child(3),
.spotlight:nth-of-type(3) {
	background: linear-gradient(to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.15) 15%,
        rgba(0, 0, 0, 0.35) 30%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.35) 70%,
        rgba(0, 0, 0, 0.15) 85%,
        transparent 100%
    ) !important;
    backdrop-filter: blur(2px) !important;
}

.spotlight:nth-child(4),
.spotlight:nth-of-type(4) {
	background: linear-gradient(to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.2) 15%,
        rgba(0, 0, 0, 0.4) 30%,
        rgba(0, 0, 0, 0.65) 50%,
        rgba(0, 0, 0, 0.4) 70%,
        rgba(0, 0, 0, 0.2) 85%,
        transparent 100%
    ) !important;
    backdrop-filter: blur(2px) !important;
}

.spotlight:nth-child(5),
.spotlight:nth-of-type(5) {
	background: linear-gradient(to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.25) 15%,
        rgba(0, 0, 0, 0.45) 30%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.45) 70%,
        rgba(0, 0, 0, 0.25) 85%,
        transparent 100%
    ) !important;
    backdrop-filter: blur(2px) !important;
}

.spotlight:nth-child(6),
.spotlight:nth-of-type(6) {
	background: linear-gradient(to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 15%,
        rgba(0, 0, 0, 0.5) 30%,
        rgba(0, 0, 0, 0.75) 50%,
        rgba(0, 0, 0, 0.5) 70%,
        rgba(0, 0, 0, 0.3) 85%,
        transparent 100%
    ) !important;
    backdrop-filter: blur(2px) !important;
}

.spotlight:nth-child(7),
.spotlight:nth-of-type(7) {
	background: linear-gradient(to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.35) 15%,
        rgba(0, 0, 0, 0.55) 30%,
        rgba(0, 0, 0, 0.8) 50%,
        rgba(0, 0, 0, 0.55) 70%,
        rgba(0, 0, 0, 0.35) 85%,
        transparent 100%
    ) !important;
    backdrop-filter: blur(2px) !important;
}

.spotlight:nth-child(8),
.spotlight:nth-of-type(8) {
	background: linear-gradient(to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.4) 15%,
        rgba(0, 0, 0, 0.6) 30%,
        rgba(0, 0, 0, 0.85) 50%,
        rgba(0, 0, 0, 0.6) 70%,
        rgba(0, 0, 0, 0.4) 85%,
        transparent 100%
    ) !important;
    backdrop-filter: blur(2px) !important;
}

.spotlight:nth-child(9),
.spotlight:nth-of-type(9) {
	background: linear-gradient(to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.45) 15%,
        rgba(0, 0, 0, 0.65) 30%,
        rgba(0, 0, 0, 0.9) 50%,
        rgba(0, 0, 0, 0.65) 70%,
        rgba(0, 0, 0, 0.45) 85%,
        transparent 100%
    ) !important;
    backdrop-filter: blur(2px) !important;
}

.spotlight:nth-child(10),
.spotlight:nth-of-type(10) {
	background: linear-gradient(to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.5) 15%,
        rgba(0, 0, 0, 0.7) 30%,
        rgba(0, 0, 0, 0.95) 50%,
        rgba(0, 0, 0, 0.7) 70%,
        rgba(0, 0, 0, 0.5) 85%,
        transparent 100%
    ) !important;
    backdrop-filter: blur(2px) !important;
}

/* SPOTLIGHT RESPONSIVE */
@media screen and (max-width: 1280px) {
	.spotlight .image {
		width: 45%;
	}

	.spotlight .content {
		width: 55%;
	}
}

@media screen and (max-width: 980px) {
	.spotlight {
		display: block;
	}

	.spotlight br {
		display: none;
	}

	.spotlight .image {
		width: 100%;
	}

	.spotlight .content {
		padding: 4em 3em 2em 3em;
		max-width: none;
		text-align: center;
		width: 100%;
	}
}

@media screen and (max-width: 736px) {
	.spotlight .content {
		padding: 3em 2em 1em 2em;
	}
}

/* ============================================
   WRAPPER SECTIONS SYSTEM
   ============================================ */

.wrapper {
	padding: 6em 0 4em 0;
}

.wrapper > .inner {
	width: 60em;
	margin: 0 auto;
}

@media screen and (max-width: 1280px) {
	.wrapper > .inner {
		width: 90%;
	}
}

@media screen and (max-width: 980px) {
	.wrapper > .inner {
		width: 100%;
	}
}

.wrapper.alt {
	padding: 0;
}

/* STYLE 1 - PRIMARY SECTION WITH CONSTANT OVERLAY */
.wrapper.style1 {
	position: relative;
	overflow: hidden;
	background: transparent !important;
	color: #c8ece9;
}

 .wrapper.style1::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(5, 12, 20, 0.64);
	backdrop-filter: blur(4px);
	pointer-events: none;
	z-index: 0;
}

/* soft fade at top/bottom to blend sections */
.wrapper.style1::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(6,14,22,0) 0%, rgba(6,14,22,0.35) 6%, rgba(6,14,22,0) 94%, rgba(6,14,22,0) 100%);
	pointer-events: none;
	z-index: 0;
}


.wrapper.style1 > .inner {
    position: relative;
    z-index: 1;
    /* Szerzej, aby wykorzystaÄ‡ przestrzeĹ„ */
    max-width: 85em;
    width: min(96%, 85em);
    padding: clamp(2rem, 4vw, 3rem) clamp(1.25rem, 3vw, 2rem);
}

.wrapper.style1.special header.major h2,
.wrapper.style1.special header.major h3,
.wrapper.style1.special header.major h4,
.wrapper.style1.special header.major h5,
.wrapper.style1.special header.major h6,
.wrapper.style1.special .features h3 {
	text-transform: none;
	letter-spacing: 0.02em;
}

.wrapper.style1.special header.major h2 {
	font-size: clamp(1.9rem, 2.5vw + 1rem, 2.75rem);
	line-height: 1.3;
	margin-bottom: 1.5rem;
}

.wrapper.style1.special .features h3 {
	font-size: clamp(1.15rem, 1.3vw + 1rem, 1.4rem);
	font-weight: 600;
	line-height: 1.4;
	margin: 0;
}

.wrapper.style1.special .features p {
	margin: 0;
	line-height: 1.6;
	letter-spacing: 0.01em;
}

.wrapper.style1 strong, .wrapper.style1 b {
	color: #ffffff;
}

.wrapper.style1 h2, .wrapper.style1 h3, .wrapper.style1 h4, .wrapper.style1 h5, .wrapper.style1 h6 {
	color: #ffffff;
}

.wrapper.style1 hr {
	border-color: rgba(0, 0, 0, 0.125);
}

.wrapper.style1 blockquote {
	border-color: rgba(0, 0, 0, 0.125);
}

.wrapper.style1 code {
	background: rgba(255, 255, 255, 0.075);
}

.wrapper.style1 header p {
	color: #a6e0db;
}

.wrapper.style1 header.major h2, .wrapper.style1 header.major h3, .wrapper.style1 header.major h4, .wrapper.style1 header.major h5, .wrapper.style1 header.major h6 {
	border-color: rgba(0, 0, 0, 0.125);
}

.wrapper.style1 header.major p {
	color: #c8ece9;
}

.wrapper.style1 input[type="submit"],
.wrapper.style1 input[type="reset"],
.wrapper.style1 input[type="button"],
.wrapper.style1 button,
.wrapper.style1 .button {
	box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.125);
	color: #ffffff;
}

.wrapper.style1 input[type="submit"]:hover,
.wrapper.style1 input[type="reset"]:hover,
.wrapper.style1 input[type="button"]:hover,
.wrapper.style1 button:hover,
.wrapper.style1 .button:hover {
	background-color: rgba(255, 255, 255, 0.075);
}

.wrapper.style1 input[type="submit"]:active,
.wrapper.style1 input[type="reset"]:active,
.wrapper.style1 input[type="button"]:active,
.wrapper.style1 button:active,
.wrapper.style1 .button:active {
	background-color: rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 736px) {
	.wrapper.style1 .features li {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: clamp(1.25rem, 3.5vw, 2rem);
	border-radius: 16px;
	background: rgba(10, 24, 36, 0.75) !important;
	backdrop-filter: blur(3px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 20px 45px -25px rgba(0, 0, 0, 0.75);
	min-height: 16rem;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
}

/* STYLE 2 - NEUTRAL */
.wrapper.style2 {
	background-color: #2e3842;
}

/* STYLE 3 - SECONDARY SECTION - TRANSPARENT WITH GRADIENT */
.wrapper.style3 {
	background: linear-gradient(to bottom,
        transparent 0%,
        rgba(61, 88, 105, 0.75) 10%,
        rgba(48, 62, 92, 0.75) 90%,
        transparent 100%
    ) !important;
    backdrop-filter: blur(3px);
    position: relative;
	color: #d3d4e4;
}

.wrapper.style3 strong, .wrapper.style3 b {
	color: #ffffff;
}

.wrapper.style3 h2, .wrapper.style3 h3, .wrapper.style3 h4, .wrapper.style3 h5, .wrapper.style3 h6 {
	color: #ffffff;
}

.wrapper.style3 hr {
	border-color: rgba(0, 0, 0, 0.125);
}

.wrapper.style3 blockquote {
	border-color: rgba(0, 0, 0, 0.125);
}

.wrapper.style3 code {
	background: rgba(255, 255, 255, 0.075);
}

.wrapper.style3 header p {
	color: #b9bad4;
}

.wrapper.style3 header.major h2, .wrapper.style3 header.major h3, .wrapper.style3 header.major h4, .wrapper.style3 header.major h5, .wrapper.style3 header.major h6 {
	border-color: rgba(0, 0, 0, 0.125);
}

.wrapper.style3 header.major p {
	color: #d3d4e4;
}

.wrapper.style3 input[type="submit"],
.wrapper.style3 input[type="reset"],
.wrapper.style3 input[type="button"],
.wrapper.style3 button,
.wrapper.style3 .button {
	box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.125);
	color: #ffffff;
}

.wrapper.style3 input[type="submit"]:hover,
.wrapper.style3 input[type="reset"]:hover,
.wrapper.style3 input[type="button"]:hover,
.wrapper.style3 button:hover,
.wrapper.style3 .button:hover {
	background-color: rgba(255, 255, 255, 0.075);
}

.wrapper.style3 input[type="submit"]:active,
.wrapper.style3 input[type="reset"]:active,
.wrapper.style3 input[type="button"]:active,
.wrapper.style3 button:active,
.wrapper.style3 .button:active {
	background-color: rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 736px) {
	.wrapper.style3 .features li {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: clamp(1.25rem, 3.5vw, 2rem);
	border-radius: 16px;
	background: rgba(10, 24, 36, 0.75) !important;
	backdrop-filter: blur(3px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 20px 45px -25px rgba(0, 0, 0, 0.75);
	min-height: 16rem;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
}

/* STYLE 4 - TRANSPARENT */
.wrapper.style4 {
	background-color: transparent;
}

/* STYLE 5 - LIGHT (jeÄąâ€şli potrzebny) */
.wrapper.style5 {
	background-color: #ffffff;
	color: #4E4852;
}

/* WRAPPER RESPONSIVE */
@media screen and (max-width: 980px) {
	.wrapper {
		padding: 4em 3em 2em 3em;
	}
}

@media screen and (max-width: 736px) {
	.wrapper {
		padding: 3em 2em 1em 2em;
	}
}

/* ============================================
   PAGE WRAPPER & MENU SYSTEM
   ============================================ */

#page-wrapper {
	-moz-transition: opacity 0.5s ease;
	-webkit-transition: opacity 0.5s ease;
	-ms-transition: opacity 0.5s ease;
	transition: opacity 0.5s ease;
	opacity: 1;
	padding-top: 3em;
}

#page-wrapper:before {
	background: rgba(0, 0, 0, 0);
	content: '';
	display: block;
	display: none;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10001;
}

/* MOBILE MENU LIQUID GLASS - MORE TRANSPARENT */
#menu {
	-moz-transform: translateX(20em);
	-webkit-transform: translateX(20em);
	-ms-transform: translateX(20em);
	transform: translateX(20em);
	-moz-transition: -moz-transform 0.5s ease;
	-webkit-transition: -webkit-transform 0.5s ease;
	-ms-transition: -ms-transform 0.5s ease;
	transition: transform 0.5s ease;
	-webkit-overflow-scrolling: touch;
	background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.08) 100%
    ) !important;
    backdrop-filter: blur(30px) saturate(200%);
    border: none !important;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.2);
	color: #ffffff;
	height: 100%;
	max-width: 80%;
	overflow-y: auto;
	padding: 3em 2em;
	position: fixed;
	right: 0;
	top: 0;
	width: 20em;
	z-index: 10002;
}

#menu ul {
	list-style: none;
	padding: 0;
}

/* MENU ITEMS - GEOMETRIC SEPARATORS + UNDERLINE HOVER */
#menu ul > li {
	border: none !important;
	margin: 0;
	padding: 0;
	background: none !important;
	border-radius: 0;
	position: relative;
	transition: all 0.3s ease;
}

/* GEOMETRIC SEPARATOR BARS */
#menu ul > li:not(:last-child)::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60%;
	height: 1px;
	background: linear-gradient(90deg, 
		transparent 0%, 
		rgba(255, 255, 255, 0.3) 20%, 
		rgba(255, 255, 255, 0.6) 50%, 
		rgba(255, 255, 255, 0.3) 80%, 
		transparent 100%
	);
	transition: all 0.3s ease;
}

#menu ul > li:hover::after {
	width: 80%;
	background: linear-gradient(90deg, 
		transparent 0%, 
		rgba(255, 255, 255, 0.5) 20%, 
		rgba(255, 255, 255, 0.9) 50%, 
		rgba(255, 255, 255, 0.5) 80%, 
		transparent 100%
	);
}

#menu ul > li > a {
	border: 0;
	color: inherit;
	display: block;
	font-size: 0.9em;
	letter-spacing: 0.2em;
	outline: 0;
	text-decoration: none;
	text-transform: uppercase;
	padding: 1.2em 1.5em;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	font-weight: 600;
	position: relative;
	transition: all 0.3s ease;
}

/* UNDERLINE HOVER EFFECT */
#menu ul > li > a::before {
	content: '';
	position: absolute;
	bottom: 0.5em;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, 
		rgba(255, 255, 255, 0.8), 
		rgba(255, 255, 255, 1), 
		rgba(255, 255, 255, 0.8)
	);
	transition: width 0.3s ease;
}

#menu ul > li:hover > a::before {
	width: 70%;
}

#menu ul > li:hover > a {
	transform: translateY(-2px);
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* LANGUAGE SWITCHER - GEOMETRIC STYLE */
#menu .language-switcher {
	display: flex !important;
	flex-direction: row !important;
	gap: 0 !important;
	background: none !important;
	border-radius: 0 !important;
	padding: 0.8em 1.5em !important;
	margin-top: 1.5em !important;
	position: relative !important;
}

/* GEOMETRIC SEPARATOR FOR LANGUAGE SWITCHER */
#menu .language-switcher::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	height: 1px;
	background: linear-gradient(90deg, 
		transparent 0%, 
		rgba(255, 255, 255, 0.4) 20%, 
		rgba(255, 255, 255, 0.8) 50%, 
		rgba(255, 255, 255, 0.4) 80%, 
		transparent 100%
	);
}

#menu .language-switcher a {
	flex: 1 !important;
	text-align: center !important;
	padding: 0.8em 0.5em !important;
	margin: 0 !important;
	border-radius: 0 !important;
	transition: all 0.3s ease !important;
	position: relative !important;
	font-size: 0.85em !important;
	font-weight: 700 !important;
}

/* LANGUAGE SEPARATOR LINES */
#menu .language-switcher a:not(:last-child)::after {
	content: '|';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(255, 255, 255, 0.4);
	font-weight: 300;
}

/* LANGUAGE HOVER UNDERLINE */
#menu .language-switcher a::before {
	content: '';
	position: absolute;
	bottom: 0.3em;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 1px;
	background: rgba(255, 255, 255, 0.9);
	transition: width 0.3s ease;
}

#menu .language-switcher a:hover::before {
	width: 60%;
}

#menu .language-switcher a:hover {
	transform: translateY(-1px) !important;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) !important;
}

@media screen and (max-width: 736px) {
	#menu ul > li > a {
		line-height: 2.5em;
		font-size: 0.85em;
	}
	
	#menu .language-switcher {
		flex-direction: row !important; /* Keep horizontal even on mobile */
	}
	
	#menu .language-switcher a {
		font-size: 0.8em !important;
		padding: 0.6em 0.3em !important;
	}
}

#menu .close {
	background-image: url("images/close.svg");
	background-position: 4.85em 1em;
	background-repeat: no-repeat;
	border: 0;
	cursor: pointer;
	display: block;
	height: 3em;
	position: absolute;
	right: 0;
	top: 0;
	vertical-align: middle;
	width: 7em;
}

@media screen and (max-width: 736px) {
	#menu {
		padding: 3em 1.5em;
	}
}

/* MENU VISIBILITY STATES */
body.is-menu-visible #page-wrapper {
	opacity: 0.35;
}

body.is-menu-visible #page-wrapper:before {
	display: block;
}

body.is-menu-visible #menu {
	-moz-transform: translateX(0);
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}

/* ============================================
   HEADER LIQUID GLASS SYSTEM
   ============================================ */

#header {
	-moz-transition: background-color 0.2s ease;
	-webkit-transition: background-color 0.2s ease;
	-ms-transition: background-color 0.2s ease;
	transition: background-color 0.2s ease;
	background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.1) 100%
    ) !important;
    backdrop-filter: blur(15px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
	height: 3em;
	left: 0;
	line-height: 3em;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10000;
}

#header h1 {
	-moz-transition: opacity 0.2s ease;
	-webkit-transition: opacity 0.2s ease;
	-ms-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
	height: inherit;
	left: 1.25em;
	line-height: inherit;
	position: absolute;
	top: 0;
}

#header h1 a {
	border: 0;
	display: block;
	height: inherit;
	line-height: inherit;
}

@media screen and (max-width: 736px) {
	#header h1 a {
		font-size: 0.8em;
	}
}

#header nav {
	height: inherit;
	line-height: inherit;
	position: absolute;
	right: 0;
	top: 0;
}

#header nav > ul {
	list-style: none;
	margin: 0;
	padding: 0;
	white-space: nowrap;
}

#header nav > ul > li {
	display: inline-block;
	padding: 0;
}

#header nav > ul > li > a {
	border: 0;
	color: #fff;
	display: block;
	font-size: 0.8em;
	letter-spacing: 0.225em;
	padding: 0 1.5em;
	text-transform: uppercase;
}

#header nav > ul > li > a.menuToggle {
	outline: 0;
	position: relative;
}

#header nav > ul > li > a.menuToggle:after {
	background-image: url("images/bars.svg");
	background-position: right center;
	background-repeat: no-repeat;
	content: '';
	display: inline-block;
	height: 3.75em;
	vertical-align: top;
	width: 2em;
}

@media screen and (max-width: 736px) {
	#header nav > ul > li > a.menuToggle {
		padding: 0 1.5em;
	}

	#header nav > ul > li > a.menuToggle span {
		display: none;
	}
}

@media screen and (max-width: 736px) {
	#header nav > ul > li > a {
		padding: 0 0 0 1.5em;
	}
}

#header nav > ul > li:first-child {
	margin-left: 0;
}

#header.alt {
	background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(255, 255, 255, 0.05) 100%
    ) !important;
    backdrop-filter: blur(10px);
}

#header.alt h1 {
	pointer-events: none;
	opacity: 0;
}

/* ============================================
   BANNER SYSTEM
   ============================================ */

#banner {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	cursor: default;
	height: 100vh;
	min-height: 35em;
	overflow: hidden;
	position: relative;
	text-align: center;
}

#banner h2 {
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-moz-transition: -moz-transform 0.5s ease, opacity 0.5s ease;
	-webkit-transition: -webkit-transform 0.5s ease, opacity 0.5s ease;
	-ms-transition: -ms-transform 0.5s ease, opacity 0.5s ease;
	transition: transform 0.5s ease, opacity 0.5s ease;
	display: inline-block;
	font-size: 1.75em;
	opacity: 1;
	padding: 0.35em 1em;
	position: relative;
	z-index: 1;
}

#banner h2:before, #banner h2:after {
	-moz-transition: width 0.85s ease;
	-webkit-transition: width 0.85s ease;
	-ms-transition: width 0.85s ease;
	transition: width 0.85s ease;
	-moz-transition-delay: 0.25s;
	-webkit-transition-delay: 0.25s;
	-ms-transition-delay: 0.25s;
	transition-delay: 0.25s;
	background: #fff;
	content: '';
	display: block;
	height: 2px;
	position: absolute;
	width: 100%;
}

#banner h2:before {
	top: 0;
	left: 0;
}

#banner h2:after {
	bottom: 0;
	right: 0;
}

#banner p {
	letter-spacing: 0.225em;
	text-transform: uppercase;
}

#banner p a {
	color: inherit;
}

#banner .more {
	-moz-transition: -moz-transform 0.75s ease, opacity 0.75s ease;
	-webkit-transition: -webkit-transform 0.75s ease, opacity 0.75s ease;
	-ms-transition: -ms-transform 0.75s ease, opacity 0.75s ease;
	transition: transform 0.75s ease, opacity 0.75s ease;
	-moz-transition-delay: 3.5s;
	-webkit-transition-delay: 3.5s;
	-ms-transition-delay: 3.5s;
	transition-delay: 3.5s;
	-moz-transform: translateY(0);
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	border: none;
	bottom: 0;
	color: inherit;
	font-size: 0.8em;
	height: 8.5em;
	left: 50%;
	letter-spacing: 0.225em;
	margin-left: -8.5em;
	opacity: 1;
	outline: 0;
	padding-left: 0.225em;
	position: absolute;
	text-align: center;
	text-transform: uppercase;
	width: 16em;
	z-index: 1;
}

#banner .more:after {
	background-image: url("images/arrow.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	bottom: 4em;
	content: '';
	display: block;
	height: 1.5em;
	left: 50%;
	margin: 0 0 0 -0.75em;
	position: absolute;
	width: 1.5em;
}

#banner:after {
	pointer-events: none;
	-moz-transition: opacity 3s ease-in-out;
	-webkit-transition: opacity 3s ease-in-out;
	-ms-transition: opacity 3s ease-in-out;
	transition: opacity 3s ease-in-out;
	-moz-transition-delay: 1.25s;
	-webkit-transition-delay: 1.25s;
	-ms-transition-delay: 1.25s;
	transition-delay: 1.25s;
	content: '';
	background: #2e3842;
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
}

/* BANNER RESPONSIVE */
@media screen and (max-width: 736px) {
	#banner {
		padding: 7em 3em 5em 3em;
		height: auto;
		min-height: 0;
	}

	#banner h2 {
		font-size: 1.25em;
	}

	#banner br {
		display: none;
	}

	#banner .more {
		display: none;
	}
}

/* BANNER PRELOAD STATES - LIQUID GLASS COMPATIBLE */
body.is-preload #banner h2 {
	-moz-transform: scale(0.95);
	-webkit-transform: scale(0.95);
	-ms-transform: scale(0.95);
	transform: scale(0.95);
	opacity: 0;
	text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

body.is-preload #banner h2:before, body.is-preload #banner h2:after {
	width: 0;
}

body.is-preload #banner .more {
	-moz-transform: translateY(8.5em);
	-webkit-transform: translateY(8.5em);
	-ms-transform: translateY(8.5em);
	transform: translateY(8.5em);
	opacity: 0;
}

body.is-preload #banner:after {
	opacity: 1;
	background: linear-gradient(135deg, 
        rgba(46, 56, 66, 0.8) 0%,
        rgba(46, 56, 66, 0.6) 50%,
        rgba(46, 56, 66, 0.8) 100%
    ) !important;
    backdrop-filter: blur(15px);
}

/* ============================================
   CTA SYSTEM
   ============================================ */

#cta .inner {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	max-width: 45em;
}

#cta .inner header {
	-moz-order: 1;
	-webkit-order: 1;
	-ms-order: 1;
	order: 1;
	padding-right: 3em;
	width: 70%;
}

#cta .inner header p {
	color: inherit;
}

#cta .inner .actions {
	-moz-order: 2;
	-webkit-order: 2;
	-ms-order: 2;
	order: 2;
	width: 30%;
}

@media screen and (max-width: 980px) {
	#cta .inner {
		display: block;
		text-align: center;
	}

	#cta .inner header {
		padding-right: 0;
		width: 100%;
	}

	#cta .inner .actions {
		margin-left: auto;
		margin-right: auto;
		max-width: 20em;
		width: 100%;
	}
}

@media screen and (max-width: 736px) {
	#cta .inner .actions {
		max-width: none;
	}
}

/* ============================================
   FOOTER LIQUID GLASS SYSTEM - SMALLER
   ============================================ */

#footer {
	padding: 3em 0 2em 0; /* Reduced from 6em 0 4em 0 */
	background: linear-gradient(135deg, 
        rgba(103, 64, 64, 0.85) 0%,
        rgba(103, 64, 64, 0.75) 50%,
        rgba(103, 64, 64, 0.85) 100%
    ) !important;
    backdrop-filter: blur(15px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 -8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
	text-align: center;
	position: relative;
}

#footer .icons {
	font-size: 1.25em;
}

#footer .icons a {
	color: rgba(255, 255, 255, 0.5);
}

#footer .icons a:hover {
	color: #fff;
}

#footer .copyright {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.8em;
	letter-spacing: 0.225em;
	list-style: none;
	padding: 0;
	text-transform: uppercase;
}

#footer .copyright li {
	border-left: solid 1px rgba(255, 255, 255, 0.5);
	display: inline-block;
	line-height: 1em;
	margin-left: 1em;
	padding-left: 1em;
}

#footer .copyright li:first-child {
	border-left: 0;
	margin-left: 0;
	padding-left: 0;
}

#footer .copyright li a {
	color: inherit;
}

#footer .copyright li a:hover {
	color: #fff;
}

@media screen and (max-width: 480px) {
	#footer .copyright li {
		border: 0;
		display: block;
		line-height: 1.65em;
		margin: 0;
		padding: 0.5em 0;
	}
}

@media screen and (max-width: 980px) {
	#footer {
		padding: 2em 2em 1em 2em; /* Further reduced */
	}
}

@media screen and (max-width: 736px) {
	#footer {
		padding: 2em 1em 1em 1em; /* Minimal padding */
	}
}

/* ============================================
   LANDING PAGE SYSTEM
   ============================================ */

body.landing #page-wrapper {
	background-attachment: fixed;
	background-image: none !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 0;
	position: relative;
	overflow: visible;
}

/* VIDEO BACKGROUND OVERLAY */
body.landing #page-wrapper::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.4));
	z-index: -1;
}

body.landing #page-wrapper video#bg-video {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
	pointer-events: none;
	animation: videoPlayback 5s infinite alternate ease-in-out;
}

/* VIDEO ANIMATION */
@keyframes videoPlayback {
    0% {
        transform: scale(1.0);
        filter: brightness(0.7) contrast(1.1) saturate(0.9);
    }
    50% {
        transform: scale(1);
        filter: brightness(0.6) contrast(1.2) saturate(1);
    }
    100% {
        transform: scale(1.0);
        filter: brightness(0.7) contrast(1.1) saturate(0.9);
    }
}

body.landing #footer {
	background: linear-gradient(135deg, 
        rgba(29, 36, 42, 0.9) 0%,
        rgba(29, 36, 42, 0.8) 50%,
        rgba(29, 36, 42, 0.9) 100%
    ) !important;
    backdrop-filter: blur(15px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   REMOVE ALL CONFLICTING MOBILE STYLES
   ============================================ */

/* DISABLE OLD MOBILE BACKGROUND IMAGES */
body.is-mobile.landing #page-wrapper {
	background: none !important;
}

body.is-mobile.landing #banner,
body.is-mobile.landing .wrapper.style4 {
	background-image: none !important;
	background: transparent !important;
	background-color: transparent !important;
}

body.is-mobile.landing #footer {
	background: linear-gradient(135deg, 
        rgba(29, 36, 42, 0.95) 0%,
        rgba(29, 36, 42, 0.9) 50%,
        rgba(29, 36, 42, 0.95) 100%
    ) !important;
    backdrop-filter: blur(10px);
}

/* ============================================
   LIQUID GLASS EFFECTS
   ============================================ */

/* TEXT LIQUID GLASS EFFECT */
.text-liquid-glass {
    background: linear-gradient(135deg, 
        #87D4EA 0%,
        #4A90A4 50%,
        #87D4EA 100%
    );
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    filter: drop-shadow(0 0 15px rgba(74, 144, 164, 0.7));
    font-weight: 700;
}

/* BUTTON LIQUID GLASS */
.liquid-glass-btn {
    background: linear-gradient(135deg, 
        rgba(62, 65, 63, 0.044) 0%,
        rgba(5, 30, 17, 0.34) 100%
    ) !important;
    backdrop-filter: blur(10px) saturate(150%) !important;
    border: 1px solid rgba(255, 255, 255, 0) !important;
    border-radius: 15px !important;
    padding: 15px 30px !important;
    color: rgb(255, 255, 255) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    font-weight: 600 !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    text-decoration: none !important;
    cursor: pointer !important;
    box-shadow: 
        0 8px 25px rgba(24, 37, 33, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.liquid-glass-btn:hover {
    background: linear-gradient(135deg, 
        rgba(2, 66, 34, 0.267) 0%,
        rgba(53, 56, 54, 0.386) 100%
    ) !important;
    transform: translateY(-3px) !important;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgb(255, 255, 255) !important;
}

/* ICON LIQUID GLASS */
.liquid-glass.blue {
    color: #87D4EA !important;
    filter: drop-shadow(0 0 15px rgba(74, 144, 164, 0.9));
}

.liquid-glass.orange {
    color: #E29578 !important;
    filter: drop-shadow(0 0 15px rgba(226, 149, 120, 0.9));
}

.liquid-glass.green {
    color: #4A7B2A !important;
    filter: drop-shadow(0 0 15px rgba(45, 80, 22, 0.9));
}

.liquid-glass.ultra {
    color: #ffffff !important;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 1));
}

/* POPUP SYSTEM */
#contact-popup {
	display: none;
	position: fixed;
	z-index: 10003;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
}

.popup-liquid-glass {
	background: linear-gradient(135deg, 
		rgba(255, 255, 255, 0.14) 0%,
		rgba(255, 255, 255, 0.06) 50%,
		rgba(255, 255, 255, 0.14) 100%
	);
	backdrop-filter: blur(8px) saturate(140%);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 25px;
	padding: 40px;
	max-width: 500px;
	width: 90%;
	max-height: 80vh;
	overflow-y: auto;
	position: relative;
	box-shadow: 
		0 20px 60px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	margin: 15% auto;
	text-align: center;
}

/* Map popup overlay (spĂłjny z #contact-popup) */
#map-popup {
	display: none;
	position: fixed;
	z-index: 10003;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
}

/* Kondensacja sekcji â€žDlaczego Bau Green?â€ť */
.features.condensed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin: 0;
    padding: 0;
}

.features.condensed .feature-item {
    list-style: none;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 1.25rem 1.25rem 1.1rem 1.25rem;
    min-height: 14rem;
    backdrop-filter: blur(6px) saturate(140%);
    box-shadow: 0 30px 60px -30px rgba(0,0,0,0.55);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.features.condensed .feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 40px 80px -35px rgba(0,0,0,0.6);
}

/* Ukrycie wbudowanych ikon w starym ukĹ‚adzie */
.features li.icon::before {
	display: none !important;
}
.features li.icon {
	padding-left: 0 !important;
}

/* Glass vibe dla elementĂłw kontaktu */
.contact-item.glass {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 1rem;
    backdrop-filter: blur(6px) saturate(140%);
}

/* ============================================
   DUĹ»E IKONY LIQUID GLASS
   ============================================ */
.features.iconized {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.features.iconized .feature-card {
    list-style: none;
    background: linear-gradient(150deg, rgba(21, 39, 51, 0.6), rgba(15, 42, 55, 0.5));
    border: 1px solid rgba(42, 60, 73, 0.55);
    border-radius: 18px;
    padding: 1.5rem;
    min-height: 16rem;
    backdrop-filter: blur(18px) saturate(180%);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.features.iconized .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38);
    border-color: rgba(127, 239, 226, 0.35);
}


.lg-icon {
    /* Primary tint colors (overridden by variant classes) */
    --lg-c1: var(--color-teal-start);
    --lg-c2: var(--color-teal-end);
    /* Border color per-variant, with sensible fallback */
    --lg-border: rgba(255,255,255,0.18);
    width: clamp(96px, 10vw, 112px);
    height: clamp(96px, 10vw, 112px);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    position: relative;
    /* Lighter, more transparent glass look */
    background:
        radial-gradient(circle at 28% 24%, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.06) 32%, rgba(255,255,255,0) 60%),
        linear-gradient(150deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02)),
        radial-gradient(circle at 72% 76%, rgba(255,255,255,0.08), rgba(255,255,255,0) 60%),
        radial-gradient(120% 120% at 18% 18%, color-mix(in srgb, var(--lg-c1), transparent 58%) 0%, rgba(15,42,55,0.16) 70%),
        radial-gradient(120% 120% at 82% 82%, color-mix(in srgb, var(--lg-c2), transparent 58%) 0%, rgba(15,42,55,0.16) 68%);
    background-blend-mode: screen, overlay, normal, normal, normal;
    border: 1.5px solid var(--lg-border);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.06),
        0 12px 28px rgba(0,0,0,0.32);
    backdrop-filter: blur(20px) saturate(180%);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, border-color 0.25s ease;
    will-change: transform, filter;
    color: rgba(255,255,255,0.9);
    outline: none;
}

.lg-icon::before {
    content: "";
    position: absolute;
    inset: -25%;
    border-radius: inherit;
    background: radial-gradient(circle, var(--halo-color) 0%, rgba(127,239,226,0) 70%);
    opacity: 0;
    filter: blur(6px);
    pointer-events: none;
    transition: opacity 0.25s ease, filter 0.25s ease;
}

.lg-icon::after {
    content: "";
    position: absolute;
    inset: 16% 18%;
    border-radius: inherit;
    background:
        radial-gradient(circle at 32% 26%, rgba(255,255,255,0.4), rgba(255,255,255,0) 55%),
        radial-gradient(circle at 70% 74%, rgba(255,255,255,0.12), rgba(255,255,255,0) 60%);
    opacity: 0.85;
    pointer-events: none;
}

.lg-icon:hover,
.lg-icon:focus-visible {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--lg-border), white 25%);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.16),
        0 16px 36px rgba(0,0,0,0.32),
        0 0 0 2px color-mix(in srgb, var(--lg-border), transparent 40%);
    filter: drop-shadow(0 10px 24px rgba(0,0,0,0.32));
}

.lg-icon:hover::before,
.lg-icon:focus-visible::before {
    opacity: 1;
    filter: blur(12px);
}

.lg-icon .icon {
    font-size: 1.9rem;
    color: rgba(255, 255, 255, 0.9);
    mix-blend-mode: screen;
    text-shadow: 0 8px 18px rgba(255,255,255,0.18);
}

/* Variant mappings to requested palette and borders */
.lg-teal  { --lg-c1: var(--oxide-teal);    --lg-c2: var(--fog-cyan);     --lg-border: rgba(46,140,130,0.55); }
.lg-indigo{ --lg-c1: var(--baltic-indigo); --lg-c2: var(--steel-blue);   --lg-border: rgba(63,86,119,0.55); }
.lg-jade  { --lg-c1: var(--fog-cyan);     --lg-c2: var(--oxide-teal);    --lg-border: rgba(111,166,178,0.55); }
.lg-warm  { --lg-c1: var(--steel-blue);   --lg-c2: var(--baltic-indigo); --lg-border: rgba(67,109,142,0.55); }

@media screen and (max-width: 736px) {
    .lg-icon { width: 88px; height: 88px; }
    .lg-icon .icon { font-size: 1.6rem; }
}

/* Section fade separators (very subtle) */
.wrapper { position: relative; }
.wrapper::before,
.wrapper::after {
  content: '';
  position: absolute;
  left: 0; width: 100%; height: 56px;
  pointer-events: none;
}
/* top fade */
.wrapper::before {
  top: 0;
  background: linear-gradient(to bottom,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.025) 35%,
    rgba(255,255,255,0.01) 60%,
    rgba(255,255,255,0.0) 100%);
  mix-blend-mode: overlay;
}
/* bottom fade */
.wrapper::after {
  bottom: 0;
  background: linear-gradient(to top,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.025) 35%,
    rgba(255,255,255,0.01) 60%,
    rgba(255,255,255,0.0) 100%);
  mix-blend-mode: overlay;
}
.wrapper::before { top: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0)); }
.wrapper::after { bottom: 0; background: linear-gradient(to top, rgba(0,0,0,0.35), rgba(0,0,0,0)); }

.close-button {
	color: #aaa;
	font-size: 28px;
	font-weight: bold;
	position: absolute;
	top: 10px;
	right: 20px;
	z-index: 10004;
}

.close-button:hover,
.close-button:focus {
	color: white;
	text-decoration: none;
	cursor: pointer;
}

.phone-number {
	font-size: 1.5em;
	font-weight: bold;
	margin: 1em 0;
}

/* ============================================
   NUCLEAR OPTION - OVERRIDE EVERYTHING
   ============================================ */

/* FORCE ALL SECTIONS TO BE TRANSPARENT */
section[class*="wrapper"],
.wrapper,
div[class*="wrapper"] {
    background-color: transparent !important;
}

/* FORCE SPECIFIC WRAPPER STYLES */
.wrapper.style1,
section.wrapper.style1,
div.wrapper.style1 {
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(7, 12, 13, 0.8) 10%,
        rgba(74, 114, 164, 0.8) 90%,
        transparent 100%
    ) !important;
    backdrop-filter: blur(2px) !important;
}

.wrapper.style3,
section.wrapper.style3,
div.wrapper.style3 {
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(61, 88, 105, 0.75) 10%,
        rgba(48, 62, 92, 0.75) 90%,
        transparent 100%
    ) !important;
    backdrop-filter: blur(3px) !important;
}

/* FORCE VIDEO BACKGROUND ON ALL DEVICES */
body.landing #page-wrapper {
    background: none !important;
    background-image: none !important;
    background-color: transparent !important;
}

body.landing #page-wrapper video#bg-video {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: -2 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* IMAGE OVERLAYS REMOVED - CLEAN IMAGES */
.spotlight .image {
    width: 35% !important;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

/* REMOVED ALL OVERLAYS - IMAGES STAY CLEAN */
.spotlight .image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.spotlight .image:hover img {
    transform: scale(1.02);
}

/* HOVER EFFECTS FOR TRANSPARENT SECTIONS */
.wrapper.style1, .wrapper.style3 {
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

/* TEXT SHADOWS FOR BETTER READABILITY ON TRANSPARENT BACKGROUNDS */
.wrapper.style1 h2, .wrapper.style1 h3, .wrapper.style1 p,
.wrapper.style3 h2, .wrapper.style3 h3, .wrapper.style3 p {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

/* ICON BACKGROUNDS FOR BETTER VISIBILITY */
.icon.major {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: transform 0.3s ease, color 0.3s ease !important;
}

.icon.major:hover {
    transform: rotate(-45deg) scale(1.1) !important;
}

/* BOX SHADOWS FOR DEPTH */
.wrapper.style1, .wrapper.style3 {
    box-shadow: inset 0 0 50px rgba(0,0,0,0.1);
}

/* ============================================
   MOBILE = DESKTOP - FORCED IDENTICAL STYLES
   ============================================ */

/* MOBILE FORCE - OVERRIDE ALL MOBILE STYLES */
@media screen and (max-width: 768px) {
    /* FORCE TRANSPARENT WRAPPERS - IDENTICAL TO DESKTOP */
    .wrapper.style1 {
        background: transparent !important;
        padding: clamp(4rem, 12vw, 5rem) 0 !important;
        color: #c8ece9 !important;
    }
    
    .wrapper.style3 {
        background: linear-gradient(to bottom,
            transparent 0%,
            rgba(61, 88, 105, 0.75) 10%,
            rgba(48, 62, 92, 0.75) 90%,
            transparent 100%
        ) !important;
        backdrop-filter: blur(3px) !important;
        padding: 3em 1em 2em 1em !important;
        color: #d3d4e4 !important;
    }
    
    /* MOBILE FEATURE CARDS */
    .features {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .features li {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: clamp(1.25rem, 3.5vw, 2rem);
	border-radius: 16px;
	background: rgba(10, 24, 36, 0.75) !important;
	backdrop-filter: blur(3px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 20px 45px -25px rgba(0, 0, 0, 0.75);
	min-height: 16rem;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
    
    /* FORCE TRANSPARENT SPOTLIGHTS ON MOBILE */
    .spotlight {
        background: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.25) 20%,
            rgba(0, 0, 0, 0.35) 80%,
            transparent 100%
        ) !important;
        backdrop-filter: blur(2px) !important;
        display: block !important;
    }
    
    .spotlight .content {
        padding: 2em 1em !important;
        max-width: none !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    .spotlight .image {
        width: 100% !important;
        margin-bottom: 15px !important;
    }
    
    /* FORCE VIDEO TO SHOW ON MOBILE */
    body.landing #page-wrapper video#bg-video {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        z-index: -2 !important;
    }
    
    /* FORCE MOBILE BANNER TO BE TRANSPARENT */
    #banner {
        background: none !important;
        background-color: transparent !important;
    }
    
    /* OVERRIDE ANY MOBILE-SPECIFIC BACKGROUND IMAGES */
    body.is-mobile.landing #banner,
    body.is-mobile.landing .wrapper.style4 {
        background-image: none !important;
        background: transparent !important;
    }
}

/* FORCE STYLES FOR ALL SCREEN SIZES */
@media screen and (max-width: 980px) {
    .wrapper.style1 {
        background: transparent !important;
    }
    
    .wrapper.style3 {
        background: linear-gradient(to bottom,
            transparent 0%,
            rgba(61, 88, 105, 0.75) 10%,
            rgba(48, 62, 92, 0.75) 90%,
            transparent 100%
        ) !important;
        backdrop-filter: blur(3px) !important;
    }
}

@media screen and (max-width: 736px) {
    /* FORCE IDENTICAL STYLES - NO EXCEPTIONS */
    .wrapper.style1,
    .wrapper.style3 {
        background-attachment: scroll !important;
    }
    
    /* FORCE SPOTLIGHT TRANSPARENCY */
    .spotlight {
        background: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.3) 20%,
            rgba(0, 0, 0, 0.4) 80%,
            transparent 100%
        ) !important;
        backdrop-filter: blur(2px) !important;
    }
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */

/* GPU Acceleration for smooth animations */
.liquid-glass-btn,
.text-liquid-glass,
.icon.liquid-glass {
    will-change: transform, filter;
    transform: translateZ(0);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    body.landing #page-wrapper video#bg-video {
        animation: none;
    }
}

/* ============================================
   END OF MAIN CSS
   ============================================ */

/* ============================================
   HTML5 UP ATTRIBUTION
   ============================================ */

.attribution {
	position: absolute;
	bottom: 1em;
	right: 1em;
	opacity: 0.2;
	transition: opacity 8s ease-in-out;
	z-index: 1000;
}

.attribution:hover {
	opacity: 1;
}

.attribution-icon {
	font-size: 1em;
	color: #fff;
	cursor: pointer;
}

.attribution-popup {
	display: none;
	position: absolute;
	bottom: 100%;
	right: 0;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(5px);
	color: #fff;
	padding: 1em;
	border-radius: 5px;
	width: 200px;
	font-size: 0.8em;
	text-align: center;
	margin-bottom: 10px;
}

.attribution-popup a {
	color: #21b2a6;
	text-decoration: none;
	border-bottom: none;
}

.attribution-popup a:hover {
	color: #fff;
}

.attribution.active .attribution-popup {
	display: block;
}
/* ============================================
   1. POPRAWKI MAPY - LIQUID GLASS STYLE
   ============================================ */

.map-container {
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.1) 100%
    ) !important;
    backdrop-filter: blur(10px) saturate(150%) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 8px !important;
    transition: all 0.3s ease !important;
}

.map-container:hover {
    transform: translateY(-5px) !important;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.map-container iframe {
    border-radius: 15px !important;
    border: none !important;
    width: 100% !important;
    height: 400px !important;
    filter: grayscale(100%) contrast(1.2) brightness(0.9) !important;
    transition: filter 0.3s ease !important;
}

.map-container:hover iframe {
    filter: grayscale(80%) contrast(1.3) brightness(1.0) !important;
}

/* ============================================
   2. POPRAWKI VIDEO TÄąÂA NA MOBILE + USUNIĂ„ÂCIE IKONY PLAY
   ============================================ */

/* FORCE VIDEO NA WSZYSTKICH URZĂ„â€žDZENIACH */
body.landing #page-wrapper video#bg-video {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: -2 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: none !important;
}

/* USUNIĂ„ÂCIE IKON ODTWARZANIA */
video::-webkit-media-controls {
    display: none !important;
}

video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

video::-webkit-media-controls-play-button {
    display: none !important;
}

video::-webkit-media-controls-overlay-play-button {
    display: none !important;
}

video::-webkit-media-controls-panel {
    display: none !important;
}

/* FORCE AUTOPLAY NA MOBILE */
#bg-video {
    -webkit-playsinline: true !important;
    playsinline: true !important;
    muted: true !important;
    autoplay: true !important;
    loop: true !important;
}

/* MOBILE SPECIFIC VIDEO FIXES */
@media screen and (max-width: 768px) {
    body.landing #page-wrapper video#bg-video {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        z-index: -2 !important;
        transform: none !important;
        min-width: 100% !important;
        min-height: 100% !important;
    }
    
    /* FORCE BANNER TRANSPARENCY ON MOBILE */
    #banner {
        background: none !important;
        background-color: transparent !important;
        background-image: none !important;
    }
    
    /* OVERRIDE MOBILE BACKGROUNDS */
    body.is-mobile.landing #banner,
    body.is-mobile.landing .wrapper.style4 {
        background-image: none !important;
        background: transparent !important;
        background-color: transparent !important;
    }
}

/* ============================================
   3. WIĂ„ÂKSZE IKONY - SPOTLIGHT SECTIONS
   ============================================ */

.spotlight .content {
    padding: 3rem 2rem !important;
    min-height: 500px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.spotlight .image {
    min-height: 300px !important;
    display: flex !important;
    align-items: center !important;
}

/* WIĂ„ÂKSZE IKONY W FEATURES */
.icon.major {
    font-size: 2em !important; /* ZwiĂ„â„˘kszone z 1.35em */
    height: calc(4em + 2px) !important; /* ZwiĂ„â„˘kszone z 3em */
    line-height: 4em !important; /* ZwiĂ„â„˘kszone z 3em */
    width: calc(4em + 2px) !important; /* ZwiĂ„â„˘kszone z 3em */
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease !important;
}

.icon.major:before {
    font-size: 1.8em !important; /* ZwiĂ„â„˘kszone z 1.5em */
}

.icon.major:hover {
    transform: rotate(-45deg) scale(1.1) !important;
    background: rgba(255, 255, 255, 0.25) !important;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

/* WIĂ„ÂKSZE IKONY W SOCIAL MEDIA */
#footer .icons {
    font-size: 1.8em !important; /* ZwiĂ„â„˘kszone z 1.25em */
    margin: 2em 0 !important;
}

#footer .icons a {
    padding: 0.5em !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(5px) !important;
    transition: all 0.3s ease !important;
    margin: 0 0.5em !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 2.5em !important;
    height: 2.5em !important;
}

#footer .icons a:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-3px) scale(1.1) !important;
}

/* ============================================
   5. MOBILE REFINEMENTS
   ============================================ */
@media screen and (max-width: 768px) {
    /* Larger icons on mobile */
    .icon.major {
        font-size: 1.5em !important;
        height: calc(3.5em + 2px) !important;
        line-height: 3.5em !important;
        width: calc(3.5em + 2px) !important;
    }

    /* Map tweaks on mobile */
    .map-container {
        margin: 1em 0 !important;
        border-radius: 15px !important;
    }

    .map-container iframe {
        height: 300px !important;
        border-radius: 10px !important;
    }

    /* Force background video visibility */
    body.landing #page-wrapper {
        background: none !important;
        background-image: none !important;
        background-color: transparent !important;
    }
}

/* ============================================
   6. ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .features li {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: clamp(1.25rem, 3.5vw, 2rem);
	border-radius: 16px;
	background: rgba(10, 24, 36, 0.75) !important;
	backdrop-filter: blur(3px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 20px 45px -25px rgba(0, 0, 0, 0.75);
	min-height: 16rem;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .features li:hover {
        transform: none !important;
        box-shadow: 0 20px 45px -25px rgba(0, 0, 0, 0.75);
    }
}

/* ============================================
   END OF CSS
   ============================================ */









/* Contact grid divider */
.contact-grid { 
  position: relative; 
  align-items: center; /* Wyrównanie pionowe elementów */
}
.contact-grid::after {
  content: '';
  position: absolute;
  top: 6%;
  bottom: 6%;
  left: 50%;
  width: 1px;
  background: rgba(255,255,255,0.35);
  transform: translateX(-0.5px);
}

/* Powiększone ikony mediów społecznościowych w sekcji kontaktowej */
.contact-item .icons {
  font-size: 1.8em; /* Powiększenie z domyślnego rozmiaru */
  margin-top: 1rem;
}

.contact-item .icons li {
  padding: 0 1.2em 0 0; /* Zwiększony odstęp między ikonami */
}

.contact-item .icons a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.contact-item .icons a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Wyrównanie wysokości elementów kontaktowych */
.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.contact-item h4 {
  margin-bottom: 0.8rem;
  font-size: 1.1em;
}

@media (max-width: 800px) {
  .contact-grid { 
    grid-template-columns: 1fr !important; 
    align-items: stretch;
  }
  .contact-grid::after { display: none; }
  
  .contact-item .icons {
    font-size: 1.6em; /* Nieco mniejsze na mobile */
    justify-content: center;
  }
  
  .contact-item .icons a {
    width: 2.2em;
    height: 2.2em;
  }
}

