:root {
  /* ================================
     KOLORY MARKI – ZIELEŃ (SPÓJNE Z TŁEM)
  ================================ */
  --eco-green: #AFD629;
  --eco-dark:  #5D9A27;
  --eco-deep:  #3F6F1C;
  --eco-mid:   #7FBF2F;
  --eco-light: #C7EB5A;
  --eco-blue:  #91D6ED;
  --white:     #ffffff;

  /* inne zmienne */
  --font-scale: 1;
  --map-overlay-alpha: 0.4;
}
/* ================================
   RESET / BASE
================================ */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  width: 100%;
  height: 100%;
}

body {
  font-family: "Montserrat", system-ui, sans-serif;
  background: var(--eco-deep);
  color: var(--white);
  overflow-x: hidden;
  overflow-y: auto;
  touch-action: pan-y;
  font-size: calc(16px * var(--font-scale));
}

/* ================================
   CANVAS – ANIMACJA
================================ */
#canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ================================
   TREŚĆ NAD ANIMACJĄ
================================ */
#app {
  position: relative;
  z-index: 2;
}

/* ================================
   SEKCJE – DESKTOP / BAZA
================================ */
.slide {
  min-height: 100vh;
  padding: 120px clamp(20px, 6vw, 120px);
  display: flex;
  align-items: center;
}

.slide.center {
  justify-content: center;
  text-align: center;
}

/* ================================
   HERO – START STRONY
   (działa z Three.js canvas)
================================ */
/* ================================
   SUB HERO – PODSTRONY (CENTER)
================================ */

.sub-hero {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;

  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    0 94%
  );
}

/* TŁO */
.sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("image/subhero.png") center / cover no-repeat;
  z-index: -2;
  opacity: 0.4;
}

/* PRZYCIEMNIENIE */
.sub-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(10, 30, 20, 0.45),
    rgba(5, 20, 15, 0.85)
  );
  z-index: -1;
}

/* TREŚĆ – PRAWDZIWE CENTROWANIE */
.sub-hero-inner {
  max-width: 1200px;
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

/* H1 */
.sub-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 0 30px rgba(0,0,0,0.8);
}

/* OPIS */
.sub-hero p {
  margin-top: 12px;
  opacity: 0.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* PRZYCISK */
.sub-hero .start-btn {
  margin-top: 28px;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 900px) {

  .sub-hero {
    min-height: 100vh;
    padding: 100px 20px 80px;
    clip-path: none;
  }

  .sub-hero h1 {
    font-size: 1.6rem;
    letter-spacing: 0.08em;
  }

  .sub-hero p {
    font-size: 0.95rem;
  }
}
/* GŁÓWNA SEKCJA */
#start {
  position: relative;
  min-height: 100vh;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
  z-index: 3; /* nad canvas */
   /* 🔥 SKOS NA DOLE */
  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    0 97%
  );
  
}

/* TŁO OBRAZ */
#start::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("image/hero-bg.png") center / cover no-repeat;
  animation: heroZoom 20s ease-in-out infinite alternate;
  z-index: -2;

  opacity: 0.5; /* ← tu zmieniasz przezroczystość */
}

/* PRZYCIEMNIENIE – HERO START */

#start::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 20, 0.6);
  z-index: -1;
}

/* TREŚĆ */
.hero-content {
  max-width: 820px;
  margin: auto;
}

.hero-logo {
  width: clamp(260px, 0vw, 420px);
  height: auto;
  margin-bottom: 32px;

}

.hero-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 820px;
  margin: 0 auto;
}

/* HIDDEN H1 – bez zmian */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ANIMACJA */
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

/* ================================
   LAYOUT 2-KOLUMNOWY
================================ */
.split {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.split.reverse {
  grid-template-columns: 1fr 1.5fr;
}

/* ================================
   TŁO SEKCJI – BAZA
================================ */
.section-bg {
  position: relative;
  overflow: hidden;

}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

}

