 :root {
            --dusk-blue: #4A5D73;
            --warm-grey: #D7D1C9; /* Skorygowany Warm Grey z księgi znaku */
            --off-white: #FBFBF9;
            --text-muted: rgba(74, 93, 115, 0.7);
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: white;
            color: var(--dusk-blue);
            line-height: 1.6;
        }

        h1, h2, h3, h4, .serif {
            font-family: 'Playfair Display', serif;
            font-weight: 400;
        }

        .bg-dusk-blue { background-color: var(--dusk-blue); }
        .text-dusk-blue { color: var(--dusk-blue); }
        .text-warm-grey { color: var(--warm-grey); }
        .bg-warm-grey { background-color: var(--warm-grey); }
        
        .hero-slider {
            height: calc(100vh - 190px);
            width: 100%;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            filter: brightness(0.9);
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background: linear-gradient(90deg, rgba(249, 248, 246, 0.85) 0%, rgba(249, 248, 246, 0.3) 60%); */
            z-index: 1;
            background-color: black;
            opacity:0.2;

        }

        /* Sekcja Usług - Slider */
        .services-scroll {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .services-scroll::-webkit-scrollbar {
            display: none;
        }
        .service-card {
            /* min-width: 320px; */
            scroll-snap-align: start;
            border-right: 1px solid rgba(74, 93, 115, 0.1);
            transition: all 0.5s ease;
        }
        .service-card:hover {
            background-color: white;
        }

        .flat-icon {
            width: 48px;
            height: 48px;
            stroke: var(--dusk-blue);
            stroke-width: 1px;
            fill: none;
            margin-bottom: 2rem;
            opacity: 0.8;
        }

        /* Tech Grid Styles */
        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            border-top: 1px solid rgba(74, 93, 115, 0.1);
            border-left: 1px solid rgba(74, 93, 115, 0.1);
        }

        .tech-item {
            border-right: 1px solid rgba(74, 93, 115, 0.1);
            border-bottom: 1px solid rgba(74, 93, 115, 0.1);
            padding: 4rem 3rem;
            transition: all 0.4s ease;
            background: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .tech-image-box {
            border-right: 1px solid rgba(74, 93, 115, 0.1);
            border-bottom: 1px solid rgba(74, 93, 115, 0.1);
            overflow: hidden;
        }

        .tech-item:hover {
            background-color: var(--warm-grey);
            color: var(--dusk-blue);
        }

        nav {
            background-color: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
        }

        .team-card img {
            transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .team-card:hover img {
            transform: scale(1.05);
        }

        button,
input,
optgroup,
select,
textarea {
  font-family:inherit;
  font-feature-settings:inherit;
  font-variation-settings:inherit;
  font-size:100%;
  font-weight:inherit;
  line-height:inherit;
  letter-spacing:inherit;
  color:inherit;
  margin:0;
  padding:0
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: 100% !important;
}

.ham6 .line {
  fill:none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke:black;
  stroke-width:2.5;
  stroke-linecap:round;
}
.subPage .ham6 .line {
stroke:white;
}
.ham6 .top {
  stroke-dasharray: 40 172;
}
.ham6 .middle { 
  stroke-dasharray: 40 111;
}
.ham6 .bottom {
  stroke-dasharray: 40 172;
}
.ham6.active .top {
  stroke-dashoffset: -132px;
}
.ham6.active .middle {
  stroke-dashoffset: -71px;
}
.ham6.active .bottom {
  stroke-dashoffset: -132px;
}
.hamRotate.active {
  transform: rotate(45deg);
}


.menushow.open  {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100%;
	background: white;
	display: grid;
	justify-content: center;
	align-content: start;
	padding-top: 124px;
  opacity:1;
  visibility: visible;

}
.subPage .menushow.open  {
    background: #4a5d73;
}

.grid-container {
            border-left: 1px solid #E5E7EB;
            border-top: 1px solid #E5E7EB;
        }

        .grid-cell {
            border-right: 1px solid #E5E7EB;
            border-bottom: 1px solid #E5E7EB;
        }

        .label-sm {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.4em;
            font-weight: 700;
            color: var(--warm-grey);
        }

       
        .btn-primary {
            background-color: var(--dusk-blue);
            color: white;
            padding: 1.5rem 3rem;
            border-radius: 9999px;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .hero-sub-title {
            font-size: clamp(2.5rem, 6vw, 5rem);
            line-height: 1;
            letter-spacing: -0.03em;
        }

        

        .faq_item {
            border-bottom: 1px solid #E5E7EB;
            padding: 2rem 0;
        }


        .price-row {
            border-bottom: 1px solid rgba(74, 93, 115, 0.1);
            padding: 1.5rem 0;
            transition: all 0.3s ease;
        }

        .price-row:hover {
            /* padding-left: 1rem; */
            border-bottom-color: var(--dusk-blue);
        }

        .price-dots {
            flex-grow: 1;
            border-bottom: 1px dotted var(--warm-grey);
            margin: 0 1rem;
            /* margin-bottom: 0.4rem; */
        }

        .category-card {
            background: white;
            border-radius: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
        }

        .hero-title-price {
            font-size: clamp(3.5rem, 8vw, 8rem);
            line-height: 0.85;
            letter-spacing: -0.05em;
        }

        .testimonial-card {
            background: white;
           
            border-radius: 2rem;
            border: 1px solid rgba(215, 209, 201, 0.3);
        }

        .metamorphosis-card {
            background: white;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .image-compare-container {
            position: relative;
            aspect-ratio: 16/9;
            overflow: hidden;
            border-radius: 1.5rem;
        }

        .before-after-label {
            position: absolute;
            bottom: 20px;
            padding: 6px 15px;
            background: rgba(255,255,255,0.9);
            font-size: 9px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            border-radius: 4px;
        }
 .hero-title-lg {
            font-size: clamp(3rem, 8vw, 7rem);
            line-height: 0.9;
            letter-spacing: -0.04em;
        }