
* { box-sizing: border-box; }

@font-face {
  font-family: 'GARA';
  src:
    url('../fonts/GARA.woff2') format('woff2'),
    url('../fonts/GARA.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: 'ElmsSans-ExtraLight';
  src:
    url('../fonts/ElmsSans-ExtraLight.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
html, body { height: 100%;
  box-shadow: none; overflow-x: hidden; }
body {
  margin: 0;
  font-family: 'ElmsSans-ExtraLight',Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif, Georgia, 'Times New Roman', serif;
  color: #342e2b;
  background: #ffffff;
}

h2.hero-heading, h1.hero-heading {
  font-family: 'ElmsSans-ExtraLight', serif;
   font-size: clamp(18px, 2vw, 26px);
  text-align: center;
  margin: 0;
  color: #342e2b;
  line-height: 1.15;
  margin-bottom: 10px;
}
.h1-ind {
   font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.6;
  opacity: .9;
}
.hero-subtitle,
.hero-subtitle em,
.hero-subtitle .nowrap {
  white-space: normal !important;
}

.hero-subtitle .nowrap { white-space: nowrap; }
h2.hero-subtitle, h1.hero-subtitle {
  font-family: 'ElmsSans-ExtraLight', serif;
  font-size: clamp(17px, 2vw, 24px);
  font-style: normal;
  opacity: .9;
  margin-top: 0;
  transform: scaleX(1.15);   
  transform-origin: center;  
}
  .break {
  display: block;
}
img { max-width: 100%; display: block; }

/* Scroll behavior + snap */
html { scroll-behavior: smooth; }
#snap-container {
  height: 100%;
  overflow-y: auto;
  scroll-snap-type: y proximity;
  scroll-padding-top: 10px;
  scroll-padding-bottom:10px;
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.panel {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(16px, 3vw, 48px);
  scroll-snap-align: start;
}
.qr {
  margin-top:20px;
}
/* ===== HERO ===== */
.hero2-panel .hero-panel{
  position: relative;
  padding-top: 0; 
}

.hero-lead {
  font-family: 'ElmsSans-ExtraLight', Inter, sans-serif;
  font-size: clamp(14px, 2.2vw, 20px);
  line-height: 1.45;
  margin: 0;
  text-align: center;

  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.2px;

  opacity: 0.88;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;

  transform: translateY(6px);
  transition: opacity .8s ease, transform .8s ease;
}

/* Tła hero */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/chmurki.webp");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

body.subpage-projekt {
  min-height: 100vh;
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.35)
    ),
    url("../images/projekt.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: rgb(240, 248, 255);
}

.hero-bg2 {
  position: absolute;
  inset: 0;
  z-index: -1;
}

/* Header */
.site-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
 padding: 0 clamp(16px, 3vw, 36px) clamp(12px, 2vw, 20px);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Header dla subpage */
.site-header2 {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: clamp(12px, 2vw, 20px) clamp(16px, 3vw, 36px);
}

.nav-left2 {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Menu desktop (ciemne) */
.primary-nav ul {
  display: flex;
  gap: clamp(10px, 2vw, 24px);
  list-style: none;
  margin: 0 0 0 clamp(10px, 2vw, 24px);
  padding: 0;
}

.primary-nav a {
  text-decoration: none;
  color: #342e2b;
  font-weight: 600;
  font-size: clamp(14px, 1.3vw, 16px);
  letter-spacing: 0.2px;
  position: relative;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #342e2b;
  transition: width .25s ease;
}

.primary-nav a:hover::after {
  width: 100%;
}

/* Menu desktop (jasne) */
.primary-navs ul {
  display: flex;
  gap: clamp(10px, 2vw, 24px);
  list-style: none;
  margin: 0 0 0 clamp(10px, 2vw, 24px);
  padding: 0;
}

.primary-navs a {
  text-decoration: none;
  color: rgb(240, 248, 255);
  font-weight: 600;
  font-size: clamp(14px, 1.3vw, 16px);
  letter-spacing: 0.2px;
  position: relative;
  text-shadow: 0 0 6px rgb(44, 42, 42);
}

.primary-navs a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: aliceblue;
  transition: width .25s ease;
}

.primary-navs a:hover::after {
  width: 100%;
}

/* Nav right: ikony */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Ciemny wariant ikon */
.icon-btn,
.icon-link {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.292);
  backdrop-filter: blur(4px);
  text-decoration: none;
  color: #342e2b;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.icon-btn {
  background: transparent !important;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.icon-btn:hover {
  transform: translateY(-1px);
  background: #ababae22 !important;
}

.icon-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.icon-link:hover {
  transform: translateY(-1px);
  background: #ababae22;
}

/* Jasny wariant ikon (subpage) */
.icon-btn2,
.icon-link2 {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;

  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(14px) brightness(1.08);
  box-shadow:
    0 0 8px rgba(255, 255, 255, .25),
    inset 0 0 12px rgba(255, 255, 255, .12),
    0 24px 60px rgba(0, 0, 0, .35);

  backdrop-filter: blur(4px);
  text-decoration: none;
  color: aliceblue;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.icon-btn2 {
  background: transparent !important;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.icon-btn2:hover {
  transform: translateY(-1px);
  background: #ababae22 !important;
}

.icon-link2 svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.icon-link2:hover {
  transform: translateY(-1px);
  background: #ababae22;
}

/* Hamburger (ciemny) */
.nav-toggle {
  display: none;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.292);
  background: transparent !important;
  backdrop-filter: blur(4px);
  color: #342e2b;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;

  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  box-shadow: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  background: #ababae22 !important;
}

.nav-toggle .bar {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 3px auto;
  border-radius: 2px;
}

.nav-toggle[aria-expanded="true"] {
  border-color: rgba(88, 87, 87, 0.292);
}

/* Hamburger (jasny) */
.nav-toggle2 {
  display: none;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;

   border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(14px) brightness(1.08);
  box-shadow:
    0 0 8px rgba(255, 255, 255, .25),
    inset 0 0 12px rgba(255, 255, 255, .12),
    0 24px 60px rgba(0, 0, 0, .35);

  background: transparent !important;
  backdrop-filter: blur(4px);
  color: aliceblue;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;

  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  box-shadow: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle2:hover {
  transform: translateY(-1px);
  background: #ababae22 !important;
}

.nav-toggle2 .bar {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 3px auto;
  border-radius: 2px;
}

.nav-toggle2[aria-expanded="true"] {
  border-color: rgba(81, 80, 80, 0.18);
}

/* --- HERO: baza – logo zawsze POD menu, tekst wycentrowany --- */

.hero-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  padding: clamp(8px, 3vw, 40px) clamp(16px, 4vw, 64px) clamp(32px, 6vw, 80px);
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center; 
  justify-content: center; 
  text-align: center;
}
.hero-title {
  display: grid;
  color: #342e2b;
}

.hero-heading span {
  display: inline;
}

.hero-heading .nowrap {
  white-space: nowrap;
}
.hero-cta { display: flex; gap: 12px; margin-top: clamp(10px, 1.5vw, 18px); }
.brand-link {
  display: inline-block;
  transition: transform .25s ease, opacity .25s ease;
}

.brand-link:hover {
  transform: translateY(-2px) scale(1.02);
  opacity: 0.9;
}

.brand-logo {
  display: block;
  width: min(13vw);
  height: auto;
  max-width: none;
  object-fit: contain;
  margin-bottom: clamp(8px, 1vw, 16px); 
   transition: transform .25s ease, opacity .25s ease;
  
}

/* Animacje wejścia */
@keyframes logoReveal {
  from { opacity: 0; transform: scale(0.98); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes textFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(6px);
  will-change: transform, opacity;
}

.anim-logo,
.anim-fade {
  will-change: opacity, transform;
}

.text-fade {
  animation: textFade 1.2s ease forwards;
}

.logo-reveal {
  animation: logoReveal 1.2s ease-out forwards;
}
.hero-right {
   display: block;
  width: min(100%);  
  height: auto;
  max-width: none;
  object-fit: contain;
  margin-bottom: -50px; 

}
.cloud-girl {
  width: min(100%);object-fit: contain;}

/* Scroll down */
/* Kontener dwóch przycisków */
.scroll-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
    align-items: center;
  margin-top: 10px;
  margin-bottom: 20px;
}
.scroll-up,
.scroll-down {
  position: static;
  transform: none;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-top: 10px;
  border-radius: 999px;

   border: 1px solid #342e2b32;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(14px) brightness(1.08);
  box-shadow:
  0 0 1px rgba(255, 255, 255, .18),
  inset 0 0 2px rgba(255, 255, 255, .10),
  0 3px 4px rgba(0, 0, 0, .14);


  color: #342e2b;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, opacity .2s ease;
  opacity: .85;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.scroll-down-one {
  position: static;
  transform: none;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-top: 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.292);
  background: transparent;
  color: #342e2b;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, opacity .2s ease;
  opacity: .85;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}
.scroll-up2,
.scroll-down2 {
  position: static;
  transform: none;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-top: 10px;
  border-radius: 999px;
  border: 1px solid rgba(243, 239, 239, 0.269);
  background: transparent;
  color: aliceblue;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, opacity .2s ease;
  opacity: .85;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}
.scroll-up:hover,
.scroll-down:hover,
.scroll-down-one:hover {
  transform: translateY(-1px);
  background: #99999b17;
  opacity: 1;
} 
/* strzałka */
.scroll-down .arrow-down {
  font-size: 18px;
  line-height: 1;
  display: inline-block;
}
.scroll-down-one .arrow-down {
  font-size: 18px;
  line-height: 1;
  display: inline-block;
}
.scroll-up2:hover,
.scroll-down2:hover {
  transform: translateY(-1px);
  background:  #99999b17;
  opacity: 1;
}
/* strzałka */
.scroll-down2 .arrow-down {
  font-size: 18px;
  line-height: 1;
  display: inline-block;
}
/* Buttons */
.btn.primary {
  --bg:#a699ef00; --fg:#fff; --bd:rgba(0, 0, 0, 0.292);
  appearance: none; border: 1px solid var(--bd);
  box-shadow:
  0 0 1px rgba(255, 255, 255, .18),
  inset 0 0 2px rgba(255, 255, 255, .10),
  0 3px 4px rgba(0, 0, 0, .14);

  color: var(--fg); background: var(--bg);
  backdrop-filter: blur(4px);
  padding: 10px 16px; border-radius: 999px;
  text-decoration: none; font-weight: 700; font-size: 14px;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  display: inline-block;
}

.btn {
   font-family: 'ElmsSans-ExtraLight', serif;
   font-size: clamp(18px, 2vw, 26px);
  --bg:#a699ef00; --fg:#fff; --bd:rgba(0, 0, 0, 0.292);
  appearance: none; border: 1px solid var(--bd);
  color: var(--fg); background: var(--bg);
  backdrop-filter: blur(4px);
  padding: 10px 16px; border-radius: 999px;
  text-decoration: none; font-weight: 700; font-size: 14px;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  display: inline-block;
  margin: 5px;

}
.btn:hover {
  transform: translateY(-1px);
  background:  #99999b17;
  opacity: 1;
}
.btn.ghost { --bg:#f0eff500; --fg:aliceblue; --bd:rgba(243, 239, 239, 0.15); }
.btn.primary { --bg:#a699ef00; --fg:#111; --bd:rgba(0, 0, 0, 0.292); }

/* ===== karty w media i copy =====*/
.panel.fs-slider{
  padding: 0;          
  align-items: stretch;
}

.fs-slider{
  width: 100%;
  min-height: 100svh;     
  overflow-x: hidden;     
  overflow-y: visible;     
}

/* viewport nie może ciąć pionowo */
.fs-slider__viewport{
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
}

/* track: tylko poziome przesuwanie, wysokość automatyczna */
.fs-slider__track{
  display: flex;
  width: 200%;
  transform: translateX(0);
  transition: transform .55s ease;
  will-change: transform;
}

/* slajdy: szerokość 50%, wysokość auto */
.fs-slide{
  flex: 0 0 50%;
  width: 50%;
}

/* inner nie może mieć height:100% (to powoduje ścisk/ucinki) */
.fs-slide__inner{
  width: 100%;
  height: auto;
}



/* ===== ABOUT ===== */
.about-panel {
  grid-template-columns:.8fr 1.1fr;
  gap: clamp(10px, 3vw, 54px);
}
.about-media {
  position: relative;
  min-height: min(60vh, 540px);
  display: grid;
  align-items: end;
}

.about-portrait {
  width: min(440px, 90%);
  z-index: 3;
  justify-self: center;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.12));
}
.decor {
  position: absolute;
  z-index: 1;
  opacity: .9;
}
.decor-cloud {
  left: 8%;
  bottom: 6%;
  top:1%;
  width: min(520px, 92%);
  z-index: 1;
}
.decor-dots {
  right: 0%;
  bottom: 3%;
  width: min(320px, 60%);
  z-index: 2;
  transform: translate(6%, 18%);
}
.decor-dots2 {
  left:5% ;
  top: 0%;
  width: min(320px, 60%);
  z-index: 2;
  transform: translate(6%, 18%);
}
.about-text h2 {
  font-size: clamp(26px, 3vw, 40px);
  margin: 0 0 12px;
  color: #342e2b;;
  line-height: 1.1;
  transform-origin: center;
}
.about-text p {
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.6;
  opacity: .9;
}
.about-cta { margin-top: 16px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== WEB ===== */
.web-panel {
  position: relative;
  overflow-x: hidden;  
  overflow-y: visible; 
  padding: 120px 0; 
  min-height: 600px;
  isolation: isolate;
}

.web-panel .bg-cover{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.web-panel .bg-cover-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;          /* UWAGA: NIE 1 */
  pointer-events: none;
}

/* NAKŁADKA (gradient) – MUSI być nad img */
.web-panel .bg-cover::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.35)
  );
  pointer-events: none;
}

/* cała treść sekcji nad tłem + overlay */
.web-panel > :not(.bg-cover){
  position: relative;
  z-index: 2;
}

/* ===== KARUZELA ===== */
.web-slider {
  position: relative;
  z-index: 2;
   width: 100vw;
    max-width: 100vw;
  margin: 0 auto;
  padding: 20px 0;
   display: flex;
  align-items: center;    
  height: 100%;   
}

/* Pasek z kartami */
.web-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px 10vw;

  scrollbar-width: none;    
  -ms-overflow-style: none; 
   margin-top: 0;
  margin-bottom: 0;
  padding-top: 20px;     
  padding-bottom: 20px;   
}
.web-track::-webkit-scrollbar {
  display: none;            
}