.section-bg > * {
  position: relative;
  z-index: 1;
}

/* ================================
   TŁO – BARDZO GŁĘBOKA ZIELEŃ (MOCNY GRADIENT)
================================ */

.section-bg.bg::before {
  background: linear-gradient(
    to right,
    rgba(20, 50, 30, 0) 0%,
    rgba(30, 60, 30, 0.18) 50%,
    rgba(15, 40, 25, 0.35) 100%
  );

  clip-path: polygon(
    0 0,
    100% 2%,
    100% 100%,
    0 98%
  );
}

.section-bg.dark::before {
  background: linear-gradient(
    to right,
    rgba(10, 30, 20, 0.65) 0%,
    rgba(15, 40, 25, 0.85) 50%,
    rgba(5, 20, 15, 0.98) 100%
  );
}
/* ================================
   TYPOGRAFIA
================================ */
h1, h2, h3 {
  margin: 0;
  margin-top: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 0 30px rgba(0,0,0,0.85);
  font-weight: 300;
}

h1 { font-size: clamp(3rem, 7vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.0rem); }
h3 { font-size: 1.1rem; margin-top: 20px; }

.eco { color: var(--eco-green); }

p {
  font-weight: 300;
  text-shadow: 0 0 30px rgba(0,0,0,0.85);
  margin-top: 30px;
  max-width: 100%;
  line-height: 1.5;
  opacity: 0.65;
}

/* ================================
   OBRAZY + GLOW PREMIUM
================================ */
.big-image {
  position: relative;
  transform: translate3d(0,0,0);
  backface-visibility: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease;
  will-change: transform, opacity;
}

.big-image img {
  width: 100%;
  max-height: 750px;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 2;
}

.big-image::before {
  content: "";
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 85%;
  background: radial-gradient(
    ellipse at center,
    rgba(125, 180, 50, 0.18) 0%,   /* eco-mid */
    rgba(93, 154, 39, 0.22) 40%,   /* eco-dark */
    rgba(63, 111, 28, 0.18) 55%,   /* eco-deep */
    transparent 75%
  );
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

/* =========================================
   ANIMACJA BIG IMAGE – GLOBAL (BIO / DESZCZ / SZAMBO)
========================================= */

.big-image img,
.big-image .bio-desc {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.big-image.out img,
.big-image.out .bio-desc {
  opacity: 0;
  transform: translateY(20px);
}

.big-image.in img,
.big-image.in .bio-desc {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   MINIATURY
================================ */
.thumbs {
  display: flex;
  gap: 24px;
  margin-top: 40px;
}

.thumbs img {
  width: 90px;
  cursor: pointer;
  opacity: 0.6;
}

.thumbs img.active {
  opacity: 1;
  outline: 2px solid var(--eco-green);
}

/* ================================
   OPIS POD DUŻYM ZDJĘCIEM
================================ */
.bio-desc {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.8;
  max-width: 520px;
}

/* ================================
   CTA
================================ */
.cta {
  display: inline-block;
  margin-top: 36px;
  padding: 14px 36px;
  border-radius: 40px;
  background: var(--eco-dark);
  opacity: 0.8;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

/* ================================
   STOPKA
================================ */
footer {
  padding: 80px 10vw;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ================================
   GÓRNE MENU – SUBTELNE + EKO GLOW
================================ */

.top-nav {
  position: fixed;
  top: 26px;
  right: 40px;
  z-index: 5;
  display: flex;
  gap: 26px;
  padding: 14px 28px;
  border-radius: 60px;
  transition:
    background 0.35s ease,
    backdrop-filter 0.35s ease,
    box-shadow 0.35s ease,
    border 0.35s ease;
}

.top-nav.scrolled {
  background: rgba(20, 45, 30, 0.7); /* jaśniej niż wcześniej */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(93, 154, 39, 0.2);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35),
    0 0 20px rgba(93, 154, 39, 0.14);
}

.top-nav a {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  transition:
    color 0.35s ease,
    opacity 0.35s ease,
    text-shadow 0.35s ease;
}

.top-nav a:hover {
  color: var(--eco-green);
  opacity: 1;
  text-shadow:
    0 0 6px rgba(125, 180, 50, 0.35),  /* eco-mid */
    0 0 14px rgba(93, 154, 39, 0.2);   /* eco-dark */
}

.top-nav a.active,
.mobile-nav a.active {
  color: var(--eco-green);
  opacity: 1;
  position: relative;
}

.top-nav a.active::after,
.mobile-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--eco-green);
  box-shadow: 0 0 8px rgba(81, 203, 222, 0.5);
}
/* ================================
   PRZYCISK START – DOPASOWANY
================================ */
.start-btn {
  display: inline-block;
  margin-top: 48px;
  padding: 14px 42px;
  border-radius: 40px;

  border: 1px solid rgba(93, 154, 39, 0.5); /* eco-dark */
  color: var(--eco-green);

  text-decoration: none;
  font-size: 1.2rem; /* 🔥 poprawka */
  letter-spacing: 0.25em;
  text-transform: uppercase;

  transition: all 0.35s ease;
}

.start-btn:hover {
  background: rgba(93, 154, 39, 0.14); /* eco-dark */
  box-shadow: 
    0 0 18px rgba(93, 154, 39, 0.3),
    0 0 32px rgba(63, 111, 28, 0.2);
}

/* =================================================
   MOBILE – KOMPLETNY FIX (UKŁAD + SCROLL + VH)
================================================= */
@media (max-width: 900px) {

  /* wszystkie sekcje */
  .slide {
    min-height: auto;
    padding: 96px 6vw 120px;
    align-items: flex-start;
  }

  /* HERO – jedyna sekcja z wysokością */
  .slide.center {
    min-height: 100vh;
    align-items: center;
  }

  /* ================================
     UKŁAD – JEDNA KOLUMNA
  ================================ */

  .split,
  .split.reverse {
    grid-template-columns: 1fr !important;
    gap: 48px;
  }

  .split > div {
    order: initial;
    max-width: 100%;
  }

  .split .big-image {
    order: 2;
  }

  /* ================================
     OBRAZY – PEŁNA SZEROKOŚĆ
  ================================ */

  .big-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  /* ================================
     NAGŁÓWEK (IKONA + TEKST)
  ================================ */

  .thumbs.img {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .thumbs.img img {
    width: 64px;
    height: auto;
  }

  h2 {
    max-width: 90%;
    margin: 0 auto;
    letter-spacing: 0.08em;
    word-break: normal;
    white-space: normal;
    text-align: center;
  }

  h2 .eco {
    display: inline-block;
  }

  /* ================================
     TEKST – CZYTELNOŚĆ
  ================================ */

  h1, h2, h3, p {
    word-break: break-word;
    hyphens: auto;
  }

  /* ================================
     GALERIA
  ================================ */

  .gallery-grid{
    grid-template-columns:repeat(2, 1fr);
  }

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

  .cta {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
  }
}


/* ================================
   SEKCJA KONTAKT – PREMIUM
================================ */

.kontakt-grid {
  align-items: stretch;
}

.kontakt-info p {
  max-width: 600px;
}

.kontakt-box {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.95rem;
  opacity: 0.85;
}

.kontakt-box a {
  color: var(--eco-green);
  text-decoration: none;
}

.kontakt-box a:hover {
  text-decoration: underline;
}

/* ================================
   MAPA – WTAPIANIE W TŁO (LEPSZE ALPHA)
================================ */

.kontakt-map {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
}

.kontakt-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;

  /* delikatne przygaszenie – NIE niszczymy mapy */
  filter: brightness(0.75) contrast(1.05) saturate(0.85);
}

.kontakt-map::after {
  content: "";
  position: absolute;
  inset: 0;

  /* 🔥 klucz – robimy klimat przez overlay */
  background: linear-gradient(
    rgba(10, 30, 20, 0.45),
    rgba(20, 45, 30, 0.65)
  );

  pointer-events: none;
}

/* =========================
   PROCES – NADPISANIE LAYOUTU
========================= */

#proces{
  display:block;
  padding:120px 0;
}

/* =========================
   PROCES – KARTY
========================= */

#proces .process-cards{
  width:100%;
  max-width:1200px;
  margin:120px auto 0 auto;
  padding:0 40px;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
  gap:60px;
}