/* POJEDYNCZA KARTA – STAN POCZĄTKOWY (przed wejściem w sekcję)aliceblue */
.web-card {
 flex: 0 0 min(480px, 80vw);
  scroll-snap-align: center;
 
  color:aliceblue;
  border-radius: 24px;

  /* SZKLANA RAMKA */
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 0 8px rgba(255, 255, 255, 0.25),
    inset 0 0 12px rgba(255, 255, 255, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.35);

  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px) brightness(1.08);

  padding: 22px 24px;

  /* START: lekko z lewej, mniejsze, niewidoczne */
  transform: translateX(-40px) scale(0.94);
  opacity: 0;

  transition:
    transform .6s ease,
    opacity .6s ease,
    box-shadow .4s ease,
    border-color .4s ease,
    background .4s ease;
}

/* Delikatne opóźnienie między kartami – efekt fali */
.web-slider.in-view .web-card:nth-child(1) { transition-delay: .05s; }
.web-slider.in-view .web-card:nth-child(2) { transition-delay: .15s; }
.web-slider.in-view .web-card:nth-child(3) { transition-delay: .25s; }
.web-slider.in-view .web-card:nth-child(4) { transition-delay: .35s; }

/* Po wejściu sekcji w viewport – wszystkie karty wsuwają się na miejsce */
.web-slider.in-view .web-card {
  opacity: .75;
  transform: translateX(0) scale(0.96);
}