#proces .process-card {
  position: relative;
  background: linear-gradient(
    145deg,
    rgba(63, 111, 28, 0.12),   /* eco-deep */
    rgba(30, 70, 35, 0.18)
  );
  border-radius: 24px;
  padding: 100px 30px 30px 30px;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.35s ease;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

#proces .process-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(
    145deg,
    rgba(93, 154, 39, 0.22),   /* eco-dark */
    rgba(40, 80, 35, 0.28)
  );
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  border-color: rgba(93, 154, 39, 0.35);
}

/* =========================
   NUMER – LEWA STRONA
========================= */

#proces .process-number{
  position:absolute;
  top:40px;
  left:40px;

  width:54px;
  height:54px;
  border-radius:50%;
  background: rgba(93, 154, 39, 0.75); /* eco-dark + alpha */
  color:#f5f5f5;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  font-size:17px;
}

/* =========================
   IKONA – PRAWA STRONA
========================= */

#proces .process-icon{
  position:absolute;
  top:52px;        /* idealnie w osi numeru */
  right:40px;

  width:36px;
  height:36px;
  color:rgba(93, 154, 39, 0.75); /* eco-dark + alpha */
  opacity:0.9;
}

#proces .process-icon svg{
  width:100%;
  height:100%;
}
/* =========================
   IKONA – kontakt
========================= */
.icon {
  color: var(--eco-green);
  margin-right: 6px;
}
/* =========================
   TYTUŁ
========================= */

#proces .process-card h3{
  font-size:19px;
  letter-spacing:3px;
  text-transform:uppercase;
  font-weight:300;
  margin-bottom:10px;
  color:#ffffff;
}

/* =========================
   OPIS
========================= */

#proces .process-card p{
  font-weight:300;
  text-shadow:0 0 30px rgba(0,0,0,0.85);
  margin-top:30px;
  line-height:1.7;
  opacity:0.65;
  word-break:normal;
}

/* =========================
   GALERIA – FINAL STABLE
========================= */

#galeria .content{
  max-width:1200px;
  margin:0 auto;
  width:100%;
  padding:0 40px;
}

#galeria .gallery-grid{
  margin-top:60px;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
  gap:40px;
  width:100%;
}

#galeria .gallery-item{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  aspect-ratio:4 / 3;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.06);
  transition:all 0.35s ease;
  cursor:pointer;
}

#galeria .gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  opacity:0.65;
  transition:transform 0.45s ease, opacity 0.35s ease;
}

#galeria .gallery-item:hover img{
  transform:scale(1.06);
  opacity:1;
}

#lightbox{
  position:fixed;
  inset:0;
  background:rgba(10,20,15,0.94);
  backdrop-filter:blur(14px);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition:opacity 0.3s ease;
  z-index:9999;
}

#lightbox.show{
  opacity:1;
  pointer-events:auto;
}

#lightbox img{
  max-width:92%;
  max-height:88vh;
  border-radius:24px;
  box-shadow:0 40px 100px rgba(0,0,0,0.6);
}
/* =========================
   LIGHTBOX – STRZAŁKI
========================= */

.lightbox-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:60px;
  height:60px;
  border-radius:50%;
  background:rgba(0,0,0,0.35);
  backdrop-filter:blur(8px);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:all 0.3s ease;
  z-index:10000;
}

.lightbox-arrow:hover{
  background:rgba(0,0,0,0.55);
  box-shadow:0 0 20px rgba(12, 97, 129, 0.35);
}

.lightbox-arrow::before{
  content:"";
  width:14px;
  height:14px;
  border-top:3px solid var(--eco-green);
  border-right:3px solid var(--eco-green);
  transform:rotate(45deg);
}

.lightbox-prev{
  left:40px;
}

.lightbox-prev::before{
  transform:rotate(-135deg);
}

.lightbox-next{
  right:40px;
}

/* =========================
   CENNIK
========================= */

#cennik .content{
  max-width:1200px;
  margin:0 auto;
  padding:0 40px;
}

.price-grid{
  margin-top:60px;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:40px;
}

.price-card {
  background: rgba(20, 45, 30, 0.35); /* eco-deep */
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(93, 154, 39, 0.15); /* eco-dark */
}

.price-card h3 {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.price-card table {
  width: 100%;
  border-collapse: collapse;
}

.price-card td {
  padding: 14px 0;
  font-size: 15px;
  font-weight: 300;
  opacity: 0.75;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.price-card td:last-child {
  text-align: right;
}

/* SUMA */
.price-card .sum td {
  border: none;
  font-weight: 700;
  color: var(--eco-green); /* zamiast niebieskiego */
  padding-top: 20px;
}

@media(max-width:900px){
  .price-grid{
    grid-template-columns:1fr;
  }
}
/* ================================
   TOUCH / SCROLL – BEZ ZMIAN ANIMACJI
================================ */

body {
  touch-action: auto;
}

#canvas {
  touch-action: none;
}

/* ================================
   MOBILE MENU – HAMBURGER
================================ */

.mobile-nav-toggle {
  display: none;
}

.mobile-nav {
  display: none;
}

/* ================================
   MOBILE MENU – AKTYWNE
================================ */
@media (max-width: 900px) {

  .mobile-nav-toggle {
    display: flex;
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 6;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--eco-green);
    background: rgba(0,0,0,0.35);
    border-radius: 50%;
    backdrop-filter: blur(6px);
    cursor: pointer;
  }

  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 5;
    background: rgba(10, 30, 22, 0.92);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  .mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.85;
  }

  .mobile-nav a:hover {
    color: var(--eco-green);
  }

  .mobile-nav.open {
    opacity: 1;
    pointer-events: auto;
  }

  .top-nav {
    display: none;
  }
}
/* =================================================
   GLOBALNA SZEROKOŚĆ WSZYSTKICH SEKCJI
================================================= */

.slide > *,
#proces .process-cards,
#galeria .content,
#cennik .content,
.kontakt-grid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* =================================================
   WYRÓWNANIE KONTAKT DO RESZTY
================================================= */

.kontakt-grid {
  padding-left: 40px;
  padding-right: 40px;
}

/* =================================================
   MOBILE – ZERO WYJEŻDŻANIA POZA EKRAN
================================================= */

@media (max-width:900px){

  .slide {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .kontakt-grid,
  #proces .process-cards,
  #galeria .content,
  #cennik .content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .thumbs {
    flex-wrap: wrap;
    justify-content: center;
  }

  .gallery-grid {
    width: 100%;
  }

  img {
    max-width: 100%;
    height: auto;
  }
}
/* =================================================
   PROCES - IKONY
================================================= */
.process-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.process-icon {
  width: 32px;
  height: 32px;
  color: rgba(255,255,255,0.35); /* elegancko */
}
/* ============================================
   PRELOADER – DOPASOWANY DO SYSTEMU ZIELENI
============================================ */

#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;

  background: linear-gradient(
    135deg,
    #0a1e14,  /* bardzo ciemna zieleń */
    #163825   /* eco-deep / dark */
  );

  display: flex;
  align-items: center;
  justify-content: center;

  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