/* KARTA AKTYWNA – ŚRODKOWA, NAJWAŻNIEJSZA */
.web-slider.in-view .web-card.is-active {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.09);
  box-shadow:
    0 0 12px rgba(255, 255, 255, 0.35),
    inset 0 0 20px rgba(255, 255, 255, 0.18),
    0 30px 80px rgba(0,0,0,.55);

  transform: translateX(0) scale(1.02); 
}

/* Nagłówek w kartach */
.web-card h2 {
  font-size: clamp(26px, 3vw, 40px);
  margin: 0 0 12px;
}

/* Tekst */
.web-card p {
  margin: 0 0 14px;
  opacity: .96;
}

/* Checklist wewnątrz kart */
.web-card .checklist {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}
.web-card .checklist li {
  padding-left: 26px;
  position: relative;
  margin: 7px 0;
}
.web-card .checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  opacity: .85;
}
/* ===== NAWIGACJA STRZAŁKAMI – OKRĄGŁE, JAK NA SCREENIE 2 ===== */
.web-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;

  width: 44px;
  height: 44px;
  border-radius: 50%;

  border-color: #d9dcdebb;
  box-shadow:
    0 0 12px rgba(255, 255, 255, 0.35),
    inset 0 0 20px rgba(255, 255, 255, 0.18),
    0 30px 80px rgba(0,0,0,.55);
  background: rgba(47, 50, 52, 0.75);
  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  font-size: 24px;
  line-height: 1;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);

  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}

/* lewa strzałka */
.web-nav-prev {
  left: 32px;            
}

/* prawa strzałka */
.web-nav-next {
  right: 32px;
}
.web-nav:hover {
  background: #47474832;
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.75);
}
.web-nav:active {
  transform: translateY(-50%) scale(0.96);
}
.web-nav:disabled {
  opacity: 0.35;
  cursor: default;
  transform: translateY(-50%);
}

/* Animacje wejścia */
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== MEDIA ===== */
.media-panel-inner{
  display: grid;
  max-width: 1900px;
  margin: 0 auto;
  position: relative;
  min-height: 100svh;

  grid-template-columns: 1.1fr 1fr;
  gap: clamp(16px, 4vw, 64px);
  align-items: center;
  padding: clamp(16px, 3vw, 48px);
  padding-bottom: clamp(18px, 3vh, 44px);
  box-sizing: border-box;
}
.btn-next::after{
  content: " ›››";
  display: inline-block;
  margin-left: 6px;
  transition: transform .25s ease;
}

.btn-next:hover::after{
  transform: translateX(4px);
}
/* ===== PRZYCISK „WRÓĆ” — strzałka z LEWEJ ===== */
.btn-prev{
  position: relative;
}

/* strzałka */
.btn-prev::before{
  content: "‹‹‹";
  display: inline-block;
  margin-right: 8px;
  transition: transform .25s ease;
}

/* hover — delikatny ruch w LEWO */
.btn-prev:hover::before{
  transform: translateX(-4px);
}

.media-panel {
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(16px, 4vw, 64px);
  align-items: center;
}

/* ====== Tablet mini (lekki) ====== */
.tablet-mini{
  display:flex; align-items:center; justify-content:center;min-width: 0;
}
.tablet{
  position:relative; margin-inline:auto; transform-style:preserve-3d;
  transition:transform .6s cubic-bezier(.2,.8,.2,1);
     width: min(520px, 100%);
  max-width: 100%;
}
.bezel{
  background:linear-gradient(180deg, #121212, #0d0d0d);
  border-radius:24px; padding:14px; position:relative;
   box-shadow:
  0 0 1px rgba(255, 255, 255, .18),
  inset 0 0 2px rgba(255, 255, 255, .10),
  0 3px 4px rgba(0, 0, 0, .14);
}
.screen{
  width:100%; aspect-ratio:4/3; 
  border-radius:18px; 
  background:#0a0a0a;
  position:relative; overflow:hidden; transform:translateZ(1px);
  box-shadow:0 0 0 1px rgba(255,255,255,.05) inset;
}
.screen-video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:18px; 
}
.screen-video2{
  width: 100%;
  height: 100%;
  display: block;

  object-fit: contain;  
  background: #000;    
}

.notch{
  position:absolute; top:8px; left:50%; width:72px; height:6px;
  transform:translateX(-50%); border-radius:999px;
  background:linear-gradient(180deg, #333, #151515);
}
.cam{
  position:absolute; top:8px; left:calc(50% + 52px);
  width:8px; height:8px; border-radius:50%;
  background:radial-gradient(circle at 35% 35%, #7dd3fc 0 25%, #0ea5e9 35%, #0b1320 60%);
  box-shadow:0 0 0 2px #0b0b0b, 0 0 0 3px rgba(255,255,255,.06);
}
.web-text {
  min-width: 0;
}
.web-text h2 {
  font-size: clamp(26px, 3vw, 40px);
  margin: 0 0 12px;
  color: #342e2b;;
  line-height: 1.1;
  transform-origin: center;
}
.web-text p {
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.6;
  opacity: .9;
}
/* ===== COPYWRITER (1:1 jak MEDIA, tylko kolumny odwrócone) ===== */
#copy.fs-slider--reverse .fs-slider__track{
  display: flex;
  width: 200%;
  flex-direction: row-reverse; 
  will-change: transform;
}

#copy .fs-slide{
  flex: 0 0 50%;
}

.copy-panel-inner{
  display: grid;
  max-width: 1900px;
  margin: 0 auto;
  position: relative;
  min-height: 100svh;

  grid-template-columns:1fr 1.1fr ;
  gap: clamp(16px, 4vw, 64px);
  align-items: center; 
   padding: clamp(16px, 3vw, 38px);
  padding-bottom: clamp(18px, 3vh, 44px);

  box-sizing: border-box;
}

.copy-panel-inner .web-text,
.copy-panel-inner .web-video{
  min-width: 0;
}

.copy-panel-inner .web-text{ order: 1; }
.copy-panel-inner .web-video{ order: 2; }

.copy-panel-inner .web-video{
  width: min(680px, 45vw);
  max-width: 100%;
  height: auto;

  aspect-ratio:14 /8;
  object-fit: cover;
  display: block;

  border-radius: 8px;
  box-shadow:
    0 0 1px rgba(255,255,255,.18),
    inset 0 0 2px rgba(255,255,255,.10),
    0 3px 4px rgba(0,0,0,.14);

  justify-self: center;
}

.btn-copy-more{
  position: relative;
}

.btn-copy-more::before{
  content: "‹‹‹";
  display: inline-block;
  margin-right: 8px;
  transition: transform .25s ease;
}

.btn-copy-more:hover::before{
  transform: translateX(-4px);
}

.btn-copy-back{
  position: relative;
}

.btn-copy-back::after{
  content: "›››";
  display: inline-block;
  margin-left: 8px;
  transition: transform .25s ease;
}

.btn-copy-back:hover::after{
  transform: translateX(4px);
}

@media (max-width: 768px){
  .copy-panel-inner{
    grid-template-columns: 1fr;
  }

  .copy-panel-inner .web-text{ grid-column: 1; }
  .copy-panel-inner .web-video{
    grid-column: 1;
    width: 100%;
    max-width: 720px;
    justify-self: center;
  }
}
/* ======================================
   COPY – kafelki zamiast wideo (slajd 2)
   ====================================== */

.copy-panel-inner .copy-tiles{
  width: min(720px, 45vw);
  max-width: 100%;
  justify-self: center;

  display: grid;
  gap: 14px;
  padding: 14px;
  border-radius:8px;
  box-shadow:
    0 0 1px rgba(255,255,255,.18),
    inset 0 0 2px rgba(255,255,255,.10),
    0 3px 4px rgba(0,0,0,.14);

  background: rgba(71, 92, 100, 0.055);
  backdrop-filter: blur(4px);

  box-sizing: border-box;
  min-width: 0;
}

.copy-panel-inner .copy-tiles__title{
  margin: 0;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.2;
  opacity: .95;
}

.copy-panel-inner .copy-tiles__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.copy-panel-inner .copy-tile{
  display: grid;
  gap: 8px;
  text-decoration: none;
  color: inherit;

  border-radius: 12px;
  padding: 10px;

  border: 1px solid rgba(255,255,255,.12);
  background: rgba(61, 90, 100, 0.29);

  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  min-width: 0;
}

.copy-panel-inner .copy-tile__thumb{
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: rgba(0,0,0,.15);
}

.copy-panel-inner .copy-tile__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.001); 
}

.copy-panel-inner .copy-tile__caption{
  font-size: 14px;
  line-height: 1.2;
  opacity: .92;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-panel-inner .copy-tile:hover{
  transform: translateY(-2px);
  background: rgba(34, 69, 69, 0.432);
  border-color: rgba(255,255,255,.22);
}

.copy-panel-inner .copy-tile:focus-visible{
  outline: 2px solid rgba(255,255,255,.55);
  outline-offset: 2px;
}

.copy-panel-inner .web-text{ order: 1; }
.copy-panel-inner .copy-tiles{ order: 2; }
@media (max-width: 768px){
  .copy-panel-inner .copy-tiles{
    width: 100%;
    max-width: 720px;
    justify-self: center;
  }
 @media (max-width: 768px){
  #copy .fs-slide[data-slide="1"] .copy-tiles{ order: 1; }
  #copy .fs-slide[data-slide="1"] .web-text{ order: 2; }
}

  /*.copy-panel-inner .copy-tiles__grid{
    grid-template-columns: 1fr 1fr;
  }*/
}

@media (max-width: 520px){
  .copy-panel-inner .copy-tiles__grid{
    /*grid-template-columns: 1fr;*/
    grid-template-columns: 1fr 1fr;
  }

  .copy-panel-inner .copy-tile__caption{
    white-space: normal;
  }
}

/* ===== FOOTER PANEL ===== */
.footers-panel{
  display: grid;
  grid-template-rows: auto 1fr;
  background: #fff;
  color: #422836;
   position: relative;
}
.footers-panel2{
  display: grid;
  grid-template-rows: auto 1fr; 
   color: rgb(240, 248, 255);
    position: relative;
}

.footer-button-wrap{
 position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  display: grid;
  place-items: center;
  z-index: 10;
 pointer-events: none;
}

.footer-button-wrap button {
  pointer-events: auto;
}
.footers-panel.btn-pos-bottom .footer-button-wrap{ order: 2; padding: 0 0 20px; }

.visually-hidden{
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap; clip-path: inset(50%);
}

.footer{
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: clamp(18px, 4vw, 36px) 0;
  border-top: 1px solid rgba(66,40,54,.15);
  display: grid;
  gap: clamp(16px, 2.6vw, 24px);
}
.footer2{
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: clamp(18px, 4vw, 36px) 0;
  border-top: 1px solid rgba(248, 246, 247, 0.29);
  display: grid;
  gap: clamp(16px, 2.6vw, 24px);
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(16px, 3vw, 40px);
  align-items: start;
}
.footer-col{ min-width: 0; }

.footer-heading{
  margin: 0 0 10px 0;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 700;
}
 /* =========================
    STRONY_INTERNETOWE
    ==========================*/ 

.hero-content2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;        
  justify-content: center;    
  text-align: center;        
  gap: 16px;                  
  width: 100%;
  max-width: 720px;           
  margin: 0 auto;
}

.hero2-panel .site-header2{
  display:flex;
  align-items:center;                 
  justify-content:space-between;
}

.hero2-panel .nav-left2 ul{
  display:flex;
  list-style:none;
  margin:0;
  padding:0;
}
.hero2-panel .nav-left2 a{
  text-decoration:none;
  color:aliceblue;
  padding:.4rem .6rem;
  border-radius:10px;
  transition:opacity .2s ease, transform .2s ease;
}
.hero2-panel .nav-left2 a:hover{ opacity:.9; transform:translateY(-1px); }

.hero2-panel .nav-right2{
  display:flex;
  align-items:center;               
  gap: 10px;
  margin:0;                       
}

.brand-logo2 {
  max-width: clamp(160px, 18vw, 280px);
  height: auto;
  margin-top: 10px;
  opacity: 1; 
  transition: opacity 0.3s ease;
   border-radius: 24px;
padding: clamp(16px, 3vw, 28px) clamp(14px, 3vw, 26px);

  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(14px) brightness(1.08);
  box-shadow:
    0 0 8px rgba(255,255,255,.25),
    inset 0 0 12px rgba(255,255,255,.12),
    0 24px 60px rgba(0,0,0,.35);
}

.brand-logo2:hover {
  opacity: 0,95;
}