/* LOGO */
.preloader-logo {
  width: 140px;   /* nie za duże */
  height: auto;
  margin-bottom: 30px;
  animation: logoFade 1.2s ease-in-out infinite alternate;
}

/* subtelne pulsowanie */
@keyframes logoFade {
  from { opacity: 0.7; transform: scale(0.98); }
  to   { opacity: 1;   transform: scale(1.02); }
}

/* linia ładowania */
.loader-line {
  width: 160px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.loader-line::after {
  content: "";
  position: absolute;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--eco-green);
  animation: loading 1.5s linear infinite;
}

@keyframes loading {
  to { left: 100%; }
}

/* ================================
   MAPA PEŁNA SZEROKOŚĆ – DOPASOWANA
================================ */

.kontakt-map-full {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.kontakt-map-full iframe {
  width: 100%;
  height: 100%;
  border: 0;

  /* lekko przygaszona, ale czytelna */
  filter: brightness(0.85) contrast(1.05) saturate(1);
}

/* 🔥 overlay robi klimat */
.kontakt-map-full::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    rgba(67, 153, 56, 0.087),
    rgba(5, 44, 10, 0.591)
  );

  pointer-events: none;
}

@media (max-width: 900px) {
  .kontakt-map-full {
    height: 320px;
  }
}
/* ================================
   PRAWA STRONA KONTAKT – FORMULARZ
================================ */

.kontakt-form-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Nagłówek */
.kontakt-form-side h2 {
  margin-bottom: 40px;
}

/* Wrapper */
.kontakt-form-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

/* Formularz */
.kontakt-form {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Pola */
.kontakt-form input,
.kontakt-form textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(93, 154, 39, 0.25); /* eco-dark */
  border-radius: 14px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 14px;
  color: #ffffff;
  transition: all 0.25s ease;
}

/* Placeholder */
.kontakt-form input::placeholder,
.kontakt-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Textarea */
.kontakt-form textarea {
  resize: none;
}

/* Hover */
.kontakt-form input:hover,
.kontakt-form textarea:hover {
  border-color: rgba(125, 180, 50, 0.35);
}

/* Focus */
.kontakt-form input:focus,
.kontakt-form textarea:focus {
  outline: none;
  border-color: var(--eco-green);

  box-shadow:
    0 0 0 2px rgba(93, 154, 39, 0.2),
    0 0 12px rgba(125, 180, 50, 0.2);
}

/* Przycisk */
.kontakt-form .cta {
  margin-top: 12px;
  align-self: flex-start;
}
/* ================================
     STYL LISTY
  ================================ */
  /* ================================
   LISTY – GLOBALNY STYL (SPÓJNY)
================================ */

section ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

section ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;

  font-size: 14px;
  color: rgb(178, 208, 171);
  line-height: 1.5;
  opacity: 0.9;
}

/* ✔ zamiast bulleta */
section ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;

  color: var(--eco-green);
  font-weight: 600;
}
/* ================================
   FIX FORMULARZA – KOMUNIKAT
   ================================ */

/* komunikat nad formularzem */
.form-status {
  margin: 10px 0 20px;
  font-size: 14px;
  font-weight: 500;
}

/* sukces */
.form-status.success {
  color: #2e7d32;
}

/* błąd */
.form-status.error {
  color: #c62828;
}
/* ================================
   COOKIE BAR
================================ */

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99999; /* ważne przy Twoim canvas */

  background: rgba(10, 30, 20, 0.95);
  backdrop-filter: blur(10px);

  border-top: 1px solid rgba(93, 154, 39, 0.2);

  padding: 12px 20px;

  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.cookie-bar.show {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1200px;
  margin: auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  font-size: 13px;
  opacity: 0.8;
}

.cookie-btn {
  background: var(--eco-dark);
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 12px;
}

@media (max-width: 900px) {
  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
}