.hero-subtitle2{
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  line-height:1;
}
.sitemap, .extras{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.sitemap a, .extras a{
  color: #422836;
  text-decoration: none;
  border-bottom: 1px dotted rgba(66,40,54,.35);
  transition: .2s ease;
}
.sitemap a:hover, .extras a:hover{
  border-bottom-style: solid;
}
.sitemap2, .extras2{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.sitemap2 a, .extras2 a{
  color: aliceblue;
  text-decoration: none;
  border-bottom: 1px dotted rgba(174, 171, 172, 0.35);
  transition: .2s ease;
}
.sitemap2 a:hover, .extras2 a:hover{
  border-bottom-style: solid;
}

.social{
  display: grid;
  gap: 8px;
  margin-top: 12px;
}
.social-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #422836;
  text-decoration: none;
  border: 1px solid rgba(66,40,54,.18);
  padding: 8px 10px;
  border-radius: 10px;
  transition: .2s ease;
}
.social-link2{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: aliceblue;
  text-decoration: none;
  border: 1px solid rgba(240, 236, 238, 0.18);
  padding: 8px 10px;
  border-radius: 10px;
  transition: .2s ease;
}
.social-link:hover{
   transform: translateY(-1px);
  background:  #99999b17;
  opacity: 1;
}
.social-link2:hover{
   transform: translateY(-1px);
  background:  #99999b17;
  opacity: 1;
}

.footer-legal{
  border-top: 1px dashed rgba(66,40,54,.2);
  padding-top: 10px;
  font-size: .95rem;
  opacity: .9;
}

.footers-panel{
  scroll-snap-align: start;
  min-height: auto;
}

/* =========================
   JAK PRACUJĘ / PROCESS PANEL
   ========================= */

.process-panel {
  position: relative;
  z-index: 1;                     
  isolation: isolate;             
  color: aliceblue;
  padding: clamp(24px, 5vw, 56px) 0;
}

.process-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/projekt.jpg");
  background-size: cover;
  background-position: center;
  opacity: .28;
  filter: saturate(1.05) contrast(1.02);
  z-index: -1;                  
}

.process-inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: clamp(16px, 4vw, 40px) 0;
}

.process-header {
  max-width: 72ch;
  margin: 0 auto clamp(24px, 4vw, 40px);
  text-align: left;
}

.process-kicker {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .8rem;
  margin: 0 0 10px;
  font-weight: 700;
  opacity: .85;
}
.process-motto {
  font-family: 'GARA', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.25;
  letter-spacing: .2px;
  color: #fff;
  margin: 0 0 14px;
  max-width: 26ch;
}

.process-intro1,
.process-intro2,
.process-time,
.process-sec-lead {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.7;
  color: rgba(255, 255, 255, .92);
  margin: 0 0 12px;
  opacity: .95;
}

.process-divider {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, .0),
    rgba(255, 255, 255, .35),
    rgba(255, 255, 255, 0)
  );
  margin: clamp(14px, 2vw, 18px) 0;
  opacity: .75;
}

.process-benefits-title {
  margin: 0 0 8px;
  font-weight: 800;
  font-size: clamp(17px, 1.6vw, 20px);
  letter-spacing: .3px;
  color: #ffffff;
}

.process-link {
  font-weight: 600;
  text-decoration: none;
  position: relative;
  color: inherit;
  cursor: pointer;
}

.process-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.35);
  transition: background-color .25s ease, height .25s ease;
}

.process-link:hover::after {
  background-color: currentColor;
  height: 1px;
}

.process-link:hover {
  font-weight: 700;
}

.process-card {
  position: relative;
  margin: 0 auto;
  max-width: min(980px, 94vw);
  border-radius: 24px;
  padding: clamp(22px, 4vw, 36px) clamp(20px, 4vw, 36px);

  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(14px) brightness(1.08);
  box-shadow:
    0 0 8px rgba(255, 255, 255, .25),
    inset 0 0 12px rgba(255, 255, 255, .12),
    0 24px 60px rgba(0, 0, 0, .35);

  color: rgba(255, 255, 255, .94);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.process-card .checklist {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.process-card .checklist li {
  position: relative;
  padding-left: 28px;
  margin: 6px 0;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
  color: rgba(255, 255, 255, .95);
}

.process-card .checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .05em;
  font-weight: 700;
  opacity: .95;
}

.process-time {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
  color: rgba(255, 255, 255, .86);
  margin-top: 10px;
}

.process-security{
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: clamp(18px, 3vw, 44px) clamp(16px, 3vw, 40px);
}

#web-security .process-section-title{
  color: rgba(255,255,255,.92);
  letter-spacing: .02em;
}

#web-security .process-sec-lead{
  color: rgba(255,255,255,.72);
  max-width: 70ch;
  margin: 10px auto 0;
  line-height: 1.7;
}

.sec-cards{
  margin-top: clamp(18px, 3vw, 34px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.sec-card{
   border-radius: 18px; padding: clamp(16px, 2.2vw, 22px);

  padding: clamp(22px, 4vw, 36px) clamp(20px, 4vw, 36px);

  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(74, 74, 74, 0.158);
  backdrop-filter: blur(18px) brightness(1.08);
  box-shadow:
    0 0 8px rgba(255, 255, 255, .25),
    inset 0 0 12px rgba(255, 255, 255, .12),
    0 24px 60px rgba(0, 0, 0, .35);

  color: rgba(255, 255, 255, .94);
}

.sec-card__top{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.sec-card__icon{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 20px;
}

.sec-card__title{
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.25;
}

.sec-card__short{
  margin: 0 0 10px;
  color: rgba(255,255,255,.74);
  line-height: 1.6;
  font-size: clamp(14px, 1.15vw, 16px);
  max-width: 62ch;
}

.sec-card__more{
  margin-top: 6px;
}

.sec-card__more > summary{
  list-style: none;
  cursor: pointer;
}

.sec-card__more > summary::-webkit-details-marker{
  display: none;
}

.sec-card__summary{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.14);
  color: rgba(255,255,255,.86);
  font-size: 14px;
  line-height: 1;
  user-select: none;
}

.sec-card__more[open] .sec-card__summary{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.26);
}

.sec-card__details{
  padding-top: 10px;
}

.sec-card__details p{
  margin: 0;
  color: rgba(255,255,255,.70);
  line-height: 1.7;
  font-size: clamp(14px, 1.1vw, 16px);
}

.sec-card:hover{
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 18px 46px rgba(0,0,0,.22);
}

@media (max-width: 980px){
  .sec-cards{
    grid-template-columns: 1fr;
  }
}

.process-section-title {
  font-size: clamp(20px, 2.4vw, 26px);
  margin: 0 0 14px;
}

.process-faq,
.process-security {
  max-width: min(980px, 94vw);
  position: relative;
  margin: 0 auto;
}

.process-faq {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.faq-item {
  position: relative;
  border-radius: 16px;
  background: rgba(110, 50, 50, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
  cursor: pointer;
  transition:
    background .35s ease,
    border-color .35s ease,
    box-shadow .35s ease,
    transform .35s ease;
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: -22%;
  background-image: url("../images/projekt.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05) translateY(12px);
  transition:
    opacity .45s ease,
    transform .9s ease;
  z-index: -1;
}
.faq-item.is-active {
  background: rgba(110, 50, 50, 0.12);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.5);
  transform: translateY(-3px);
}

.faq-item.is-active::before {
  opacity: .45;
  transform: scale(1.09) translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .faq-item:hover {
    background: rgba(110, 50, 50, 0.12);
    border-color: rgba(255, 255, 255, 0.38);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.5);
    transform: translateY(-3px);
  }

  .faq-item:hover::before {
    opacity: .45;
    transform: scale(1.09) translateY(0);
  }
}
.faq-question {
  width: 100%;
  padding: 14px 18px;
  background: transparent;
  color: inherit;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: clamp(15px, 1.4vw, 18px);
  font-family: 'ElmsSans-ExtraLight';
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  font-size: 20px;
  line-height: 1;
  transition: transform .25s ease, opacity .25s ease;
  opacity: .85;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  padding: 0 18px 0;
  transition:
    max-height .35s ease,
    opacity .25s ease,
    transform .25s ease,
    padding .25s ease;
}

.faq-answer p {
  margin: 10px 0;
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.65;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 16px;
  opacity: 1;
  transform: translateY(0);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.process-security {
  margin-top: 32px;
  display: grid;
  gap: 12px;
}

.process-sec-lead {
  margin: 0 0 10px;
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.7;
  opacity: .9;
}
.package-price {
  margin-top: 1.4rem;
  margin-bottom: 1rem;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.18),
    rgba(10, 10, 20, 0.35)
  );
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(12px);
}

.price-amount {
  font-weight: 600;
  font-size: 1.1rem;
}

.price-period {
  font-size: 0.9rem;
  opacity: 0.9;
}

.price-badge {
  margin-left: 10px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.14);
}

.package-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 0.5rem;
}

.package-actions .btn {
  width: 100%;
  justify-content: center;
}

.web-card-main {
  transform: translateY(-4px);
}
.process-faq-panel {
  position: relative;
   z-index: 1;                     
  isolation: isolate; 
  color: aliceblue;
  padding: clamp(32px, 6vw, 72px) clamp(16px, 4vw, 64px);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:clamp(16px,3vw,40px);
  align-items:start;
}

/* =========================================================
   KONTAKT — 
   ========================================================= */

body.contact-page{
  position: relative;
  min-height: 100%;
  color: rgba(255,255,255,.92);
}

body.contact-page .site-bg{
 min-height: 100vh;
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.35)
    ),
    url("../images/projekt.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: rgb(240, 248, 255);
position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;

}

body.contact-page::after{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
 
}

body.contact-page .contact-shell{
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: clamp(18px, 4vw, 40px) 0 clamp(22px, 5vw, 56px);
}

body.contact-page .contact-topbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: clamp(14px, 3vw, 24px);
}

body.contact-page .contact-logo{
  width: clamp(120px, 16vw, 170px);
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.35));
}

body.contact-page .contact-actions{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

body.contact-page .icon-chip{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.16);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-size: 14px;
}

body.contact-page .icon-chip .chip-ic{ opacity: .9; }
body.contact-page .icon-chip .chip-txt{ opacity: .92; }

body.contact-page .icon-btn{
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  text-decoration: none;
  backdrop-filter: blur(10px);
}

body.contact-page .contact-card{
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(20, 24, 30, .52);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 70px rgba(0,0,0,.55);
  overflow: hidden;
}

body.contact-page .contact-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
}

body.contact-page .contact-left{
  padding: clamp(18px, 3.4vw, 34px);
  border-right: 1px solid rgba(255,255,255,.10);
}

body.contact-page .contact-right{
  padding: clamp(18px, 3.4vw, 34px);
}

body.contact-page .contact-kicker{
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 700;
  font-size: 12px;
  opacity: .8;
  margin: 0 0 8px;
}

body.contact-page .contact-title{
  margin: 0 0 10px;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  color: rgba(255,255,255,.96);
}

body.contact-page .contact-lead{
  margin: 0 0 18px;
  line-height: 1.75;
  font-size: clamp(14px, 1.25vw, 17px);
  color: rgba(255,255,255,.78);
  max-width: 62ch;
}

body.contact-page .contact-tiles{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

body.contact-page .contact-tile{
  text-decoration: none;
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.14);
  border-radius: 18px;
  padding: 14px 14px;
  display: grid;
  gap: 6px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

body.contact-page .contact-tile:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
}

body.contact-page .tile-ic{
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

body.contact-page .tile-main{
  font-weight: 700;
  letter-spacing: .2px;
}

body.contact-page .tile-sub{
  font-size: 12px;
  opacity: .72;
}

body.contact-page .contact-note{
  margin-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 14px;
}

body.contact-page .note-title{
  margin: 0 0 8px;
  font-weight: 800;
  font-size: 14px;
  opacity: .9;
}

body.contact-page .note-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,.74);
  line-height: 1.7;
}

body.contact-page .contact-form{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

body.contact-page .form-row{
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

body.contact-page .form-label{
  font-size: 13px;
  letter-spacing: .02em;
  color: rgba(255,255,255,.78);
}

body.contact-page .form-input,
body.contact-page .form-textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.92);
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

body.contact-page .form-input:focus,
body.contact-page .form-textarea:focus{
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.10);
  box-shadow: 0 0 0 3px rgba(255,255,255,.08);
}

body.contact-page .form-textarea{
  resize: vertical;
  min-height: 140px;
}

body.contact-page .form-consent{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 12px 0 14px;
}

body.contact-page .form-check{
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #ffffff;
}

body.contact-page .form-check-label{
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,.72);
}

body.contact-page .form-check-label a{
  color: rgba(255,255,255,.90);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.25);
}

body.contact-page .turnstile-wrap{
  margin: 10px 0 16px;
}

body.contact-page .form-actions{
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

body.contact-page .form-submit{
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.94);
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: .02em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

body.contact-page .form-submit:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.26);
}

body.contact-page .form-mini{
  margin: 0;
  font-size: 12.5px;
  color: rgba(255,255,255,.68);
}

body.contact-page .form-mini a{
  color: rgba(255,255,255,.90);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.25);
}

body.contact-page .hp{
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

body.contact-page .contact-footer{
  margin-top: 14px;
  text-align: center;
  color: rgba(255,255,255,.72);
}

body.contact-page .footer-links{
  margin: 14px 0 6px;
}

body.contact-page .footer-links a{
  color: rgba(255,255,255,.86);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

body.contact-page .footer-copy{
  margin: 0;
  font-size: 12.5px;
  opacity: .85;
}

@media (max-width: 980px){
  body.contact-page .contact-grid{
    grid-template-columns: 1fr;
  }
  body.contact-page .contact-left{
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.10);
  }
  body.contact-page .contact-tiles{
    grid-template-columns: 1fr;
  }
}

body.privacy-page{
      position: relative;
      min-height: 100%;
      color: rgba(255,255,255,.92);
    }

    body.privacy-page .site-bg{
       min-height: 100vh;
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.35)
    ),
    url("../images/projekt.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: rgb(240, 248, 255);
position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
    }

    body.privacy-page::after{
     content:"";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
    }

    .privacy-shell{
      width: min(1100px, 92vw);
      margin: 0 auto;
      padding: clamp(18px, 4vw, 40px) 0 clamp(26px, 6vw, 70px);
    }

    .privacy-topbar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      margin-bottom: clamp(16px, 4vw, 28px);
    }
    .privacy-brand{
      display:flex;
      align-items:center;
      gap:12px;
      text-decoration:none;
      color: inherit;
    }

    .privacy-logo{
      width: clamp(120px, 16vw, 170px);
      height:auto;
      display:block;
      filter: drop-shadow(0 10px 20px rgba(0,0,0,.35));
    }

    .privacy-actions{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
      align-items:center;
    }

    .chip{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 14px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.08);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      color: rgba(255,255,255,.92);
      text-decoration:none;
      font-size:14px;
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
    }

    .chip:hover{
      transform: translateY(-1px);
      background: rgba(255,255,255,.12);
      border-color: rgba(255,255,255,.26);
    }

    .btn-round{
      width:42px;
      height:42px;
      display:grid;
      place-items:center;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.08);
      color: rgba(255,255,255,.92);
      text-decoration:none;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
    }

    .btn-round:hover{
      transform: translateY(-1px);
      background: rgba(255,255,255,.12);
      border-color: rgba(255,255,255,.26);
    }

    .privacy-card{
      border-radius: 26px;
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(20, 24, 30, .52);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 18px 70px rgba(0,0,0,.55);
      overflow:hidden;
    }

    .privacy-header{
      padding: clamp(18px, 3.4vw, 34px);
      border-bottom: 1px solid rgba(255,255,255,.10);
    }

    .privacy-kicker{
      text-transform: uppercase;
      letter-spacing: .18em;
      font-weight: 700;
      font-size: 12px;
      opacity: .85;
      margin: 0 0 10px;
    }

    .privacy-title{
      margin: 0 0 10px;
      font-family: 'Playfair Display', Georgia, serif;
      font-weight: 600;
      font-size: clamp(28px, 3.2vw, 44px);
      line-height: 1.12;
      color: rgba(255,255,255,.96);
    }

    .privacy-lead{
      margin: 0;
      line-height: 1.8;
      color: rgba(255,255,255,.78);
      max-width: 80ch;
      font-size: clamp(14px, 1.25vw, 17px);
    }

    .privacy-content{
      padding: clamp(18px, 3.4vw, 34px);
      display: grid;
      gap: 18px;
    }

    .privacy-section{
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(0,0,0,.14);
      border-radius: 18px;
      padding: 16px 16px;
    }

    .privacy-section h2{
      margin: 0 0 10px;
      font-size: clamp(16px, 1.6vw, 20px);
      letter-spacing: .2px;
      color: rgba(255,255,255,.94);
    }

    .privacy-section p,
    .privacy-section li{
      line-height: 1.8;
      color: rgba(255,255,255,.78);
      font-size: clamp(14px, 1.2vw, 16px);
    }

    .privacy-section ul{
      margin: 10px 0 0;
      padding-left: 18px;
    }

    .privacy-section a{
      color: rgba(255,255,255,.92);
      text-decoration: none;
      border-bottom: 1px solid rgba(255,255,255,.25);
    }

    .privacy-section a:hover{
      border-bottom-color: rgba(255,255,255,.45);
    }

    .privacy-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.08);
      color: rgba(255,255,255,.86);
      font-size: 12.5px;
      margin-top: 12px;
    }

    .privacy-footer{
      margin-top: 16px;
      text-align: center;
      color: rgba(255,255,255,.72);
      font-size: 12.5px;
    }

    .privacy-footer a{
      color: rgba(255,255,255,.86);
      text-decoration:none;
      border-bottom: 1px solid rgba(255,255,255,.18);
    }

/* === COOKIE DRAWER (prawy, wysuwany) === */
.cookie-drawer{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: min(420px, calc(100vw - 36px));
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.292);
  background: transparent !important;
  backdrop-filter: blur(4px);
  color: #100e0d;
  cursor: pointer;
  z-index: 9999;
 background-color: transparent;
  box-shadow: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  transform: translateX(calc(100% + 28px));
  opacity: 0;
  pointer-events: none;
  transition: transform .45s cubic-bezier(.2,.9,.2,1), opacity .25s ease;
}

.cookie-drawer.is-open{
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-drawer__content{
  padding: 18px 18px 16px;
}

.cookie-drawer__title{
  font-weight: 700;
  letter-spacing: .02em;
  font-size: 15px;
  margin: 0 0 8px;
}

.cookie-drawer__text{
  margin: 0 0 14px;
  line-height: 1.6;
  font-size: 13.5px;
  color: #100e0d;
}

.cookie-drawer__link{
  color: #100e0d;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.22);
}

.cookie-drawer__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn{
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.18);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  font-size: 13.5px;
}

.cookie-btn:hover{ transform: translateY(-1px); }

.cookie-btn--primary{
  background: rgba(255,255,255,.14);
  color: #342e2b;
}

.cookie-btn--primary:hover{
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.26);
}

.cookie-btn--ghost{
  background: rgba(255,255,255,.14);
  color: #342e2b;
}

.cookie-btn--ghost:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.24);
}

.cookie-drawer__mini{
  margin: 12px 0 0;
  font-size: 12px;
  color: #342e2b;
  line-height: 1.45;
}

.cookie-drawer__close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.292);
  background: transparent !important;
  backdrop-filter: blur(4px);
  color: #100e0d;
  
  z-index: 9999;
 background-color: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.cookie-drawer__close:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
}

.cookie-drawer__close span{
  font-size: 20px;
  line-height: 1;
  transform: translateY(-1px);
}

.cookie-tab{
  position: fixed;
  right: 10px;
  bottom: 120px;
  z-index: 9998;
  border-radius: 999px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.292);
  background: transparent !important;
  backdrop-filter: blur(4px);
  color: #100e0d;
  cursor: pointer;
  z-index: 9999;
 background-color: transparent;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: .02em;
  font-size: 12.5px;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  transition: transform .2s ease, opacity .2s ease;
}

.cookie-tab:hover{ transform: translateY(-1px); }

.cookie-tab.is-hidden{
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 520px){
  .cookie-drawer{
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }
  .cookie-tab{
    right: 8px;
    bottom: 92px;
  }
}
    /* =========================================
       THANK YOU PAGE — DARK THEME (jak kontakt v1)
       ========================================= */

    body.thanks-page{
      position: relative;
      min-height: 100%;
      margin: 0;
      color: rgba(255,255,255,.92);
    
    }

    body.thanks-page .site-bg{
       min-height: 100vh;
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.35)
    ),
    url("../images/projekt.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: rgb(240, 248, 255);
position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
    }

    body.thanks-page::after{
      content:"";
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
     
    }

    .thanks-shell{
      width: min(1100px, 92vw);
      margin: 0 auto;
      padding: clamp(18px, 4vw, 40px) 0 clamp(26px, 6vw, 70px);
      min-height: 100vh;
      display: grid;
      align-content: center;
      gap: clamp(14px, 3vw, 22px);
      
    }
    .thanks-center{
      display: grid;
      align-content: center;
      justify-items: center;
    }
    .thanks-topbar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
    }

    .thanks-brand{
      display:flex;
      align-items:center;
      gap:12px;
      text-decoration:none;
      color: inherit;
    }

    .thanks-logo{
      width: clamp(120px, 16vw, 170px);
      height:auto;
      display:block;
      filter: drop-shadow(0 10px 20px rgba(0,0,0,.35));
    }

    .thanks-actions{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
      align-items:center;
    }

    .chip{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 14px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.08);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      color: rgba(255,255,255,.92);
      text-decoration:none;
      font-size:14px;
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
    }

    .chip:hover{
      transform: translateY(-1px);
      background: rgba(255,255,255,.12);
      border-color: rgba(255,255,255,.26);
    }

    /* karta */
    .thanks-card{
      border-radius: 26px;
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(20, 24, 30, .52);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 18px 70px rgba(0,0,0,.55);
      overflow:hidden;
      padding: clamp(18px, 3.6vw, 38px);
      display: grid;
      gap: 14px;
      max-width: 860px;
    }

    .kicker{
      text-transform: uppercase;
      letter-spacing: .18em;
      font-weight: 700;
      font-size: 12px;
      opacity: .85;
      margin: 0;
    }

    .title{
      margin: 0;
      font-family: 'Playfair Display', Georgia, serif;
      font-weight: 600;
      font-size: clamp(30px, 3.2vw, 46px);
      line-height: 1.12;
      color: rgba(255,255,255,.96);
    }

    .lead{
      margin: 0;
      line-height: 1.85;
      color: rgba(255,255,255,.78);
      max-width: 75ch;
      font-size: clamp(14px, 1.25vw, 17px);
    }

    .mini{
      margin: 0;
      color: rgba(255,255,255,.70);
      font-size: 13px;
      line-height: 1.65;
    }

    .btn-row{
      display:flex;
      flex-wrap:wrap;
      gap: 10px;
      margin-top: 6px;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap: 10px;
      padding: 12px 16px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.20);
      background: rgba(255,255,255,.10);
      color: rgba(255,255,255,.94);
      text-decoration:none;
      font-weight: 700;
      letter-spacing: .02em;
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
    }

    .btn:hover{
      transform: translateY(-1px);
      background: rgba(255,255,255,.14);
      border-color: rgba(255,255,255,.26);
    }

    .btn.secondary{
      background: rgba(0,0,0,.18);
      border-color: rgba(255,255,255,.16);
      font-weight: 600;
      opacity: .95;
    }

    .hint{
      margin-top: 10px;
      border-top: 1px solid rgba(255,255,255,.10);
      padding-top: 12px;
      display: grid;
      gap: 6px;
    }

    .hint strong{ color: rgba(255,255,255,.92); }

    footer.thanks-footer{
      margin-top: auto;
      padding-top: 16px;
      text-align: center;
      color: rgba(255,255,255,.70);
      font-size: 12.5px;
    }

    footer.thanks-footer a{
      color: rgba(255,255,255,.86);
      text-decoration:none;
      border-bottom: 1px solid rgba(255,255,255,.18);
    }

    @media (max-width: 840px){
      .thanks-actions{ justify-content:flex-end; }
      .thanks-card{ max-width: 100%; }
    }

    @media (max-width: 840px){
      .privacy-actions{ justify-content:flex-end; }
      .privacy-logo{ width: 140px; }
    }


@media (max-width: 820px){
  .footer-grid{ grid-template-columns: 1fr; }
  .process-card{ padding: 18px 16px; border-radius: 20px; }
}
@media (max-width: 950px){

  .site-header,
  .site-header2{
    position: relative;
  }

  .nav-toggle,
  .nav-toggle2{
    display: grid;
    position: absolute;
    left: 16px;
    top: 1px;
    z-index: 60;
  }

  .primary-nav,
  .primary-navs{
    position: absolute;
    left: 16px;
    right: 16px;

    /* poniżej headera */
    top: calc(100% + 8px);

    border-radius: 16px;
    padding: 12px;

    transform-origin: top center;
    transform: scaleY(0);
    transition: transform .18s ease;

    backdrop-filter: blur(6px);
    z-index: 50;

    visibility: hidden;
    pointer-events: none;
  }

  .primary-nav{
    background: rgba(255, 255, 255, 0);
    color: #342e2b;
    border: 1px solid rgba(0, 0, 0, .12);
  }

  .primary-navs{
    background: rgba(0, 0, 0, 0);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
  }

  .primary-nav ul,
  .primary-navs ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  /* otwarcie menu przez .open */
  .primary-nav.open,
  .primary-navs.open{
    visibility: visible;
    pointer-events: auto;
    transform: scaleY(1);
  }
}

/* =========================================================
   2) MOBILE LAYOUT (≤768px)
   - tutaj dopiero zmieniasz układy (1 kolumna itd.)
   ========================================================= */
@media (max-width: 768px){
  .site-header,
  .site-header2{
    display: grid;
    grid-template-columns: 1fr auto;
  }
  .process-motto{
    font-size: clamp(24px, 6.2vw, 30px);
    max-width: 28ch;
  }

  .process-intro1,
  .process-intro2{
    font-size: 16px;
  }

  .process-benefits-title{
    font-size: 18px;
  }

  .process-header{
    text-align: left;
  }

  .process-inner{
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .faq-item{
    padding-top: 12px;
    margin-top: 12px;
  }

  .faq-question{
    padding: 14px 16px;
  }

  .faq-answer{
    padding: 0 16px 12px;
  }
  .hero-content{
    grid-template-columns: 1fr;
    padding-top: 8px;
    text-align: center;
  }

  .hero-right{
    justify-items: center;
    margin-top: 8px;
  }
  .brand-logo{
    width: min(30vw);
    height: auto;
    max-width: none;
    margin: 0 auto 8px;
    display: block;
  }
  .cloud-girl{
    width: min(84vw, 450px);
    height: auto;
    translate: 45% 0;
  }
  .about-panel,
  .media-panel,
  .media-panel-inner,
  .copy-panel-inner,
  .copy-panel{
    grid-template-columns: 1fr;
  }

  .about-media{ order: 1; }
  .about-text{  order: 2; }
  .web-media{   order: 2; justify-items: center; }
  .web-text{    order: 1; }
  .web-video{   width: 100%; }

  .copy-panel .web-video{
    order: 1;
    width: 100%;
    max-width: 720px;
    justify-self: center;
  }
  .panel-slide__viewport{
    grid-column: 1 / -1;
    width: 100%;
    overflow: hidden;
  }

  .panel-slide__track{
    width: 200%;
  }

  .panel-slide__page{
    flex: 0 0 50%;
    width: 50%;
  }

  .media-page{
    grid-template-columns: 1fr;
  }
  .web-panel{
    padding: 48px 0;
    overflow: hidden;
  }

  .web-slider{
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    height: auto;
    padding-top: 32px;
    padding-bottom: 48px;
  }

  .web-track{
    width: 100%;
    display: flex;
    gap: 12px;
    padding: 0 16px;
    padding-top: 12px;
    padding-bottom: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }

  .web-track::-webkit-scrollbar{
    display: none;
  }

  .web-card{
    flex: 0 0 calc(100% - 96px);
    padding: 18px 16px;
    transform: translateX(0);
  }

  .web-slider.in-view .web-card{ opacity: .8; }
  .web-slider.in-view .web-card.is-active{ opacity: 1; }

  .web-nav-prev{ left: 12px; }
  .web-nav-next{ right: 12px; }

  .brand-logo2{
    max-width: clamp(180px, 26vw, 320px);
  }

  #web-process .reveal{
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 951px){

  .nav-toggle,
  .nav-toggle2{
    display: none !important;
  }

  .primary-nav,
  .primary-navs{
    position: static;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    padding: 0;
    background: none;
    border: none;
    backdrop-filter: none;
  }

  .primary-nav ul,
  .primary-navs ul{
    display: flex;
    flex-direction: row;
    gap: 24px;
  }
}
@media (max-width: 720px){
  .hero2-panel .site-header2{
    gap: 12px;
    padding: clamp(8px, 3vw, 12px) clamp(10px, 4vw, 16px);
  }
}

@media (max-width: 520px){
  .process-card{ padding: 16px 14px; border-radius: 18px; }
}

@media (min-width: 1500px){
  .panel{ padding-left: 8vw; padding-right: 8vw; }
  .hero-content{ grid-template-columns: .8fr 1.2fr; margin: 0 auto; }
  .web-slider {max-width: 1600px;}
}

