/*
Theme Name: NOWY MOTYW PARKIETY
Author: Kamil
Version: 3.0
*/

:root{
  --brand-900:#004731;
  --brand-500:#9EC2A6;
  --cream:#FBF9F3;
  --white:#FFFFFF;
  --brown:#503120;
  --text-900:#0f1412;
  --text-700:#3c4a45;
  /* hero — ciepłe biele i stonowany szałwia */
  --hero-title:#FAF7F2;
  --hero-accent:#C8DCCD;
  --hero-stat-num:#B5D4BE;
  --hero-muted:rgba(255, 255, 255, 0.82);
  --hero-eyebrow-border:rgba(158, 194, 166, 0.45);
  --hero-bg-image: url("images/hero-home-1600.webp");
  --hero-bg-position: center 42%;
}


* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: "Inter", sans-serif; color: var(--text-900); background: var(--cream); }
h1, h2, h3 { font-family: "Playfair Display", serif; }


.container { max-width: 1200px; margin: auto; padding: 0 20px; }

.site-header{
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 15px 0; transition: all 0.35s ease;
}
.site-header.scrolled{
  background: rgba(0,71,49,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner{
  display: flex; align-items: center; max-width: 1280px;
  margin: auto; padding: 0 40px;
}
.hero{
  width: 100%;
  min-height: 100svh;
  min-height: 100dvh;
  height: auto;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding:
    clamp(5.5rem, 11vh, 8rem)
    clamp(2.5rem, 8vw, 6.5rem)
    clamp(3rem, 7vh, 5.5rem);
  text-align: center;
  position: relative;
  color: #fff;
  background-color: #1a2e24;
  background-image: var(--hero-bg-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: var(--hero-bg-position);
  background-attachment: scroll;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* Pierwszy scroll z hero płynnie „zaskakuje” na początek sekcji o nas.
   Proximity = działa tylko w pobliżu, nie blokuje swobodnego scrollu niżej. */
html{
  scroll-snap-type: y proximity;
}
.hero-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08));
  transition: background 0.6s ease;
}
.hero-overlay.scrolled{
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.14));
}
.hero-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vh, 3rem);
  width: 100%;
  max-width: min(1080px, 96vw);
  margin-inline: auto;
  padding: clamp(1rem, 2.5vh, 2rem) clamp(1.5rem, 6vw, 5rem);
  position: relative;
  z-index: 2;
  transform: none;
}
.hero-eyebrow{
  display: inline-block;
  border: 1px solid var(--hero-eyebrow-border);
  padding: 9px 24px;
  border-radius: 30px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}
.hero h1{
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.25rem, 6.5vw, 86px);
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  color: var(--hero-title);
}
.hero-title-line{
  display: block;
  margin-bottom: 0.08em;
}
.hero-title-line:last-child{
  margin-bottom: 0;
}
.hero-accent{
  margin: clamp(-1.75rem, -3.5vh, -2.25rem) 0 0;
  padding: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.4rem, 4.2vw, 62px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  color: var(--hero-accent);
}
.hero-text{
  font-size: 16px;
  line-height: 1.7;
  max-width: 650px;
  margin: 0;
  color: #e2e2e2;
}
.hero-buttons{
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2.5vw, 26px);
  justify-content: center;
  width: 100%;
  max-width: 600px;
  margin: 0;
  padding-top: clamp(0.25rem, 1vh, 0.75rem);
}
.hero .btn-main,
.hero .btn-ghost{
  padding: 18px 40px;
  font-size: 0.95rem;
}
.btn-main{
  background: var(--brand-900); padding: 16px 36px; color: #fff; text-decoration: none;
  font-weight: 600; border-radius: 6px; transition: all 0.3s ease;
}
.btn-main:hover{ transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,0,0,0.25); }
.btn-ghost{
  border: 1px solid rgba(255,255,255,0.8); padding: 16px 36px; color: #fff;
  text-decoration: none; border-radius: 6px;
}
.hero .btn-main:hover,
.hero .btn-ghost:hover{
  transform: translateY(-2px);
}
.hero-stats{
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: clamp(1rem, 2.5vh, 2rem) clamp(0.5rem, 3vw, 2rem) 0;
}
.hero-stat{
  flex: 1 1 160px;
  text-align: center;
  padding: 0 clamp(0.75rem, 3vw, 2rem);
}
.hero-stat h3{
  font-family: "Inter", system-ui, sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--hero-stat-num);
  margin: 0 0 6px;
  line-height: 1.05;
  letter-spacing: 0.04em;
}
.hero-stat p{
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
}

.benefits-bar{
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  padding: clamp(22px, 2.8vw, 30px) clamp(20px, 2.5vw, 32px);
  margin: clamp(-20px, -1vw, 5px) auto clamp(40px, 5vw, 64px);
  width: 100%;
  max-width: none;
  background: #fff;
  border: 1px solid rgba(0, 71, 49, 0.07);
  border-radius: 18px;
  box-shadow:
    0 1px 2px rgba(15, 20, 18, 0.04),
    0 30px 60px -28px rgba(15, 20, 18, 0.18);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.benefits-bar.is-visible{ opacity: 1; transform: translateY(0); }


/* Linia + kropka kotwiczone do górnej krawędzi karty (nie „wiszą” w połowie przerwy) */
.benefits-bar::before{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 1px;
  height: clamp(40px, 6vh, 88px);
  background: linear-gradient(180deg, transparent, var(--brand-500));
}
.benefits-bar::after{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-500);
  box-shadow: 0 0 0 6px rgba(158, 194, 166, 0.18);
}


.benefit{
  position: relative;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: transform 0.35s ease;
}
.benefit + .benefit::before{
  content: "";
  position: absolute;
  top: 8px; bottom: 8px;
  left: calc(clamp(28px, 3.5vw, 56px) * -0.5);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0,71,49,0.12), transparent);
}
.benefit:hover{ transform: translateY(-4px); }
.benefit-icon{
  width: 40px; height: 40px; min-width: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(158,194,166,0.22);
  border-radius: 12px;
  color: var(--brand-900);
  transition: background 0.35s ease, transform 0.35s ease;
}
.benefit:hover .benefit-icon{
  background: rgba(158,194,166,0.4);
  transform: scale(1.05);
}
.benefit-icon svg{ width: 22px; height: 22px; stroke-width: 1.8; display: block; }
.benefit h4{ font-size: 14px; margin-bottom: 4px; color: #1c4a3b; font-weight: 600; letter-spacing: 0.01em; line-height: 1.3; }
.benefit p{ font-size: 12px; line-height: 1.45; color: #6f7c75; max-width: none; }


@media (prefers-reduced-motion: reduce){
  .benefits-bar{ opacity: 1; transform: none; transition: none; }
  .benefit, .benefit-icon{ transition: none; }
  .about-photo,
  .about-badge{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .about-reveal,
  .about-features .feature{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .offer-home-top3.is-visible .offer-home-top3__reveal,
  .offer-home-top3.is-visible .offer-home-top3__card{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .tst .tst-head,
  .tst .tst-slider{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .knowledge-base-section .knowledge-header,
  .knowledge-base-section .knowledge-grid{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .knowledge-base-section .knowledge-card{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .faq-section .faq-header,
  .faq-section .faq-item,
  .faq-section .faq-more{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  body.home .contact-section .contact-header,
  body.home .contact-section .contact-info-card,
  body.home .contact-section .contact-form-wrapper{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .tst-pagination__btn,
  .tst-pagination__vis{
    transition: none !important;
  }
  .tst-pagination__btn:active{
    transform: none !important;
  }
  .offer-home-top3__card img{
    transform: none !important;
    transition: none !important;
  }
  html{ scroll-snap-type: none; }
}


.about-section{
  position: relative;
  background: var(--cream);
  scroll-snap-align: start;
}
.about-grid{
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) 0.85fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.about-images--gallery{
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "tile-a tile-b"
    "hero hero";
  gap: clamp(1rem, 1.6vw, 1.25rem);
  align-items: stretch;
  width: 100%;
  max-width: none;
  min-height: 0;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
}

.about-photo{
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  min-width: 0;
  opacity: 0;
  transform: translateY(32px) scale(0.97);
  transition:
    opacity 1s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.about-photo--tile-a{
  grid-area: tile-a;
}
.about-photo--tile-b{
  grid-area: tile-b;
  transition-delay: 0.14s;
}
.about-photo--hero{
  grid-area: hero;
  transition-delay: 0.26s;
}
.about-grid.is-visible .about-photo{
  opacity: 1;
  transform: translateY(0) scale(1);
}

.about-images--gallery .about-photo__media{
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  border: none;
  background: #e8eeea;
  box-shadow:
    0 2px 8px rgba(0, 71, 49, 0.05),
    0 16px 34px rgba(0, 71, 49, 0.1);
  transition: box-shadow 0.45s ease, transform 0.45s ease;
}
.about-section.fullscreen-section .about-images--gallery{
  align-items: stretch;
}
.about-section.fullscreen-section .about-photo--tile-a .about-photo__media,
.about-section.fullscreen-section .about-photo--tile-b .about-photo__media{
  aspect-ratio: 5 / 6;
  height: auto;
  min-height: 0;
  max-height: clamp(210px, 22vw, 290px);
  border-radius: 18px;
}
.about-photo--hero .about-photo__media{
  aspect-ratio: 2 / 1;
  min-height: clamp(250px, 30vw, 360px);
  border-radius: 18px;
  box-shadow:
    0 4px 12px rgba(0, 71, 49, 0.06),
    0 24px 52px rgba(0, 71, 49, 0.13);
}
.about-photo--hero .about-photo__media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52%, rgba(0, 71, 49, 0.22) 100%);
  pointer-events: none;
  z-index: 1;
}
.about-section.fullscreen-section .about-photo--tile-a .about-photo__media img,
.about-section.fullscreen-section .about-photo--tile-b .about-photo__media img{
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: none;
}
.about-section.fullscreen-section .about-photo--tile-a .about-photo__media img{
  object-position: center 46%;
}
.about-section.fullscreen-section .about-photo--tile-b .about-photo__media img{
  object-position: center 48%;
}
.about-photo--hero .about-photo__media img{
  object-position: center 40%;
}
.about-photo__media img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.about-grid.is-visible .about-photo:hover .about-photo__media{
  transform: translateY(-3px);
  box-shadow:
    0 6px 14px rgba(0, 71, 49, 0.07),
    0 22px 44px rgba(0, 71, 49, 0.14);
}
.about-grid.is-visible .about-photo--hero:hover .about-photo__media{
  box-shadow:
    0 8px 18px rgba(0, 71, 49, 0.08),
    0 30px 58px rgba(0, 71, 49, 0.16);
}
.about-grid.is-visible .about-photo:hover .about-photo__media img{
  transform: scale(1.05);
}
.about-grid.is-visible .about-photo--tile-a:hover .about-photo__media img,
.about-grid.is-visible .about-photo--tile-b:hover .about-photo__media img{
  transform: scale(1.02);
}

.about-photo__media--placeholder{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(180px, 28vw, 240px);
  background:
    linear-gradient(145deg, #eef3f0 0%, #e2ebe6 100%);
  border-style: dashed;
  border-color: rgba(0, 71, 49, 0.22);
}
.about-photo--hero .about-photo__media--placeholder{
  min-height: clamp(210px, 44vw, 280px);
}

.about-photo__placeholder{
  margin: 0;
  padding: 0 1.25rem;
  max-width: 12rem;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  color: rgba(0, 71, 49, 0.48);
}

.about-img-caption{
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  margin: 0;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 71, 49, 0.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.about-img-caption strong{
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #004731;
  line-height: 1.25;
}

.about-img-caption span{
  display: block;
  margin-top: 0.15rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(12, 18, 16, 0.62);
}
.about-photo--hero .about-badge,
.about-photo--hall .about-badge{
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: auto;
  background: rgba(0, 71, 49, 0.9);
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px) scale(0.94);
  transition: opacity 0.7s ease 0.5s, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.5s;
  z-index: 2;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.about-grid.is-visible .about-photo--hero .about-badge,
.about-grid.is-visible .about-photo--hall .about-badge{
  opacity: 1;
  transform: translateY(0) scale(1);
}
.about-badge__year{
  font-size: 26px;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.about-badge__est{
  display: block;
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.about-eyebrow{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.about-chapter{
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--brand-900);
  padding: 7px 11px;
  border: 1px solid rgba(0, 71, 49, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.65);
}
.about-sub{
  font-size: 12px;
  letter-spacing: 3px;
  color: #6f8f86;
  margin: 0;
  text-transform: uppercase;
}
.about-content h2{
  font-family: Rubik, sans-serif;
  font-size: 42px;
  line-height: 1.2;
  color: var(--brand-900);
  margin-bottom: 18px;
}
.about-headline-accent{
  display: block;
  margin-top: 0.12em;
  color: #386e4c;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 200;
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  font-style: normal;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.about-lead, .about-text{ font-size: 17px; line-height: 1.7; color: #477e5d; }
.about-text{ max-width: 520px; }
.about-lead strong, .about-text strong{ color: var(--brand-900); font-weight: 600; }

.about-reveal{
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.about-grid.is-visible .about-reveal{
  opacity: 1;
  transform: translateY(0);
}
.about-reveal--eyebrow{ transition-delay: 0.06s; }
.about-reveal--title{ transition-delay: 0.14s; }
.about-reveal--lead{ transition-delay: 0.22s; }
.about-reveal--text{ transition-delay: 0.3s; }

.about-features{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 16px);
  margin-top: clamp(24px, 3.5vw, 40px);
  width: 100%;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.about-features.is-visible{
  opacity: 1;
  transform: translateY(0);
}
.feature{
  position: relative;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(0, 71, 49, 0.06);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.about-features.is-visible .feature:nth-child(1){ opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
.about-features.is-visible .feature:nth-child(2){ opacity: 1; transform: translateY(0); transition-delay: 0.14s; }
.about-features.is-visible .feature:nth-child(3){ opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.about-features.is-visible .feature:nth-child(4){ opacity: 1; transform: translateY(0); transition-delay: 0.26s; }
.feature:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
  border-color: rgba(0, 71, 49, 0.1);
}
.about-features.is-visible .feature:nth-child(1):hover,
.about-features.is-visible .feature:nth-child(2):hover,
.about-features.is-visible .feature:nth-child(3):hover,
.about-features.is-visible .feature:nth-child(4):hover{
  transform: translateY(-4px);
}
.feature-num{
  display: none;
}
.feature-icon{
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 10px;
  background: rgba(158,194,166,0.28);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-900);
  transition: background 0.35s ease, transform 0.35s ease;
}
.feature:hover .feature-icon{
  background: rgba(158, 194, 166, 0.42);
  transform: scale(1.06);
}
.feature-text h4{
  font-family: "Inter", sans-serif;
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--brand-900);
  font-weight: 600;
  line-height: 1.3;
}
.feature-text p{
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(0, 71, 49, 0.72);
}


.offer-section{ background: #e8efe9; padding: 120px 0; }
.offer-header{ text-align: center; max-width: 720px; margin: auto; margin-bottom: 70px; }
.offer-header h2{ font-size: 44px; margin-bottom: 20px; color: #1f4d3d; }
.offer-header p{ color: #5f6f64; line-height: 1.7; }


.offer-page{ padding: 160px 0 120px; background: #004731; }
.offer-page-header{ text-align: center; max-width: 720px; margin: auto; margin-bottom: 80px; }
.offer-page-header h1{ font-size: 52px; color: #1f4d3d; margin-bottom: 20px; }
.offer-page-header p{ color: #5f6f64; line-height: 1.7; }
.offer-grid{ display: grid; grid-template-columns: repeat(3,1fr); gap: 34px; }

.offer-box{
  position: relative; background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08); transition: all 0.35s ease;
}
.offer-box:hover{ transform: translateY(-10px); box-shadow: 0 25px 60px rgba(0,0,0,0.15); }
.offer-img{ overflow: hidden; }
.offer-img img{
  width: 100%; height: 240px; object-fit: cover; transition: transform 0.6s ease;
}
.offer-box:hover img{ transform: scale(1.08); }
.offer-box-content{ padding: 24px; }
.offer-cat{ font-size: 11px; letter-spacing: 2px; color: #7c9186; display: block; margin-bottom: 10px; }
.offer-box h3{ font-size: 21px; margin-bottom: 10px; color: #1f4d3d; }
.offer-box p{ font-size: 14px; line-height: 1.6; margin-bottom: 14px; color: #5f6f64; }
.offer-box a{ color: #0c5c3c; font-weight: 600; text-decoration: none; }
.offer-badge{
  position: absolute; top: 16px; left: 16px; background: var(--brand-900); color: #fff;
  font-size: 11px; padding: 6px 12px; border-radius: 6px; letter-spacing: 1px;
}
.offer-badge.popular{ background: var(--brand-500); color: var(--brand-900); }
.offer-badge.premium{ background: var(--brown); }
.offer-page-cta{
  margin-top: 100px; background: #fff; padding: 60px; border-radius: 14px; text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.offer-page-cta h2{ font-size: 34px; margin-bottom: 15px; color: #1f4d3d; }
.offer-page-cta p{ color: #6a756e; margin-bottom: 25px; }

.tst{
  background: #004731;
  color: #fff;
  padding: 96px 0 88px;
  position: relative;
  overflow: hidden;
}

.tst::before,
.tst::after{
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(158, 194, 166, 0.08);
}

.tst::before{ left: -120px; top: -80px; }
.tst::after{ right: -120px; bottom: -80px; }

.tst-head{ text-align: center; margin-bottom: clamp(28px, 3.6vw, 42px); }
.tst-head-row{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.tst-chapter{
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #fff;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}
.tst-eyebrow{
  display: inline-block;
  letter-spacing: 3px;
  font-size: 13px;
  color: #9EC2A6;
  margin: 0;
  text-transform: uppercase;
}
.tst-head h2{
  font-family: "Inter", sans-serif;
  font-size: clamp(1.82rem, 3.75vw, 2.62rem);
  font-weight: 700;
  line-height: 1.17;
  color: #fff;
}

.tst-slider{ max-width: 900px; margin: 0 auto; text-align: center; overflow: hidden; }
.tst-slider .swiper-wrapper{ align-items: center; justify-content: center; }
.tst-slider .swiper-slide{
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  transform: none !important;
  filter: none !important;
  opacity: 1 !important;
}

.tst-card{
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tst-quote-icon{ margin: 15px auto 12px; opacity: 0.74; }
.tst-quote-icon svg{
  width: 60px;
  height: 60px;
  display: block;
}
.tst-stars{
  color: #9EC2A6;
  letter-spacing: 5px;
  font-size: 16px;
  margin-bottom: 18px;
}
.tst-quote{
  font-size: clamp(1.08rem, 2.15vw, 1.34rem);
  line-height: 1.8;
  font-style: italic;
  color: #FBF9F3;
  margin-bottom: 24px;
  max-width: 51ch;
}
.tst-author{
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.015em;
}
.tst-meta{
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  margin-top: 6px;
  letter-spacing: 0.03em;
}

.tst-nav{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 26px auto 0;
}
.tst-prev,
.tst-next{
  width: 36px;
  height: 36px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.22);
  background: transparent;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.tst-pagination{
  flex: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(12px, 2.8vw, 20px);
  max-width: 100%;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

.tst-pagination__btn{
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 4px;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 0;
  opacity: 1;
  transition: opacity 0.4s ease;
}
.tst-pagination__btn:focus{
  outline: none;
}
.tst-pagination__btn:focus-visible{
  outline: 1px solid rgba(255, 255, 255, 0.5);
  outline-offset: 6px;
}
.tst-pagination__btn:active{
  opacity: 0.75;
}

.tst-pagination__vis{
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  border: none;
  box-shadow: none;
  opacity: 1;
  transition:
    width 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    height 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.5s ease,
    opacity 0.45s ease;
}

.tst-pagination__btn:hover .tst-pagination__vis{
  background: rgba(255, 255, 255, 0.38);
}

.tst-pagination__btn.is-active .tst-pagination__vis{
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: rgba(251, 249, 243, 0.88);
}

.tst-pagination__btn.is-active:hover .tst-pagination__vis{
  background: rgba(251, 249, 243, 0.98);
}


@media (max-width: 768px){
  .tst-head h2{ font-size: clamp(1.5rem, 5.6vw, 1.95rem); }
  .tst-quote{ font-size: clamp(1.02rem, 3.5vw, 1.16rem); margin-bottom: 18px; }
  .tst-author{ font-size: 15px; }
  .tst-meta{ font-size: 13px; }
  .tst-stars{ font-size: 15px; letter-spacing: 4px; }

  /* Szybsze wejście sekcji przy scrollu — mniej „pustego” ekranu */
  .benefits-bar{
    transform: translateY(12px);
    transition: opacity 0.42s ease, transform 0.42s ease;
  }
  .about-photo,
  .about-badge{
    transition-duration: 0.45s, 0.45s;
  }
  .about-reveal,
  .about-features .feature{
    transition-duration: 0.42s, 0.42s;
  }
  .about-features.is-visible .feature:nth-child(1){ transition-delay: 0.04s; }
  .about-features.is-visible .feature:nth-child(2){ transition-delay: 0.08s; }
  .about-features.is-visible .feature:nth-child(3){ transition-delay: 0.12s; }
  .about-features.is-visible .feature:nth-child(4){ transition-delay: 0.16s; }
  .tst .tst-head,
  .tst .tst-slider{
    transform: translateY(10px);
    transition-duration: 0.42s, 0.42s;
  }
  .tst .tst-slider{ transition-delay: 0.03s; }
  .offer-home-top3__reveal,
  .offer-home-top3__card{
    transform: translateY(10px);
    transition-duration: 0.42s, 0.42s;
  }
  .offer-home-top3.is-visible .offer-home-top3__reveal--1{ transition-delay: 0.02s; }
  .offer-home-top3.is-visible .offer-home-top3__reveal--2{ transition-delay: 0.06s; }
  .offer-home-top3.is-visible .offer-home-top3__reveal--3{ transition-delay: 0.1s; }
  .offer-home-top3.is-visible .offer-home-top3__card:nth-child(1){ transition-delay: 0.08s; }
  .offer-home-top3.is-visible .offer-home-top3__card:nth-child(2){ transition-delay: 0.12s; }
  .offer-home-top3.is-visible .offer-home-top3__card:nth-child(3){ transition-delay: 0.16s; }
  .offer-home-top3.is-visible .offer-home-top3__card:nth-child(4){ transition-delay: 0.2s; }
  .knowledge-base-section .knowledge-header,
  .knowledge-card{
    transform: translateY(12px) scale(0.99);
    transition-duration: 0.42s, 0.42s;
  }
  .knowledge-base-section.is-visible .knowledge-card:nth-child(1){ transition-delay: 0.02s; }
  .knowledge-base-section.is-visible .knowledge-card:nth-child(2){ transition-delay: 0.05s; }
  .knowledge-base-section.is-visible .knowledge-card:nth-child(3){ transition-delay: 0.08s; }
  .knowledge-base-section.is-visible .knowledge-card:nth-child(4){ transition-delay: 0.11s; }
  .knowledge-base-section.is-visible .knowledge-card:nth-child(5){ transition-delay: 0.14s; }
  .knowledge-base-section.is-visible .knowledge-card:nth-child(6){ transition-delay: 0.17s; }
  .faq-section .faq-header,
  .faq-item{
    transform: translateY(10px);
    transition-duration: 0.38s, 0.38s;
  }
  .faq-section.is-visible .faq-item:nth-child(1){ transition-delay: 0.02s; }
  .faq-section.is-visible .faq-item:nth-child(2){ transition-delay: 0.05s; }
  .faq-section.is-visible .faq-item:nth-child(3){ transition-delay: 0.08s; }
  .faq-section.is-visible .faq-item:nth-child(4){ transition-delay: 0.11s; }
  .faq-section.is-visible .faq-item:nth-child(5){ transition-delay: 0.14s; }
  .faq-section.is-visible .faq-item:nth-child(6){ transition-delay: 0.17s; }
  body.home .contact-section .contact-header,
  body.home .contact-section .contact-info-card,
  body.home .contact-section .contact-form-wrapper{
    transform: translateY(10px);
    transition-duration: 0.4s, 0.4s;
  }
  body.home .contact-section.is-visible .contact-info-card{ transition-delay: 0.04s; }
  body.home .contact-section.is-visible .contact-form-wrapper{ transition-delay: 0.08s; }
}

/* Wejście sekcji opinii przy scrollu (jak benefits / about / oferta) */
.tst .tst-head{
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.tst .tst-slider{
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.82s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.82s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: 0.1s;
  will-change: opacity, transform;
}
.tst.is-visible .tst-head,
.tst.is-visible .tst-slider{
  opacity: 1;
  transform: translateY(0);
}


.where-section{ background: #f6f6f6; padding: 100px 0; text-align: center; }


.info-section{
  position: relative; padding: 120px 0;
  background: url("https://images.unsplash.com/photo-1582582429416-6e6e9f5fcd3b") center/cover no-repeat;
  color: #fff;
}
.info-overlay{ position: absolute; inset: 0; background: rgba(0,0,0,0.75); }
.info-grid{ position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 60px; }
.info-col h4{ margin-bottom: 20px; font-size: 14px; letter-spacing: 2px; }
.info-col ul{ list-style: none; }
.info-col li{ margin-bottom: 10px; }
.info-col a{ color: #9db79d; text-decoration: none; }


.site-footer{ background: #111; color: #fff; text-align: center; padding: 40px 0; }


.swiper{ cursor: grab; }
.swiper-wrapper{ align-items: center; }
.swiper-pagination{ margin-top: 20px; }

.offer-slider{
  position: relative; overflow: visible; padding: 60px 0;
}
.offer-slider .swiper-slide{
  width: 75%; max-width: 320px; opacity: 0.35; transform: scale(0.82);
  filter: blur(3px); transition: all 0.35s ease;
}
.offer-slider .swiper-slide-active{
  opacity: 1; transform: scale(1.12); filter: blur(0); z-index: 3;
}
.offer-slider .swiper-slide-prev,
.offer-slider .swiper-slide-next{
  opacity: 0.7; transform: scale(0.9); filter: blur(1px);
}
.offer-slider .swiper-slide-prev,
.offer-slider .swiper-slide-next{
  opacity: 0.7; transform: scale(0.9) rotateY(10deg); filter: blur(1px);
}
.offer-slider .swiper-slide-next{ transform: scale(0.9) rotateY(-10deg); }


.slider-hint{
  display: none; align-items: center; justify-content: center; gap: 10px;
  margin-top: 22px; font-size: 18px; letter-spacing: 0.08em; color: var(--brand-900); font-weight: 500;
}
.slider-hint .arrow{ display: inline-block; opacity: 0.6; }
.slider-hint .left{ animation: swipeLeft 2s ease-in-out infinite; }
.slider-hint .right{ animation: swipeRight 2s ease-in-out infinite; }

@keyframes swipeLeft{
  0%{ transform: translateX(0); opacity: 0.4; }
  50%{ transform: translateX(-10px); opacity: 1; }
  100%{ transform: translateX(0); opacity: 0.4; }
}
@keyframes swipeRight{
  0%{ transform: translateX(0); opacity: 0.4; }
  50%{ transform: translateX(10px); opacity: 1; }
  100%{ transform: translateX(0); opacity: 0.4; }
}


@media (max-width: 1000px){
  .offer-grid{ grid-template-columns: 1fr 1fr; gap: 24px; }
  .offer-page{ padding: 140px 0 90px; }
  .offer-page-header h1{ font-size: 40px; }
  .offer-img img{ height: 220px; }
  .offer-page-cta{ padding: 40px; }
}

@media (max-width: 768px){
  html{
    overflow-x: hidden;
    scroll-snap-type: y proximity;
  }
  body{
    overflow-x: hidden;
  }
  body.home{
    margin-top: 0;
  }
  .container{ padding: 0 22px; }
  .header-inner{ padding: 0 20px; }
  .hero{
    background-image: var(--hero-bg-image);
    background-position: var(--hero-bg-position);
    background-size: cover;
    flex-shrink: 0;
    min-height: 100svh;
    min-height: 100dvh;
    height: auto;
    max-height: none;
    overflow: visible;
    padding:
      calc(var(--mobile-header-height, 60px) + env(safe-area-inset-top, 0px) + 1rem)
      1.15rem
      calc(1.5rem + env(safe-area-inset-bottom, 0px));
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    isolation: isolate;
    z-index: 2;
  }
  .hero-container{
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(0.95rem, 2.8vh, 1.35rem);
    width: 100%;
    max-width: 100%;
    min-height: 0;
    padding: 0.35rem 0.45rem;
    transform: none;
  }
  .hero-eyebrow{
    max-width: 24rem;
    padding: 11px 26px;
    font-size: 15px;
    letter-spacing: 0.08em;
    line-height: 1.32;
    text-wrap: balance;
  }
  .hero h1{
    font-size: clamp(2.55rem, 12.5vw, 3.55rem);
    font-weight: 500;
    line-height: 1.06;
    width: 100%;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
  }
  .hero-title-line{
    margin-bottom: 0.18em;
  }
  .hero-accent{
    font-size: clamp(1.55rem, 7.2vw, 1.95rem);
    line-height: 1.2;
    margin-top: -0.75rem;
    max-width: 24rem;
    text-wrap: balance;
    text-shadow: 0 1px 26px rgba(0, 0, 0, 0.34);
  }
  .hero-buttons{
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: min(25rem, 100%);
    margin: 0;
    padding-top: 0.1rem;
  }
  .hero-buttons a{
    width: 100%;
    margin-inline: auto;
  }
  .hero .btn-main,
  .hero .btn-ghost{
    padding: 19px 30px;
    font-size: 1.12rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    line-height: 1.24;
    border-radius: 10px;
  }
  .hero-stats{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem 0.35rem;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    margin-top: 0.35rem;
    padding: 0.9rem 0 0;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
  .hero-stat{
    flex: none;
    min-width: 0;
    padding: 0 0.45rem;
    position: relative;
  }
  .hero-stat:not(:last-child)::after{
    content: "";
    position: absolute;
    top: 6%;
    right: 0;
    width: 1px;
    height: 88%;
    background: rgba(255, 255, 255, 0.16);
    pointer-events: none;
  }
  .hero-stat h3{
    font-size: clamp(1.5rem, 6vw, 1.85rem);
    margin: 0 0 0.42rem;
    line-height: 1.05;
    letter-spacing: 0.03em;
    text-shadow: 0 1px 22px rgba(0, 0, 0, 0.32);
  }
  .hero-stat p{
    font-size: clamp(0.62rem, 2.55vw, 0.74rem);
    line-height: 1.38;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    hyphens: auto;
    max-width: 7.5rem;
    margin-inline: auto;
  }
  .hero-text{ font-size: 15px; max-width: 100%; }

  body.home .about-section{
    margin-top: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .benefits-bar{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 0;
    margin-bottom: 40px;
    padding: 20px 16px;
    border-radius: 14px;
  }
  .benefit + .benefit::before{ display: none; }
  .benefits-bar::before,
  .benefits-bar::after{
    display: none;
  }
  .about-grid{ display: flex; flex-direction: column; gap: 40px; }
  .about-images--gallery{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    gap: 0.8rem;
    padding: 0;
  }
  .about-section.fullscreen-section .about-photo--tile-a .about-photo__media,
  .about-section.fullscreen-section .about-photo--tile-b .about-photo__media{
    aspect-ratio: 5 / 6;
    max-height: clamp(180px, 42vw, 240px);
    height: auto;
    border-radius: 16px;
  }
  .about-photo--hero .about-photo__media{
    aspect-ratio: 16 / 9;
    min-height: clamp(210px, 52vw, 280px);
    border-radius: 16px;
  }
  .about-photo--hero .about-badge,
  .about-photo--hall .about-badge{
    right: 0.55rem;
    bottom: 0.55rem;
    padding: 12px 16px;
  }
  .about-photo--hero .about-badge__year,
  .about-photo--hall .about-badge__year{ font-size: 22px; }
  .about-content h2{ font-size: 32px; }
  .about-headline-accent{ font-size: 1.35rem; }
  .about-features{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
  }
  .feature{
    padding: 12px 14px;
  }

  .offer-page{ padding: 120px 0 80px; }
  .offer-page-header{ margin-bottom: 50px; }
  .offer-page-header h1{ font-size: 34px; }
  .offer-page-header p{ font-size: 15px; }
  .offer-grid{ grid-template-columns: 1fr; gap: 26px; }
  .offer-box{ border-radius: 14px; }
  .offer-img img{ height: 200px; }
  .offer-box-content{ padding: 20px; }
  .offer-box h3{ font-size: 19px; }
  .offer-box p{ font-size: 14px; }
  .offer-badge{ font-size: 10px; padding: 5px 10px; }
  .offer-page-cta{ margin-top: 60px; padding: 35px 25px; }
  .offer-page-cta h2{ font-size: 26px; }
  .offer-page-cta p{ font-size: 14px; }

  .where-section{ padding: 70px 0; }
  .where-section h2{ font-size: 28px; }

  .info-grid{ grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .btn-main, .btn-ghost{ display: block; text-align: center; padding: 14px 18px; font-size: 14px; }
  .slider-hint{ display: flex; }

}

@media (max-width: 480px){
  .offer-page{ padding: 110px 0 70px; }
  .offer-page-header h1{ font-size: 28px; }
  .offer-img img{ height: 180px; }
  .offer-box-content{ padding: 18px; }
  .offer-box h3{ font-size: 18px; }
  .offer-box p{ font-size: 13px; }
  .offer-page-cta{ padding: 30px 20px; }
  .offer-page-cta h2{ font-size: 22px; }
}

@media (min-width: 769px){
  body.home .hero{
    background-image: var(--hero-bg-image);
    background-position: var(--hero-bg-position);
    background-size: cover;
    min-height: 100svh;
    min-height: 100dvh;
    padding:
      clamp(6rem, 11vh, 8.5rem)
      clamp(2.5rem, 8vw, 6.5rem)
      clamp(3rem, 7vh, 5.5rem);
  }

  body.home .hero-container{
    gap: clamp(1.5rem, 4vh, 3rem);
    max-width: min(1080px, 96vw);
    padding: clamp(1rem, 2.5vh, 2rem) clamp(1.5rem, 6vw, 5rem);
  }

  body.home .hero h1{
    font-size: clamp(2.25rem, 6.5vw, 86px);
    line-height: 1.2;
    text-shadow: none;
  }

  body.home .hero-accent{
    margin: clamp(-1.75rem, -3.5vh, -2.25rem) 0 0;
    font-size: clamp(1.4rem, 4.2vw, 62px);
    line-height: 1.15;
    max-width: none;
    text-shadow: none;
  }

  body.home .hero-buttons{
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 600px;
  }

  body.home .hero-buttons a{
    width: auto;
  }

  body.home .hero .btn-main,
  body.home .hero .btn-ghost{
    padding: 18px 40px;
    font-size: 0.95rem;
    border-radius: 6px;
  }

  body.home .hero-stats{
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: none;
    gap: clamp(1.5rem, 4vw, 3rem);
    border-top: none;
    padding: clamp(1rem, 2.5vh, 2rem) clamp(0.5rem, 3vw, 2rem) 0;
  }

  body.home .hero-stat{
    flex: 1 1 160px;
    padding: 0 clamp(0.75rem, 3vw, 2rem);
  }

  body.home .hero-stat:not(:last-child)::after{
    display: none;
  }

  body.home .hero-stat h3{
    font-size: 30px;
    text-shadow: none;
  }

  body.home .hero-stat p{
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0.04em;
    max-width: none;
    hyphens: manual;
  }

  body.home .hero-eyebrow{
    max-width: none;
    padding: 9px 24px;
    font-size: 13px;
    letter-spacing: 0.14em;
  }
}

@media (max-width: 420px){
  .hero{
    padding-left: 1rem;
    padding-right: 1rem;
    background-position: var(--hero-bg-position);
  }
  .hero-container{
    gap: 0.9rem;
    padding: 0.3rem 0.35rem;
    transform: none;
  }
  .hero-eyebrow{
    max-width: 22rem;
    font-size: 14px;
    letter-spacing: 0.07em;
  }
  .hero h1{ font-size: clamp(2.35rem, 11.5vw, 2.85rem); }
  .hero-accent{
    font-size: clamp(1.42rem, 6.5vw, 1.65rem);
    margin-top: -0.65rem;
  }
  .hero .btn-main,
  .hero .btn-ghost{
    padding: 18px 26px;
    font-size: 1.06rem;
  }
  .hero-stats{
    gap: 0.95rem 0.25rem;
    padding-top: 0.8rem;
  }
  .hero-stat{ padding: 0 0.35rem; }
  .hero-stat h3{ font-size: clamp(1.42rem, 5.6vw, 1.68rem); }
  .hero-stat p{
    font-size: clamp(0.58rem, 2.35vw, 0.68rem);
    max-width: 6.75rem;
  }
  .hero-text{ font-size: 14px; }
  .about-content h2{ font-size: 28px; }
}

@media (min-width: 769px){
  .offer-slider .swiper-wrapper{ display: grid; grid-template-columns: repeat(3,1fr); gap: 34px; }
  .offer-slider .swiper-slide{ width: auto; opacity: 1; transform: none; filter: none; }
}

/* Slider track (typografia .tst wyżej w pliku) */
.tst-wrapper{ display: flex; }
.tst-slide{
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
}

.tst-nav{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: min(100%, 320px);
  margin: 26px auto 0;
}

.tst-prev,
.tst-next{
  flex: 0 0 36px;
}

.cta-bar{
	background: #004731;
	color: #fff;
	padding: 28px 0;
	border-bottom: 1px solid rgba(255,255,0.08);
}
.cta-inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.cta-text h3{
	font-family: "Inter", sans-serif;
	font-size: 24px;
	margin-bottom: 6px;
	font-weight: 700;
}
.cta-text p{
	color: rgba(255,255,255,0.78);
	font-size: 14px;
}
.cta-actions{
	display: flex;
	align-items: center;
	gap:12px;
}
.cta-phone{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border-radius: 8px;
	border: 1px solid rgba(255,255,255,0.25);
	color:#fff;
	text-decoration:none;
	font-size: 13px;
}
.cta-phone-icon{
	font-size:14px;
	line-height: 1;
}
.cta-main{
	display:inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 18px;
	border-radius: 8px;
	background: #fff;
	color: #004731;
	font-weight: 600;
	text-decoration: none;
	font-size: 13px;
	letter-spacing: 0.3px;
}
@media (max-width: 900px){
	.cta-inner{
		flex-direction:column;
		align-items: flex-start;
	}
	.cta-actions{
		width:100%;
		justify-content:flex-start;
		flex-wrap: wrap;
	}
}
@media (max-width: 600px){
	.cta-actions{
		flex-direction:column;
		align-items: stretch;
		width: 100%;
	}
	.cta-phone, .cta-main{
		width:100%;
		justify-content:center;
	}
}

.cta-bar{
	padding: 58px 0;
}
.cta-text h3{
	font-size: 26px;
	margin-bottom: 8px;
}
.cta-text p{
	font-size: 15px;
}
.cta-phone,
.cta-main{
	padding: 17px 25px
}
.cta-bar{
	border-bottom: none !important;
}
.tst{
	margin-top: 0 !important;
}

.cta-bar,
.tst{
	background:linear-gradient(180deg, #004731 0%, #00412b 100%);
}

.cta-main{
	box-shadow: 0 8px 20px rgba(0,0,0,0.18);
	border: 1px solid rgba(255,255,255,0.35);
}
.cta-main:hover{
	transform: translateY(-1px);
	box-shadow: 0 12px 24px rgba(0,0,0,0.22);
}
.cta-phone{
	backdrop-filter: blur(8px);
	background: rgba(255,255,255,0.06);
}
.benefit-icon,
.feature-icon{
  background: rgba(158,194,166,0.22);
  color: var(--brand-900);
}

.benefit-icon svg,
.feature-icon svg{
  width: 20px;
  height: 20px;
  stroke: var(--brand-900) !important;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none !important;
  display: block;
}

.knowledge-base-section{
	padding: 120px 0;
	background: linear-gradient(180deg, #fafbf9 0%, #f3f6f4 100%);
	position: relative;
}
.knowledge-base-section .container{
	position: relative;
	z-index: 1;
}
.knowledge-header{
	text-align: center;
	max-width: 640px;
	margin: 0 auto clamp(40px, 5vw, 56px);
}
.knowledge-head-row{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}
.knowledge-chapter{
	flex-shrink: 0;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
	color: var(--brand-900);
	padding: 7px 11px;
	border: 1px solid rgba(0, 71, 49, 0.14);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.75);
}
.knowledge-eyebrow{
	display: inline-block;
	font-size: 12px;
	letter-spacing: 3px;
	color: #6f8f86;
	text-transform: uppercase;
	margin: 0;
	font-weight: 600;
}
.knowledge-header h2{
	font-family: "Inter", sans-serif;
	font-size: clamp(1.75rem, 3.6vw, 2.5rem);
	color: #004731;
	margin: 0 0 14px;
	line-height: 1.18;
	font-weight: 700;
}
.knowledge-header p{
	font-size: 1rem;
	color: #5f6f64;
	line-height: 1.72;
	margin: 0 0 22px;
}
.knowledge-link{
	color: var(--brand-900);
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 20px;
	border-radius: 999px;
	border: 1px solid rgba(0, 71, 49, 0.16);
	background: #fff;
	font-size: 13px;
	letter-spacing: 0.04em;
	transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.knowledge-link:hover{
	border-color: rgba(0, 71, 49, 0.28);
	background: #fff;
	color: #002c1f;
	box-shadow: 0 8px 24px rgba(0, 71, 49, 0.08);
}

.knowledge-grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(26px, 3.5vw, 38px);
	align-items: stretch;
	padding-bottom: 12px;
}
.knowledge-card{
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 0;
	background: #fff;
	border-radius: 14px;
	overflow: visible;
	border: 1px solid rgba(0, 71, 49, 0.08);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.85) inset,
		0 10px 28px rgba(15, 24, 20, 0.07);
	position: relative;
	z-index: 0;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	transform-origin: 50% 100%;
	opacity: 0;
	transform: translateY(26px) scale(0.98);
	will-change: opacity, transform;
	transition:
		opacity 0.75s cubic-bezier(0.22, 0.61, 0.36, 1),
		transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1),
		box-shadow 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
		border-color 0.35s ease,
		z-index 0s step-end;
}
/* Cień na „podłożu” pod kartą — elipsa pod dolną krawędzią (poza białym tłem) */
.knowledge-card::after{
	content: "";
	position: absolute;
	left: 11%;
	right: 11%;
	bottom: -36px;
	height: 44px;
	border-radius: 50%;
	background: radial-gradient(
		ellipse 100% 42% at 50% 40%,
		rgba(0, 45, 32, 0.32) 0%,
		rgba(0, 45, 32, 0.1) 42%,
		transparent 70%
	);
	opacity: 0;
	transform: scale(0.82);
	transition:
		opacity 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
		transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
	pointer-events: none;
	z-index: 0;
}
.knowledge-img,
.knowledge-content{
	position: relative;
	z-index: 1;
}
.knowledge-card:focus{
	outline: none;
}
.knowledge-card:focus-visible{
	outline: 2px solid rgba(0, 71, 49, 0.45);
	outline-offset: 4px;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.85) inset,
		0 10px 28px rgba(15, 24, 20, 0.07),
		0 0 0 4px rgba(158, 194, 166, 0.28);
}
.knowledge-base-section.is-visible .knowledge-card:hover{
	z-index: 4;
	transform: translateY(-22px) scale(1.02);
	border-color: rgba(0, 71, 49, 0.12);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.9) inset,
		0 8px 16px rgba(0, 0, 0, 0.04),
		0 20px 40px rgba(0, 71, 49, 0.1),
		0 36px 70px rgba(15, 24, 20, 0.14),
		0 52px 100px rgba(0, 35, 24, 0.12);
	transition-delay: 0s;
	transition-duration: 0.42s, 0.42s, 0.42s, 0.28s, 0s;
}
.knowledge-base-section.is-visible .knowledge-card:hover::after{
	opacity: 1;
	transform: scale(1.08);
}
.knowledge-base-section.is-visible .knowledge-card:active::after{
	opacity: 0.5;
	transform: scale(0.92);
}
.knowledge-base-section.is-visible .knowledge-card:active{
	z-index: 4;
	transform: translateY(-10px) scale(1.01);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.85) inset,
		0 12px 28px rgba(15, 24, 20, 0.1);
	transition-duration: 0.1s;
}
.knowledge-base-section.is-visible .knowledge-card:nth-child(1){ opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.05s; }
.knowledge-base-section.is-visible .knowledge-card:nth-child(2){ opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.11s; }
.knowledge-base-section.is-visible .knowledge-card:nth-child(3){ opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.17s; }
.knowledge-base-section.is-visible .knowledge-card:nth-child(4){ opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.23s; }
.knowledge-base-section.is-visible .knowledge-card:nth-child(5){ opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.29s; }
.knowledge-base-section.is-visible .knowledge-card:nth-child(6){ opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.35s; }

.knowledge-badge{
	position: absolute;
	top: 14px;
	left: 14px;
	background: rgba(0, 71, 49, 0.92);
	color: #fff;
	font-size: 10px;
	font-weight: 600;
	padding: 6px 11px;
	border-radius: 6px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	z-index: 2;
	backdrop-filter: blur(6px);
}
.knowledge-img{
	overflow: hidden;
	height: 200px;
	flex-shrink: 0;
	border-radius: 14px 14px 0 0;
}
.knowledge-img--lakier-olej{
	container-type: inline-size;
	container-name: lakier-olej-card;
}
.knowledge-img--klasy-dab.knowledge-img--lakier-olej::before,
.knowledge-img--ekologia::before{
	display: none;
}
.knowledge-img--rodzaje-jodelek{
	container-type: inline-size;
	height: 240px;
}
.knowledge-img--rodzaje-jodelek::before,
.knowledge-img--rodzaje-jodelek::after{
	display: none;
}
.knowledge-img--rodzaje-jodelek img{
	object-fit: cover;
	object-position: center center;
}
.knowledge-jodelek-labels{
	position: absolute;
	inset: auto 0 0 0;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: end;
	gap: 4px;
	padding: 0 4px 12px;
	z-index: 5;
	pointer-events: none;
	background: none;
}
.knowledge-jodelek-labels__item{
	justify-self: center;
	text-align: center;
	font-family: "Caveat", "Segoe Script", cursive;
	font-size: clamp(10px, 3.6cqw, 15px);
	font-weight: 700;
	font-style: normal;
	text-transform: none;
	letter-spacing: 0.02em;
	color: #fffef6;
	line-height: 1.05;
	padding: 0 4px;
	max-width: 98%;
	background: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
	text-shadow:
		0 1px 2px rgba(0, 0, 0, 0.55),
		0 3px 12px rgba(0, 0, 0, 0.45);
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}
.knowledge-img--lakier-olej::before{
	content: '';
	position: absolute;
	left: 50%;
	top: 12%;
	bottom: 12%;
	width: 2px;
	transform: translateX(-50%);
	background: linear-gradient(
		180deg,
		transparent 0%,
		rgba(255, 255, 255, 0.7) 20%,
		rgba(255, 255, 255, 0.88) 50%,
		rgba(255, 255, 255, 0.7) 80%,
		transparent 100%
	);
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
	z-index: 2;
	pointer-events: none;
}
.knowledge-img--lakier-olej::after{
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		transparent 0%,
		transparent 55%,
		rgba(0, 0, 0, 0.12) 100%
	);
	z-index: 2;
	pointer-events: none;
}
.knowledge-img--lakier-olej .knowledge-finish-compare{
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 50px 10px 34px;
	z-index: 3;
	pointer-events: none;
	background: none;
}
.knowledge-card:has(.knowledge-img--lakier-olej) .knowledge-badge{
	z-index: 5;
	max-width: calc(100% - 24px);
}
.knowledge-img--lakier-olej .knowledge-finish-compare__cta{
	position: relative;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin: 0;
	padding: 0 8px;
	font-family: "Caveat", "Segoe Script", cursive;
	font-size: clamp(42px, 20cqw, 58px);
	font-weight: 700;
	font-style: normal;
	color: #fffef6;
	line-height: 1;
	letter-spacing: 0.03em;
	transform: rotate(-1.5deg);
	text-shadow:
		0 1px 2px rgba(0, 0, 0, 0.55),
		0 4px 14px rgba(0, 0, 0, 0.4);
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
	background: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
	backdrop-filter: none;
	white-space: nowrap;
	text-align: center;
}
.knowledge-finish-compare--labels-only{
	justify-content: flex-end;
	padding-top: 0;
	padding-bottom: 34px;
}
.knowledge-img--klasy-dab .knowledge-finish-compare--labels-only{
	padding: 0 10px 12px;
}
.knowledge-finish-compare__sides{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 0 14px 11px;
}
.knowledge-finish-compare__side{
	font-family: "Inter", system-ui, sans-serif;
	font-size: 9px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: rgba(255, 255, 255, 0.92);
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
	background: none;
	border: none;
	padding: 0;
	backdrop-filter: none;
}
.knowledge-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.knowledge-base-section.is-visible .knowledge-card:hover .knowledge-img img{
	transform: scale(1.06);
}
.knowledge-content{
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	min-height: 0;
	padding: 22px 22px 24px;
	background: #fff;
	border-radius: 0 0 14px 14px;
}
.knowledge-cat{
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #7c9186;
	display: block;
	margin-bottom: 10px;
}
.knowledge-card h3{
	font-size: clamp(1.05rem, 1.35vw, 1.2rem);
	color: var(--brand-900);
	margin: 0 0 10px;
	line-height: 1.35;
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 600;
	transition: color 0.25s ease;
}
.knowledge-base-section.is-visible .knowledge-card:hover h3{
	color: #004731;
}
.knowledge-card p{
	flex: 1 1 auto;
	font-size: 14px;
	line-height: 1.65;
	color: #6f7c75;
	margin: 0;
}
.knowledge-read{
	margin-top: auto;
	padding-top: 18px;
	color: var(--brand-900);
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	letter-spacing: 0.02em;
	border-bottom: 1px solid transparent;
	transition: color 0.25s ease, gap 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.25s ease;
}
.knowledge-read__arrow{
	display: inline-block;
	transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.knowledge-base-section.is-visible .knowledge-card:hover .knowledge-read{
	color: #004731;
	gap: 10px;
	border-bottom-color: rgba(0, 71, 49, 0.2);
}
.knowledge-base-section.is-visible .knowledge-card:hover .knowledge-read__arrow{
	transform: translateX(5px);
}

/* Wejście nagłówka „Baza wiedzy” przy scrollu */
.knowledge-base-section .knowledge-header{
	opacity: 0;
	transform: translateY(22px);
	transition:
		opacity 0.78s cubic-bezier(0.22, 0.61, 0.36, 1),
		transform 0.78s cubic-bezier(0.22, 0.61, 0.36, 1);
	will-change: opacity, transform;
}
.knowledge-base-section.is-visible .knowledge-header{
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1000px){
	.knowledge-grid{
		grid-template-columns: repeat(2, 1fr);
		gap: 22px;
	}
}
@media (max-width: 768px){
	.knowledge-header{
		margin-bottom: 40px;
	}
	.knowledge-header h2{
		font-size: clamp(1.5rem, 6vw, 1.85rem);
	}
	.knowledge-header p{
		font-size: 15px;
	}
	.knowledge-grid{
		grid-template-columns: 1fr;
		gap: 18px;
	}
	.knowledge-img{
		height: 180px;
	}
	.knowledge-card h3{
		font-size: 1.1rem;
	}
}


.offer-img img,
.knowledge-img img {
  will-change: transform;
  backface-visibility: hidden;
}




@media (max-width: 768px) {
  .offer-grid .swiper-slide {
    transform-style: flat !important;
  }
}

.offer-home{
  padding: 120px 0;
  background: radial-gradient(1200px 600px at 50% 0%, rgba(158,194,166,0.22), transparent 60%), #f4f7f4;
}

.offer-home-head{
  text-align:center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.offer-home-eyebrow{
  display:inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-900);
  opacity: 0.9;
  margin-bottom: 10px;
}

.offer-home-head h2{
  font-size: 44px;
  color: var(--brand-900);
  margin-bottom: 14px;
}

.offer-home-head p{
  color:#5f6f64;
  line-height:1.7;
}

.offer-home-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.offer-home-card{
  background:#fff;
  border-radius: 18px;
  overflow:hidden;
  text-decoration:none;
  color: inherit;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,71,49,0.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.offer-home-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 55px rgba(0,0,0,0.12);
  border-color: rgba(0,71,49,0.16);
}

.offer-home-media{
  margin:0;
  height: 170px;
  position: relative;
  overflow:hidden;
  background: #e9efe9;
}

.offer-home-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.22));
  pointer-events:none;
}

.offer-home-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .5s ease;
  display:block;
}

.offer-home-card:hover .offer-home-media img{
  transform: scale(1.08);
}

.offer-home-body{
  padding: 18px 18px 16px;
}

.offer-home-pill{
  display:inline-block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-900);
  background: rgba(158,194,166,0.22);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.offer-home-body h3{
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--brand-900);
  line-height: 1.3;
}

.offer-home-body p{
  margin: 0 0 14px;
  color:#5f6f64;
  line-height:1.65;
  font-size: 13px;
}

.offer-home-cta{
  color: var(--brand-900);
  font-weight: 800;
  font-size: 13px;
  padding-top: 12px;
  border-top: 1px solid #edf0ed;
}

.offer-home-actions{
  display:flex;
  gap: 12px;
  justify-content:center;
  margin-top: 26px;
  flex-wrap: wrap;
}

.offer-home-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 18px;
  border-radius: 12px;
  text-decoration:none;
  font-weight: 700;
  background: var(--brand-900);
  color:#fff;
  transition: filter .2s ease, transform .2s ease;
}
.offer-home-btn:hover{ filter: brightness(0.94); transform: translateY(-1px); }
.offer-home-btn.ghost{
  background: transparent;
  color: var(--brand-900);
  border: 1px solid rgba(0,71,49,0.18);
}

@media (max-width: 1100px){
  .offer-home-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px){
  .offer-home{ padding: 80px 0; }
  .offer-home-head h2{ font-size: 30px; }
  .offer-home-grid{ grid-template-columns: 1fr; }
  .offer-home-media{ height: 190px; }
}

.tst-slider{ overflow: hidden; }

.tst-wrapper{
  display: flex;
  will-change: transform;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.tst-slide{
  flex: 0 0 100%;
  opacity: 0.65;
  transform: scale(0.98);
  transition: opacity 450ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}


.tst-slide.is-active{
  opacity: 1;
  transform: scale(1);
}


@media (min-width: 769px){
  .tst-slider{ perspective: 900px; }
  .tst-slide{
    transform: scale(0.98) rotateY(2deg);
  }
  .tst-slide.is-active{
    transform: scale(1) rotateY(0deg);
  }
}


.pj-footer{
  background: linear-gradient(180deg, #004731 0%, #003a27 100%);
  color: #FBF9F3;
  position: relative;
  overflow: hidden;
}

.pj-footer__bg{
  position:absolute;
  inset:-1px;
  pointer-events:none;
  background:
    radial-gradient(900px 520px at 12% 10%, rgba(158,194,166,.16), transparent 60%),
    radial-gradient(780px 520px at 88% 35%, rgba(251,249,243,.10), transparent 62%),
    radial-gradient(620px 420px at 60% 0%, rgba(80,49,32,.16), transparent 55%);
  opacity: .95;
}

.pj-footer__inner{
  position: relative;
  padding: 86px 0 44px;
  display:grid;
  grid-template-columns: 1.55fr 1fr 1fr 1.1fr;
  gap: 26px;
  align-items: start;
}

.pj-footer__brand{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 22px 22px 20px;
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}

.pj-footer__logoMain{
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 16px;
  color: #FFFFFF;
  display:block;
}
.pj-footer__logoSub{
  display:block;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 6px;
  color: #9EC2A6;
  opacity: .95;
}

.pj-footer__desc{
  margin: 14px 0 18px;
  color: rgba(251,249,243,.82);
  line-height: 1.7;
  font-size: 14px;
  max-width: 48ch;
}

.pj-footer__cta{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.pj-footer__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 13px 16px;
  border-radius: 10px;
  text-decoration:none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .2px;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease, background .2s ease, border-color .2s ease;
  will-change: transform;
}

.pj-footer__btn--primary{
  background: #FFFFFF;
  color: #004731;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.25);
}
.pj-footer__btn--primary:hover{
  transform: translateY(-1px);
  filter: brightness(.96);
}

.pj-footer__btn--ghost{
  background: rgba(255,255,255,.06);
  color: #FBF9F3;
  border: 1px solid rgba(255,255,255,.22);
}
.pj-footer__btn--ghost:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
}

.pj-footer__badges{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pj-footer__badge{
  display:inline-flex;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(158,194,166,.12);
  border: 1px solid rgba(158,194,166,.22);
  color: rgba(251,249,243,.88);
  font-size: 12px;
}

.pj-footer__col{
  border-radius: 16px;
  padding: 18px 18px 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
}

.pj-footer__title{
  margin: 0 0 12px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9EC2A6;
}

.pj-footer__list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 8px;
}

.pj-footer__list a{
  display:inline-flex;
  color: rgba(251,249,243,.88);
  text-decoration:none;
  padding: 8px 10px;
  margin-left: -10px;
  border-radius: 10px;
  transition: background .18s ease, transform .18s ease, color .18s ease;
}
.pj-footer__list a:hover{
  background: rgba(158,194,166,.12);
  transform: translateX(2px);
  color: #FFFFFF;
}

.pj-footer__contactRow{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  text-decoration:none;
  color: rgba(251,249,243,.92);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  margin-bottom: 10px;
}
.pj-footer__contactRow:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.07);
  border-color: rgba(158,194,166,.26);
}

.pj-ico{
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(158,194,166,.14);
  border: 1px solid rgba(158,194,166,.24);
  color: #9EC2A6;
}

.pj-footer__socials{
  display:flex;
  gap: 10px;
  margin-top: 6px;
}
.pj-footer__socials{
  justify-content: center;
}
.pj-social{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: #FBF9F3;
  text-decoration:none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.pj-social:hover{
  transform: translateY(-1px);
  background: rgba(158,194,166,.12);
  border-color: rgba(158,194,166,.28);
}

.pj-footer__bottom{
  position: relative;
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.14);
}

.pj-footer__bottomInner{
  padding: 16px 0;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.pj-footer__copy{
  margin:0;
  color: rgba(251,249,243,.75);
  font-size: 13px;
}

.pj-footer__legal{
  display:flex;
  gap: 10px;
}

.pj-footer__legal a{
  color: rgba(251,249,243,.78);
  text-decoration:none;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.pj-footer__legal a:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
  color: #FFFFFF;
}


@media (max-width: 1100px){
  .pj-footer__inner{ grid-template-columns: 1.2fr 1fr 1fr; }
  .pj-footer__contact{ grid-column: 1 / -1; }
}

@media (max-width: 768px){
  .pj-footer__inner{
    grid-template-columns: 1fr;
    padding: 70px 0 34px;
  }
}

.where-buy-section {
	padding: 80px 0;
	background: #f9faf9;
}

.where-buy-header {
	text-align: center;
	margin-bottom: 60px;
}

.where-buy-eyebrow {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--brand-900);
	margin-bottom: 12px;
}

.where-buy-section h1 {
	font-size: 48px;
	margin: 0 0 16px 0;
	color: #1a1a1a;
}

.where-buy-header p {
	font-size: 16px;
	color: #5f6f64;
	max-width: 600px;
	margin: 0 auto;
}


.where-buy-actions {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.where-buy-action-btn {
	padding: 12px 24px;
	background: linear-gradient(135deg, var(--brand-900), #005a3a);
	color: #fff;
	border: none;
	border-radius: 12px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 71, 49, 0.2);
}

.where-buy-action-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 71, 49, 0.3);
}

.where-buy-action-btn:active {
	transform: scale(0.98);
}


.where-buy-container-desktop {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-bottom: 60px;
}

.where-buy-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.where-buy-search {
	position: relative;
	margin-bottom: 20px;
}

.where-buy-search-input {
	width: 100%;
	padding: 12px 16px 12px 40px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	font-size: 14px;
	transition: all 0.3s ease;
}

.where-buy-search-input:focus {
	outline: none;
	border-color: var(--brand-900);
	box-shadow: 0 0 0 3px rgba(0, 71, 49, 0.1);
}

.where-buy-search-icon {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: #9a9a9a;
	pointer-events: none;
}

.where-buy-locations {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-height: 600px;
	overflow-y: auto;
	padding-right: 12px;
}

.where-buy-locations::-webkit-scrollbar {
	width: 6px;
}

.where-buy-locations::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 3px;
}

.where-buy-locations::-webkit-scrollbar-thumb {
	background: #d0d0d0;
	border-radius: 3px;
}

.where-buy-locations::-webkit-scrollbar-thumb:hover {
	background: #999;
}


.where-buy-card {
	display: flex;
	gap: 16px;
	padding: 16px;
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 12px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.where-buy-card:hover {
	border-color: var(--brand-900);
	box-shadow: 0 4px 12px rgba(0, 71, 49, 0.1);
}

.where-buy-card[data-type="headquarters"] {
	border-color: rgba(255, 152, 0, 0.3);
	background: linear-gradient(135deg, rgba(255, 152, 0, 0.02), transparent);
}

.where-buy-card-icon {
	font-size: 24px;
	min-width: 32px;
	display: flex;
	align-items: center;
}

.where-buy-card-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.where-buy-card-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--brand-900);
	padding: 4px 8px;
	background: rgba(0, 71, 49, 0.08);
	border-radius: 4px;
	width: fit-content;
}

.where-buy-card[data-type="headquarters"] .where-buy-card-label {
	background: linear-gradient(135deg, #ff9800, #f57c00);
	color: #fff;
	box-shadow: 0 2px 8px rgba(255, 152, 0, 0.2);
}

.where-buy-card-name {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: #1a1a1a;
}

.where-buy-card-address {
	margin: 0;
	font-size: 13px;
	color: #5f6f64;
}

.where-buy-card-actions {
	display: flex;
	gap: 8px;
	margin-top: 8px;
	flex-wrap: wrap;
}

.where-buy-card-btn {
	padding: 8px 12px;
	background: #f5f5f5;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
	color: #1a1a1a;
	cursor: pointer;
	transition: all 0.2s ease;
}

.where-buy-card-btn:hover {
	background: var(--brand-900);
	color: #fff;
	border-color: var(--brand-900);
}

.where-buy-empty {
	padding: 40px;
	text-align: center;
	color: #9a9a9a;
	font-size: 14px;
}


.where-buy-map-section {
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: relative;
}

.where-buy-map-toggle {
	padding: 14px 24px;
	background: linear-gradient(135deg, var(--brand-900), #005a3a);
	color: #fff;
	border: none;
	border-radius: 12px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 71, 49, 0.2);
	width: 100%;
}

.where-buy-map-toggle:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 71, 49, 0.3);
}

.where-buy-map-toggle:active {
	transform: scale(0.98);
}

.where-buy-map-toggle.active {
	background: linear-gradient(135deg, #d32f2f, #c62828);
}

.where-buy-map {
	width: 100%;
	height: 600px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	animation: slideDown 0.3s ease;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}


.where-buy-container-mobile {
	display: none;
	position: relative;
	height: 100vh;
	overflow: hidden;
	z-index: 100;
}

.where-buy-map-section-mobile {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: auto;
	z-index: 50;
	padding: 16px;
	padding-bottom: 0;
	background: transparent;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.where-buy-map-toggle-mobile {
	padding: 12px 16px;
	background: linear-gradient(135deg, var(--brand-900), #005a3a);
	color: #fff;
	border: none;
	border-radius: 12px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 71, 49, 0.2);
	width: 100%;
	z-index: 51;
	order: 1;
}

.where-buy-map-toggle-mobile:active {
	transform: scale(0.98);
}

.where-buy-map-toggle-mobile.active {
	background: linear-gradient(135deg, #d32f2f, #c62828);
}

.where-buy-map-mobile {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.where-buy-bottomsheet {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	max-height: 70vh;
	z-index: 100;
	transform: translateY(100%);
	transition: transform 0.4s cubic-bezier(0.32, 0.94, 0.6, 1);
	display: flex;
	flex-direction: column;
	box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.where-buy-bottomsheet.active {
	transform: translateY(70%);
}

.where-buy-bottomsheet.expanded {
	transform: translateY(0);
	max-height: 95vh;
}

.where-buy-bottomsheet-handle {
	padding: 12px;
	display: flex;
	justify-content: center;
	cursor: grab;
	user-select: none;
	flex-shrink: 0;
}

.where-buy-bottomsheet-handle:active {
	cursor: grabbing;
}

.where-buy-bottomsheet-bar {
	width: 40px;
	height: 4px;
	background: #d0d0d0;
	border-radius: 2px;
}

.where-buy-search-mobile {
	position: relative;
	padding: 12px 16px;
	border-bottom: 1px solid #e6e6e6;
	flex-shrink: 0;
}

.where-buy-search-input-mobile {
	width: 100%;
	padding: 10px 16px 10px 40px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	font-size: 14px;
}

.where-buy-search-input-mobile:focus {
	outline: none;
	border-color: var(--brand-900);
}

.where-buy-search-icon-mobile {
	position: absolute;
	left: 28px;
	top: 50%;
	transform: translateY(-50%);
	color: #9a9a9a;
	pointer-events: none;
}

.where-buy-locations-mobile {
	flex: 1;
	overflow-y: auto;
	padding: 12px 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-height: 0;
}

.where-buy-locations-mobile::-webkit-scrollbar {
	width: 4px;
}

.where-buy-locations-mobile::-webkit-scrollbar-thumb {
	background: #d0d0d0;
	border-radius: 2px;
}


.where-buy-card-mobile {
	padding: 12px;
	background: #f9f9f9;
	border: 1px solid #e6e6e6;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	transition: all 0.2s ease;
	scroll-snap-align: start;
	scroll-snap-stop: always;
}

.where-buy-card-mobile:active {
	background: #efefef;
}

.where-buy-card-mobile[data-type="headquarters"] {
	border-color: rgba(255, 152, 0, 0.3);
	background: linear-gradient(135deg, rgba(255, 152, 0, 0.03), transparent);
}

.where-buy-card-mobile-name {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	color: #1a1a1a;
}

.where-buy-card-mobile-label {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--brand-900);
	padding: 3px 6px;
	background: rgba(0, 71, 49, 0.08);
	border-radius: 3px;
	width: fit-content;
}

.where-buy-card-mobile[data-type="headquarters"] .where-buy-card-mobile-label {
	background: linear-gradient(135deg, #ff9800, #f57c00);
	color: #fff;
}

.where-buy-card-mobile-address {
	margin: 0;
	font-size: 12px;
	color: #5f6f64;
	line-height: 1.4;
}

.where-buy-card-mobile-actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
	margin-top: 4px;
}

.where-buy-card-mobile-btn {
	padding: 8px 12px;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 600;
	text-decoration: none;
	color: #1a1a1a;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s ease;
}

.where-buy-card-mobile-btn:active {
	background: var(--brand-900);
	color: #fff;
	border-color: var(--brand-900);
}

.where-buy-empty-mobile {
	padding: 40px 20px;
	text-align: center;
	color: #9a9a9a;
	font-size: 14px;
}


.where-buy-show-all-btn {
	padding: 12px 16px;
	margin: 12px 16px;
	background: linear-gradient(135deg, var(--brand-900), #005a3a);
	color: #fff;
	border: none;
	border-radius: 12px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 71, 49, 0.2);
	width: calc(100% - 32px);
	flex-shrink: 0;
}

.where-buy-show-all-btn:active {
	transform: scale(0.98);
}

.where-buy-show-all-btn.active {
	background: linear-gradient(135deg, #003620, #002818);
}


.custom-marker-icon {
	background: none !important;
	border: none !important;
	padding: 0 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.custom-marker-icon svg {
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
	transition: transform 0.2s ease;
}

.custom-marker-icon:hover svg {
	transform: scale(1.2);
}


.where-buy-custom-popup {
	z-index: 1000;
}

.where-buy-custom-popup .leaflet-popup-content-wrapper {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	border: 1px solid #e6e6e6;
}

.where-buy-custom-popup .leaflet-popup-content {
	margin: 0;
	padding: 0;
	width: 100% !important;
	max-width: 280px !important;
}

.where-buy-popup {
	padding: 12px 16px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.where-buy-popup h4 {
	margin: 0 0 8px 0;
	font-size: 14px;
	font-weight: 700;
	color: #1a1a1a;
	word-wrap: break-word;
	overflow-wrap: break-word;
	line-height: 1.3;
}

.where-buy-popup p {
	margin: 0 0 10px 0;
	font-size: 12px;
	color: #5f6f64;
	word-wrap: break-word;
	overflow-wrap: break-word;
	line-height: 1.4;
}

.where-buy-popup a {
	display: block;
	margin-bottom: 6px;
	padding: 6px 0;
	font-size: 12px;
	color: #004731;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s ease;
	word-wrap: break-word;
	overflow-wrap: break-wor*
}



@keyframes slideDown{
    from{
        opacity: 0;
        transform: translateY(-10px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 9999;
	align-items: center;
	justify-content: center;
	padding: 20px;
	animation: fadeIn 0.3s ease;
}

.modal.active {
	display: flex;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.modal-content {
	background: #fff;
	border-radius: 12px;
	max-width: 600px;
	max-height: 80vh;
	overflow-y: auto;
	padding: 32px;
	position: relative;
	box-shadow: 0 20px 60px rgba(0, 71, 49, 0.2);
	animation: slideUp 0.3s ease;
}

@keyframes slideUp {
	from {
		transform: translateY(30px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: none;
	border: none;
	font-size: 32px;
	color: var(--text-700);
	cursor: pointer;
	transition: color 0.3s ease;
	padding: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-close:hover {
	color: var(--brand-900);
}

.modal-content h3 {
	margin: 0 0 24px;
	font-size: 28px;
	color: var(--brand-900);
	font-weight: 700;
}

.modal-body {
	margin-bottom: 24px;
}

.modal-body h4 {
	margin: 20px 0 10px;
	font-size: 15px;
	color: var(--brand-900);
	font-weight: 600;
}

.modal-body h4:first-child {
	margin-top: 0;
}

.modal-body p {
	margin: 0 0 12px;
	font-size: 13px;
	line-height: 1.6;
	color: var(--text-700);
}

.modal-body ul {
	margin: 12px 0;
	padding-left: 20px;
}

.modal-body li {
	font-size: 13px;
	line-height: 1.6;
	color: var(--text-700);
	margin-bottom: 6px;
}

.modal-body a {
	color: var(--brand-500);
	text-decoration: none;
	font-weight: 600;
}

.modal-body a:hover {
	text-decoration: underline;
}

.modal-footer {
	display: flex;
	gap: 12px;
	justify-content: flex-end;
	border-top: 1px solid #e0e0e0;
	padding-top: 20px;
}

.btn-modal-close {
	padding: 12px 28px;
	background: var(--brand-900);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-modal-close:hover {
	background: #003d27;
	transform: translateY(-2px);
}


.privacy-link-btn {
	background: none;
	border: none;
	color: var(--brand-500);
	font-weight: 600;
	border-bottom: 1px solid rgba(47, 124, 94, 0.3);
	cursor: pointer;
	padding: 0;
	font-size: inherit;
	font-family: inherit;
	transition: all 0.3s ease;
	display: inline;
}

.privacy-link-btn:hover {
	border-bottom-color: var(--brand-500);
	color: var(--brand-900);
}

@media (max-width: 768px) {
	.modal-content {
		padding: 24px;
		max-height: 90vh;
	}

	.modal-content h3 {
		font-size: 22px;
		margin-bottom: 16px;
	}

	.modal-body h4 {
		font-size: 14px;
	}

	.modal-body p,
	.modal-body li {
		font-size: 12px;
	}
}

.site-header{
	background: transparent !important;
	border-bottom: 1px solid transparent !important;
	box-shadow: none !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
}

.site-header.scrolled{
	background: rgba(255, 255, 255, 0.92) !important;
	border-bottom-color: rgba(230, 230, 230, 0.6) !important;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05) !important;
	backdrop-filter: blur(8px) !important;
	-webkit-backdrop-filter: blur(8px) !important;
}

.site-header {
	background: transparent;
	border-bottom: 1px solid transparent;
	position: sticky;
	top: 0;
	z-index: 999;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	padding: 0.7rem 0;
}


.site-header.scrolled {
	padding: 0.6rem 0 !important;
	background: rgba(255, 255, 255, 0.75);
	border-bottom-color: rgba(230, 230, 230, 0.2);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}




.contact-section{
  background: var(--cream);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Dekoracyjne kształty w tle */
.contact-section::before{
  content: "";
  position: absolute;
  top: -100px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(158,194,166,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* HEADER */
.contact-header{
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(40px, 5vw, 56px);
  position: relative;
  z-index: 2;
}

.contact-head-row{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.contact-chapter{
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--brand-900);
  padding: 7px 11px;
  border: 1px solid rgba(0, 71, 49, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
}

.contact-eyebrow{
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  color: #6f8f86;
  margin: 0;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Inter", system-ui, sans-serif;
}

.contact-header h2{
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  color: var(--brand-900);
  margin: 0 0 14px;
  line-height: 1.18;
  font-weight: 700;
}

.contact-header p{
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text-700);
  margin: 0;
  font-weight: 400;
  font-family: "Inter", system-ui, sans-serif;
}

/* Scroll reveal — tylko strona główna (na /kontakt/ brak observera → bez body.home formularz był niewidoczny) */
body.home .contact-section .contact-header{
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
  transition:
    opacity 0.72s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 0.61, 0.36, 1);
}

body.home .contact-section.is-visible .contact-header{
  opacity: 1;
  transform: translateY(0);
}

/* WRAPPER - 2 COLUMNS */
.contact-wrapper{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

/* ===== INFO CARD (LEFT) ===== */
.contact-info-card{
  background: linear-gradient(135deg, var(--brand-900) 0%, #003d27 100%);
  color: #fff;
  padding: 45px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,71,49,0.12);
  position: sticky;
  top: 100px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0,71,49,0.18);
}

body.home .contact-section .contact-info-card,
body.home .contact-section .contact-form-wrapper{
  opacity: 0;
  transform: translateY(22px);
  will-change: opacity, transform;
  transition:
    opacity 0.68s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.68s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.3s ease;
}

body.home .contact-section.is-visible .contact-info-card{
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

body.home .contact-section.is-visible .contact-form-wrapper{
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.18s;
}

body.home .contact-section.is-visible .contact-info-card:hover{
  opacity: 1;
  transform: translateY(-4px);
  transition-delay: 0s;
  box-shadow: 0 25px 60px rgba(0,71,49,0.18);
}

.info-box-title h3{
  font-size: 24px;
  margin-bottom: 12px;
  color: #fff;
  line-height: 1.3;
  font-weight: 700;
}

.info-box-title p{
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(158,194,166,0.25);
}

/* INFO ITEMS */
.info-items{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 35px;
}

.info-item{
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(158,194,166,0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.info-item:hover{
  background: rgba(158,194,166,0.15);
  border-color: rgba(158,194,166,0.35);
  transform: translateX(4px);
}

.info-icon{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(158,194,166,0.25);
  border-radius: 10px;
  color: #9EC2A6;
  transition: all 0.3s ease;
}

.info-item:hover .info-icon{
  background: rgba(158,194,166,0.4);
  transform: scale(1.05);
}

.info-icon svg{
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.info-text{
  flex: 1;
  min-width: 0;
}

.info-label{
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 4px;
  font-weight: 600;
}

.info-text p{
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
}

.info-arrow{
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
  font-size: 18px;
  align-self: center;
}

.info-item:hover .info-arrow{
  opacity: 1;
  transform: translateX(0);
}

/* SOCIAL */
.info-social{
  padding-top: 35px;
  border-top: 1px solid rgba(158,194,166,0.25);
}

.social-label{
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  font-weight: 600;
}

.social-icons{
  display: flex;
  gap: 12px;
}

.social-icon{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(158,194,166,0.3);
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 11px;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.05);
}

.social-icon:hover{
  background: rgba(158,194,166,0.3);
  border-color: #9EC2A6;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(158,194,166,0.2);
}

/* ===== FORM (RIGHT) ===== */
.contact-form-wrapper{
  width: 100%;
}

.contact-form{
  width: 100%;
}

.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group{
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-group.full-width{
  grid-column: 1 / -1;
}

.form-group label{
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-900);
  margin-bottom: 10px;
  letter-spacing: 0.4px;
}

/* Wymagane pola — minimalistyczna gwiazdka (*) */
.form-required-note{
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 1.25rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-700);
  letter-spacing: 0.02em;
}

.form-required-note .form-label__star{
  margin: 0;
}

.contact-form .form-label{
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
  cursor: pointer;
}

.contact-form .form-label__star{
  flex-shrink: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1;
  color: #b85c5c;
  opacity: 0.9;
  transform: translateY(-1px);
  letter-spacing: 0;
}

.contact-form .form-label__name{
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-900);
  letter-spacing: 0.4px;
}

.contact-form .form-label__req{
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  color: #8a6f6f;
}

.contact-form .form-group:has(:required:not(:focus):invalid) .form-label__star,
.contact-form .form-group:has(:required:user-invalid) .form-label__star{
  color: #a84848;
  opacity: 1;
}

.form-group input,
.form-group textarea,
.form-group select{
  padding: 14px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--text-900);
  background: #fff;
  transition: all 0.3s ease;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
  color: #999;
  font-weight: 400;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
  outline: none;
  border-color: var(--brand-500);
  background: #fafbfa;
  box-shadow: 0 0 0 4px rgba(158,194,166,0.12);
}

.form-group textarea{
  resize: vertical;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

.form-group select{
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23004731' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

/* ERROR MESSAGE */
.form-error{
  display: none;
  font-size: 12px;
  color: #a84848;
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.form-group.error input,
.form-group.error textarea,
.contact-form.form--submit-invalid .form-group--invalid input,
.contact-form.form--submit-invalid .form-group--invalid textarea{
  border-color: rgba(168, 72, 72, 0.55);
  background: linear-gradient(180deg, #fffdfd 0%, #fff6f6 100%);
  box-shadow:
    0 0 0 1px rgba(168, 72, 72, 0.28),
    0 0 0 4px rgba(168, 72, 72, 0.07),
    inset 0 1px 2px rgba(168, 72, 72, 0.04);
  animation: formFieldInvalidPulse 2.2s ease-in-out 1;
}

.form-group.error .form-error,
.contact-form.form--submit-invalid .form-group--invalid .form-error,
.contact-form.form--submit-invalid .checkbox-wrapper--invalid .form-error{
  display: block;
}

.contact-form.form--submit-invalid .form-group--invalid .form-label__star{
  color: #a84848;
  opacity: 1;
}

.contact-form.form--submit-invalid .form-group--invalid .form-label__req{
  color: #a84848;
}

.contact-form.form--submit-invalid .checkbox-wrapper--invalid .checkbox{
  border-color: rgba(168, 72, 72, 0.42);
  background: linear-gradient(180deg, #fffdfd 0%, #fff6f6 100%);
  box-shadow:
    0 0 0 1px rgba(168, 72, 72, 0.22),
    0 0 0 4px rgba(168, 72, 72, 0.07);
  animation: formFieldInvalidPulse 2.2s ease-in-out 1;
}

@keyframes formFieldInvalidPulse{
  0%{
    box-shadow:
      0 0 0 1px rgba(168, 72, 72, 0.45),
      0 0 0 6px rgba(168, 72, 72, 0.12),
      inset 0 1px 2px rgba(168, 72, 72, 0.05);
  }
  100%{
    box-shadow:
      0 0 0 1px rgba(168, 72, 72, 0.28),
      0 0 0 4px rgba(168, 72, 72, 0.07),
      inset 0 1px 2px rgba(168, 72, 72, 0.04);
  }
}

@media (prefers-reduced-motion: reduce){
  .contact-form.form--submit-invalid .form-group--invalid input,
  .contact-form.form--submit-invalid .form-group--invalid textarea,
  .contact-form.form--submit-invalid .checkbox-wrapper--invalid .checkbox{
    animation: none;
  }
}

/* CHECKBOX */
.checkbox{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 24px;
  padding: 14px;
  border-radius: 10px;
  background: rgba(158,194,166,0.06);
  border: 1px solid rgba(158,194,166,0.15);
  transition: all 0.3s ease;
}

.checkbox:hover{
  background: rgba(158,194,166,0.12);
  border-color: rgba(158,194,166,0.3);
}

.checkbox input{
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--brand-500);
  flex-shrink: 0;
}

.checkbox span{
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-700);
}

/* SUBMIT BUTTON */
.btn-contact{
  width: 100%;
  padding: 16px 32px;
  background: var(--brand-900);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
  box-shadow: 0 10px 28px rgba(0,71,49,0.12);
  position: relative;
  overflow: hidden;
}

.btn-contact::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-contact:hover{
  background: #003d27;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0,71,49,0.18);
}

.btn-contact:hover::before{
  opacity: 1;
}

.btn-contact:active{
  transform: translateY(0);
}

.btn-text{
  position: relative;
  z-index: 1;
}

.btn-icon{
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
  font-size: 18px;
}

.btn-contact:hover .btn-icon{
  transform: translateX(3px);
}

/* DISCLAIMER */
.contact-disclaimer{
  font-size: 12px;
  color: var(--text-700);
  text-align: center;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px){
  .contact-wrapper{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info-card{
    position: relative;
    top: 0;
    padding: 40px;
  }
}

@media (max-width: 768px){
  .contact-section::before{
    top: -150px;
    right: -150px;
    width: 250px;
    height: 250px;
  }

  .contact-header{
    margin-bottom: 40px;
  }

  .contact-header h2{
    font-size: clamp(1.5rem, 6vw, 1.85rem);
  }

  .contact-header p{
    font-size: 15px;
  }

  .contact-head-row{
    margin-bottom: 0.85rem;
  }

  .contact-wrapper{
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info-card{
    order: 2;
    padding: 30px;
  }

  .contact-form-wrapper{
    order: 1;
  }

  .form-row{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .info-box-title h3{
    font-size: 22px;
  }

  .info-item{
    padding: 14px;
    gap: 12px;
  }

  .btn-contact{
    padding: 14px 24px;
    font-size: 14px;
  }
}

@media (max-width: 480px){
  .contact-header p{
    font-size: 14px;
  }

  .contact-info-card{
    padding: 24px;
  }

  .info-box-title h3{
    font-size: 20px;
  }

  .form-group label{
    font-size: 12px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select{
    padding: 12px 14px;
    font-size: 13px;
  }

  .checkbox{
    padding: 12px;
    gap: 10px;
  }

  .checkbox span{
    font-size: 12px;
  }
}
/* ===== CHECKBOX FIX ===== */
.checkbox-wrapper{
  margin-bottom: 8px !important;
}

.checkbox{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 0;
  padding: 14px;
  border-radius: 10px;
  background: rgba(158,194,166,0.06);
  border: 1px solid rgba(158,194,166,0.15);
  transition: all 0.3s ease;
}

.checkbox:hover{
  background: rgba(158,194,166,0.12);
  border-color: rgba(158,194,166,0.3);
}

.checkbox:has(input:checked){
  background: rgba(158,194,166,0.18);
  border-color: var(--brand-500);
}

.checkbox input[type="checkbox"]{
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--brand-500);
  flex-shrink: 0;
  appearance: auto;
}

.checkbox input[type="checkbox"]:focus-visible{
  outline: 2px solid var(--brand-500);
  outline-offset: 2px;
}

.checkbox span{
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-700);
}

/* Honeypot antyspam (pole ukryte) */
.pj-form-hp{
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ===== HIDE WOOD SELECT ===== */
.contact-form .form-group:has(#contact-wood),
.contact-form .form-group:has(select){
  display: none !important;
}
/* ===== FORM MESSAGES ===== */
.form-message{
    display: none;
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 14px;
    animation: slideDown 0.3s ease;
}

.form-message-success{
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error{
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideDown{
    from{
        opacity: 0;
        transform: translateY(-10px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
.contact-bottom{
	position: relative;
	padding: 96px 0 120px;
	background:
		radial-gradient(1200px 560px at 8% -12%, #fffdf7 0%, transparent 58%),
		radial-gradient(1000px 520px at 100% 0%, #efe1ca 0%, transparent 60%),
		linear-gradient(180deg, #f9f2e7 0%, #f2e6d3 100%);
	overflow: hidden;
}

.contact-bottom__head{
	text-align: center;
	max-width: 760px;
	margin: 0 auto 38px;
}

.contact-bottom__eyebrow{
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #0b6347;
	margin-bottom: 10px;
}

.contact-bottom__head h2{
	margin: 0 0 10px;
	font-size: clamp(30px, 4vw, 46px);
	line-height: 1.15;
	color: #004731;
}

.contact-bottom__head p{
	margin: 0;
	color: #5e6f65;
	line-height: 1.6;
}

.contact-bottom__grid{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.contact-bottom-card{
	background: #fff;
	border: 1px solid #e1e7e3;
	border-radius: 14px;
	padding: 26px;
	box-shadow: 0 10px 26px rgba(0, 71, 49, 0.08);
}

.contact-bottom-card h3{
	margin: 0 0 14px;
	font-size: 24px;
	color: #004731;
}

.contact-steps,
.contact-points{
	margin: 0;
	padding-left: 0;
	list-style: none;
	display: grid;
	gap: 10px;
	color: #3e4f46;
	line-height: 1.55;
}

.contact-steps li,
.contact-points li{
	padding: 10px 12px;
	border-radius: 10px;
	background: #f5faf7;
	border: 1px solid #e4ece7;
}

@media (max-width: 900px){
	.contact-bottom__grid{
		grid-template-columns: 1fr;
	}
}
.contact-bottom__head p{
	margin: 0 auto;
	max-width: 62ch;
	color: #4f5f6d;
	line-height: 1.7;
}

.contact-bottom__grid{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
}

.contact-bottom-card{
	background: #fffaf1;
	border: 1px solid #e5d7c3;
	border-radius: 18px;
	padding: 28px;
	box-shadow: 0 12px 28px rgba(67, 45, 21, 0.08);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.contact-bottom-card:hover{
	transform: translateY(-2px);
	border-color: #d9c8ae;
	box-shadow: 0 16px 34px rgba(67, 45, 21, 0.12);
}

.contact-bottom-card h3{
	margin: 0 0 16px;
	font-size: 24px;
	line-height: 1.2;
	color: #004731;
}

/* KROKI */
.contact-steps{
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}

.contact-steps li{
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 10px;
	align-items: start;
	padding: 12px;
	border-radius: 12px;
	border: 1px solid #e7ddd0;
	background: #ffffff;
	line-height: 1.55;
	color: #33495d;
}

.contact-steps li strong{
	width: 28px;
	height: 28px;
	display: inline-grid;
	place-items: center;
	border-radius: 999px;
	background: #0f6f51;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
}
/*opinie*/
.contact-points{
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}

.contact-points li{
	position: relative;
	padding: 12px 12px 12px 42px;
	border-radius: 12px;
	border: 1px solid #e7ddd0;
	background: #ffffff;
	line-height: 1.55;
	color: #33495d;
}

.contact-points li::before{
	content: "✓";
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 22px;
	height: 22px;
	display: grid;
	place-items: center;
	border-radius: 999px;
	background: rgba(15,111,81,0.12);
	color: #0f6f51;
	font-size: 13px;
	font-weight: 800;
}

@media (max-width: 900px){
	.contact-bottom__grid{
		grid-template-columns: 1fr;
	}
	.contact-bottom-card{
		padding: 22px;
	}
}
/* ===== TEAM SECTION ===== */
.team-section {
	padding: 80px 0;
	background: linear-gradient(180deg, #f9f2e7 0%, #f2e6d3 100%);
	position: relative;
}

.team-header {
	text-align: center;
	margin-bottom: 60px;
}

.team-header h2 {
	margin: 0;
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 700;
	color: #004731;
	line-height: 1.2;
}

.team-department {
	margin-bottom: 70px;
}

.team-department:last-child {
	margin-bottom: 0;
}

.department-title {
	margin: 0 0 32px;
	font-size: 24px;
	font-weight: 600;
	color: #8B6F47;
	text-align: center;
	position: relative;
	padding-bottom: 16px;
}

.department-title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 2px;
	background: #8B6F47;
	opacity: 0.3;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
}

.team-card {
	background: #fff;
	border: 1px solid #e8e0d6;
	border-radius: 12px;
	padding: 28px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.team-card:hover {
	transform: translateY(-2px);
	border-color: #d4c4b0;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.team-name {
	margin: 0 0 6px;
	font-size: 18px;
	font-weight: 600;
	color: #004731;
}

.team-position {
	margin: 0 0 20px;
	font-size: 13px;
	color: #8B6F47;
	line-height: 1.5;
	font-weight: 500;
}

.team-contacts {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-top: 16px;
	border-top: 1px solid #e8e0d6;
}

.contact-link {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #004731;
	text-decoration: none;
	font-size: 13px;
	transition: all 0.3s ease;
	padding: 8px;
	border-radius: 6px;
	margin: -8px;
}

.contact-link:hover {
	color: #8B6F47;
}

.contact-link svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	stroke: currentColor;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 1024px) {
	.team-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.team-section {
		padding: 60px 0;
	}

	.team-header h2 {
		font-size: 32px;
	}

	.team-department {
		margin-bottom: 50px;
	}

	.department-title {
		font-size: 20px;
		margin-bottom: 24px;
	}

	.team-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.team-card {
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.team-section {
		padding: 40px 0;
	}

	.team-header h2 {
		font-size: 24px;
	}

	.department-title {
		font-size: 18px;
	}

	.team-name {
		font-size: 16px;
	}

	.team-card {
		padding: 16px;
	}
}
/* CONFIGURATOR BUTTON */
/* CONFIGURATOR BUTTON */
.btn-configurator {
	width: 100%;
	padding: 16px 32px;
	background: var(--brand-900);
	color: #fff;
	border: none;
	border-radius: 10px;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-decoration: none;
	box-shadow: 0 10px 28px rgba(0,71,49,0.12);
	position: relative;
	overflow: hidden;
}

.btn-configurator::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.btn-configurator:hover {
	background: #003d27;
	transform: translateY(-2px);
	box-shadow: 0 15px 40px rgba(0,71,49,0.18);
}

.btn-configurator:hover::before {
	opacity: 1;
}

.btn-configurator:active {
	transform: translateY(0);
}

.btn-configurator .btn-text {
	position: relative;
	z-index: 1;
}

.btn-configurator .btn-icon {
	position: relative;
	z-index: 1;
	transition: transform 0.3s ease;
	font-size: 18px;
}

.btn-configurator:hover .btn-icon {
	transform: translateX(3px);
}

@media (max-width: 768px) {
	.btn-configurator {
		padding: 14px 24px;
		font-size: 14px;
	}
}
/* BUTTONS DIVIDER */
.buttons-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin: 20px 0;
	font-size: 13px;
	font-weight: 600;
	color: var(--text-700);
	letter-spacing: 1px;
	text-transform: uppercase;
}

.buttons-divider::before,
.buttons-divider::after {
	content: "";
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, transparent, #d0d0d0, transparent);
}

/* CONFIGURATOR BUTTON */
.btn-configurator {
	width: 100%;
	padding: 16px 32px;
	background: linear-gradient(135deg, #2f7c5e 0%, #1e5a45 100%);
	color: #fff;
	border: 1px solid rgba(158, 194, 166, 0.3);
	border-radius: 10px;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-decoration: none;
	box-shadow: 0 10px 28px rgba(47, 124, 94, 0.12);
	position: relative;
	overflow: hidden;
}

.btn-configurator::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.btn-configurator:hover {
	background: linear-gradient(135deg, #1e5a45 0%, #0f3d2f 100%);
	transform: translateY(-2px);
	box-shadow: 0 15px 40px rgba(47, 124, 94, 0.18);
}

.btn-configurator:hover::before {
	opacity: 1;
}

.btn-configurator:active {
	transform: translateY(0);
}

.btn-configurator .btn-text {
	position: relative;
	z-index: 1;
}

.btn-configurator .btn-icon {
	position: relative;
	z-index: 1;
	transition: transform 0.3s ease;
	font-size: 18px;
}

.btn-configurator:hover .btn-icon {
	transform: translateX(3px);
}

@media (max-width: 768px) {
	.buttons-divider {
		margin: 16px 0;
		font-size: 12px;
		gap: 12px;
	}

	.btn-configurator {
		padding: 14px 24px;
		font-size: 14px;
	}
}
/* CONFIGURATOR BUTTON */
.btn-configurator {
	width: 100%;
	padding: 16px 32px;
	background: var(--brand-900);
	color: #fff;
	border: none;
	border-radius: 10px;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-decoration: none;
	box-shadow: 0 10px 28px rgba(0,71,49,0.12);
	position: relative;
	overflow: hidden;
}

.btn-configurator::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.btn-configurator:hover {
	background: #003d27;
	transform: translateY(-2px);
	box-shadow: 0 15px 40px rgba(0,71,49,0.18);
}

.btn-configurator:hover::before {
	opacity: 1;
}

.btn-configurator:active {
	transform: translateY(0);
}

.btn-configurator .btn-text {
	position: relative;
	z-index: 1;
}

.btn-configurator .btn-icon {
	position: relative;
	z-index: 1;
	transition: transform 0.3s ease;
	font-size: 18px;
}

.btn-configurator:hover .btn-icon {
	transform: translateX(3px);
}

@media (max-width: 768px) {
	.btn-configurator {
		padding: 14px 24px;
		font-size: 14px;
	}
}
/* ===== MODAL ===== */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 9999;
	align-items: center;
	justify-content: center;
	padding: 20px;
	animation: fadeIn 0.3s ease;
}

.modal.active {
	display: flex;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.modal-content {
	background: #fff;
	border-radius: 12px;
	max-width: 600px;
	max-height: 80vh;
	overflow-y: auto;
	padding: 32px;
	position: relative;
	box-shadow: 0 20px 60px rgba(0, 71, 49, 0.2);
	animation: slideUp 0.3s ease;
}

@keyframes slideUp {
	from {
		transform: translateY(30px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: none;
	border: none;
	font-size: 32px;
	color: var(--text-700);
	cursor: pointer;
	transition: color 0.3s ease;
	padding: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-close:hover {
	color: var(--brand-900);
}

.modal-content h3 {
	margin: 0 0 24px;
	font-size: 28px;
	color: var(--brand-900);
	font-weight: 700;
}

.modal-body {
	margin-bottom: 24px;
}

.modal-body h4 {
	margin: 20px 0 10px;
	font-size: 15px;
	color: var(--brand-900);
	font-weight: 600;
}

.modal-body h4:first-child {
	margin-top: 0;
}

.modal-body p {
	margin: 0 0 12px;
	font-size: 13px;
	line-height: 1.6;
	color: var(--text-700);
}

.modal-body ul {
	margin: 12px 0;
	padding-left: 20px;
}

.modal-body li {
	font-size: 13px;
	line-height: 1.6;
	color: var(--text-700);
	margin-bottom: 6px;
}

.modal-body a {
	color: var(--brand-500);
	text-decoration: none;
	font-weight: 600;
}

.modal-body a:hover {
	text-decoration: underline;
}

.modal-footer {
	display: flex;
	gap: 12px;
	justify-content: flex-end;
	border-top: 1px solid #e0e0e0;
	padding-top: 20px;
}

.btn-modal-close {
	padding: 12px 28px;
	background: var(--brand-900);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-modal-close:hover {
	background: #003d27;
	transform: translateY(-2px);
}

/* PRIVACY LINK BUTTON */
.privacy-link-btn {
	background: none;
	border: none;
	color: var(--brand-500);
	font-weight: 600;
	border-bottom: 1px solid rgba(47, 124, 94, 0.3);
	cursor: pointer;
	padding: 0;
	font-size: inherit;
	font-family: inherit;
	transition: all 0.3s ease;
	display: inline;
}

.privacy-link-btn:hover {
	border-bottom-color: var(--brand-500);
	color: var(--brand-900);
}

@media (max-width: 768px) {
	.modal-content {
		padding: 24px;
		max-height: 90vh;
	}

	.modal-content h3 {
		font-size: 22px;
		margin-bottom: 16px;
	}

	.modal-body h4 {
		font-size: 14px;
	}

	.modal-body p,
	.modal-body li {
		font-size: 12px;
	}
}




@media (min-width: 769px) {
	.site-header {
		background: transparent !important;
		border-bottom: 1px solid transparent !important;
		backdrop-filter: none !important;
		-webkit-backdrop-filter: none !important;
		box-shadow: none !important;
	}

	.site-header.scrolled {
		background: rgba(255, 255, 255, 0.78) !important;
		border-bottom-color: rgba(230, 230, 230, 0.45) !important;
		backdrop-filter: blur(8px) !important;
		-webkit-backdrop-filter: blur(8px) !important;
		box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
	}
}


.faq-section {
	padding: 120px 0;
	background: linear-gradient(
		180deg,
		#faf8f5 0%,
		#f2ece6 38%,
		rgba(158, 194, 166, 0.14) 50%,
		#f2ece6 62%,
		#faf8f5 100%
	);
	position: relative;
	overflow: hidden;
}

.faq-section::before {
	content: "";
	position: absolute;
	top: -100px;
	right: -150px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(0, 71, 49, 0.07) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	filter: blur(40px);
}

.faq-section::after {
	content: "";
	position: absolute;
	bottom: -50px;
	left: -100px;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(91, 57, 32, 0.05) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	filter: blur(40px);
}

.faq-header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto clamp(40px, 5vw, 56px);
	position: relative;
	z-index: 2;
}

.faq-head-row {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}

.faq-chapter {
	flex-shrink: 0;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
	color: var(--brand-900);
	padding: 7px 11px;
	border: 1px solid rgba(0, 71, 49, 0.14);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.78);
}

.faq-eyebrow {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #6f8f86;
	margin: 0;
	font-weight: 600;
	font-family: "Inter", system-ui, sans-serif;
}

.faq-header h2 {
	font-family: "Inter", system-ui, sans-serif;
	font-size: clamp(1.75rem, 3.6vw, 2.5rem);
	color: #004731;
	margin: 0 0 14px;
	line-height: 1.18;
	font-weight: 700;
}

.faq-header p {
	font-size: 1rem;
	color: #5f6f64;
	line-height: 1.72;
	margin: 0;
	font-weight: 400;
	font-family: "Inter", system-ui, sans-serif;
}

.faq-list {
	max-width: 860px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.faq-item {
	background: rgba(255, 255, 255, 0.97);
	border: 1px solid rgba(0, 71, 49, 0.1);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 8px 28px rgba(15, 24, 20, 0.06);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	opacity: 0;
	transform: translateY(18px);
	will-change: opacity, transform;
	transition:
		opacity 0.62s cubic-bezier(0.22, 0.61, 0.36, 1),
		transform 0.62s cubic-bezier(0.22, 0.61, 0.36, 1),
		box-shadow 0.35s ease,
		border-color 0.3s ease;
}

.faq-section.is-visible .faq-item:nth-child(1){ opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.faq-section.is-visible .faq-item:nth-child(2){ opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.faq-section.is-visible .faq-item:nth-child(3){ opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.faq-section.is-visible .faq-item:nth-child(4){ opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.faq-section.is-visible .faq-item:nth-child(5){ opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.faq-section.is-visible .faq-item:nth-child(6){ opacity: 1; transform: translateY(0); transition-delay: 0.3s; }

.faq-section.is-visible .faq-item:hover{
	border-color: rgba(158, 194, 166, 0.55);
	box-shadow: 0 14px 40px rgba(0, 71, 49, 0.09);
	transform: translateY(-4px);
	transition-delay: 0s;
	transition-duration: 0.32s, 0.32s, 0.32s, 0.28s;
}

.faq-item.is-open{
	border-color: rgba(0, 71, 49, 0.28);
	box-shadow: 0 16px 44px rgba(0, 71, 49, 0.11);
}

.faq-heading {
	margin: 0;
	padding: 0;
}

.faq-question {
	width: 100%;
	padding: 22px 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 0;
	background: transparent;
	cursor: pointer;
	font-size: 16px;
	color: #004731;
	text-align: left;
	font-weight: 600;
	user-select: none;
	transition: background 0.25s ease, color 0.25s ease;
	gap: 16px;
	font-family: "Inter", system-ui, sans-serif;
	letter-spacing: 0.01em;
	line-height: 1.35;
}

.faq-question:focus {
	outline: none;
}

.faq-question:focus-visible {
	outline: 2px solid rgba(0, 71, 49, 0.4);
	outline-offset: 2px;
}

.faq-question:hover {
	background: rgba(158, 194, 166, 0.1);
	color: #003322;
}

.faq-item.is-open .faq-question {
	background: rgba(0, 71, 49, 0.04);
	color: #004731;
}

.faq-question span:first-child {
	flex: 1;
	line-height: 1.45;
}

.faq-icon {
	position: relative;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #004731;
	line-height: 1;
	border: 1px solid rgba(0, 71, 49, 0.15);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.6);
	transition: border-color 0.28s ease, color 0.25s ease, box-shadow 0.28s ease;
}

/* Plus: dwie równe kreski (0° i 90°). Po otwarciu obie obracają się do 0° → jedna linia „−”. */
.faq-icon::before,
.faq-icon::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 11px;
	height: 2px;
	margin: 0;
	background: currentColor;
	border-radius: 1px;
	transform-origin: center;
	transition:
		transform 0.48s cubic-bezier(0.22, 0.61, 0.36, 1),
		width 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.faq-icon::before {
	transform: translate(-50%, -50%) rotate(0deg);
}

.faq-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon {
	color: #004731;
	border-color: rgba(0, 71, 49, 0.28);
	box-shadow: 0 0 0 1px rgba(158, 194, 166, 0.35);
}

.faq-item.is-open .faq-icon::before,
.faq-item.is-open .faq-icon::after {
	transform: translate(-50%, -50%) rotate(0deg);
	width: 14px;
}

.faq-answer-wrap {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
	border-top: 1px solid rgba(0, 71, 49, 0.08);
}

.faq-item.is-open .faq-answer-wrap {
	max-height: 600px;
	overflow: visible;
	border-top-color: rgba(0, 71, 49, 0.14);
}

.faq-answer {
	padding: 22px 24px 26px;
	font-size: 15px;
	line-height: 1.75;
	color: #4d5652;
	font-weight: 400;
	font-family: "Inter", system-ui, sans-serif;
}

.faq-more {
	margin-top: 48px;
	text-align: center;
	position: relative;
	z-index: 2;
	opacity: 0;
	transform: translateY(14px);
	transition:
		opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1) 0.35s,
		transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1) 0.35s;
}

.faq-section.is-visible .faq-more{
	opacity: 1;
	transform: translateY(0);
}

.faq-more-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	padding: 14px 28px;
	background: #004731;
	border-radius: 999px;
	transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
	box-shadow: 0 10px 28px rgba(0, 71, 49, 0.22);
	letter-spacing: 0.04em;
	border: 1px solid rgba(255, 255, 255, 0.12);
	cursor: pointer;
	font-family: "Inter", system-ui, sans-serif;
}

.faq-more-link:hover {
	background: #0a5c40;
	transform: translateY(-2px);
	box-shadow: 0 16px 40px rgba(0, 71, 49, 0.28);
}

.faq-more-link:focus-visible {
	outline: 2px solid rgba(158, 194, 166, 0.9);
	outline-offset: 4px;
}

/* Wejście nagłówka FAQ przy scrollu */
.faq-section .faq-header {
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.72s cubic-bezier(0.22, 0.61, 0.36, 1),
		transform 0.72s cubic-bezier(0.22, 0.61, 0.36, 1);
	will-change: opacity, transform;
}

.faq-section.is-visible .faq-header {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 768px) {
	.faq-header {
		margin-bottom: 40px;
	}

	.faq-header h2 {
		font-size: clamp(1.5rem, 6vw, 1.85rem);
	}

	.faq-header p {
		font-size: 15px;
	}

	.faq-question {
		padding: 18px 16px;
		font-size: 15px;
		gap: 12px;
	}

	.faq-answer {
		padding: 18px 16px 22px;
		font-size: 14px;
	}

	.faq-more-link {
		width: 100%;
		max-width: 360px;
		padding: 14px 22px;
		font-size: 13px;
	}
}

.offer-home-top3{
  position: relative;
  background: linear-gradient(
    180deg,
    var(--cream) 0%,
    #fff 14%,
    #fff 86%,
    var(--cream) 100%
  );
  border: 0;
}

.offer-home-top3__head{
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}
.offer-home-top3__head-row{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.offer-home-top3__chapter{
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--brand-900);
  padding: 7px 11px;
  border: 1px solid rgba(0, 71, 49, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.75);
}
.offer-home-top3__eyebrow{
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: #6f8f86;
}
.offer-home-top3__head h2{
  margin: 0 0 0.65rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.85rem, 4vw, 2.45rem);
  font-weight: 600;
  line-height: 1.22;
  color: var(--brand-900);
  text-transform: none;
  letter-spacing: normal;
}
.offer-home-top3__title-accent{
  color: #386e4c;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 200;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  font-style: normal;
  letter-spacing: -0.02em;
}
.offer-home-top3__intro{
  margin: 0 auto;
  max-width: none;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1rem, 0.94rem + 0.28vw, 1.22rem);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: #4f665a;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(255,255,255,0.32);
}

.offer-home-top3__reveal{
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.offer-home-top3.is-visible .offer-home-top3__reveal--1{
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}
.offer-home-top3.is-visible .offer-home-top3__reveal--2{
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}
.offer-home-top3.is-visible .offer-home-top3__reveal--3{
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.offer-home-top3__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.offer-home-top3__card{
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0, 71, 49, 0.1);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.offer-home-top3.is-visible .offer-home-top3__card:nth-child(1){
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.28s;
}
.offer-home-top3.is-visible .offer-home-top3__card:nth-child(2){
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.38s;
}
.offer-home-top3.is-visible .offer-home-top3__card:nth-child(3){
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.48s;
}
.offer-home-top3.is-visible .offer-home-top3__card:nth-child(4){
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.58s;
}
.offer-home-top3__card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 71, 49, 0.14);
}
.offer-home-top3.is-visible .offer-home-top3__card:nth-child(1):hover,
.offer-home-top3.is-visible .offer-home-top3__card:nth-child(2):hover,
.offer-home-top3.is-visible .offer-home-top3__card:nth-child(3):hover,
.offer-home-top3.is-visible .offer-home-top3__card:nth-child(4):hover{
  transform: translateY(-4px);
}

@media (min-width: 769px){
  /* Lekko szybsze wejście sekcji na desktopie */
  .benefits-bar{
    transform: translateY(20px);
    transition: opacity 0.62s ease, transform 0.62s ease;
  }
  .about-photo{
    transition-duration: 0.72s, 0.78s;
  }
  .about-photo--vice{ transition-delay: 0.1s; }
  .about-photo--hero,
  .about-photo--hall{ transition-delay: 0.18s; }
  .about-reveal{
    transition-duration: 0.6s, 0.6s;
  }
  .about-reveal--eyebrow{ transition-delay: 0.04s; }
  .about-reveal--title{ transition-delay: 0.1s; }
  .about-reveal--lead{ transition-delay: 0.16s; }
  .about-reveal--text{ transition-delay: 0.22s; }
  .about-features .feature{
    transition-duration: 0.52s, 0.55s;
  }
  .about-features.is-visible .feature:nth-child(1){ transition-delay: 0.26s; }
  .about-features.is-visible .feature:nth-child(2){ transition-delay: 0.32s; }
  .about-features.is-visible .feature:nth-child(3){ transition-delay: 0.38s; }
  .about-features.is-visible .feature:nth-child(4){ transition-delay: 0.44s; }
  .tst .tst-head,
  .tst .tst-slider{
    transition-duration: 0.58s, 0.6s;
  }
  .tst .tst-slider{ transition-delay: 0.06s; }
  .offer-home-top3__reveal,
  .offer-home-top3__card{
    transition-duration: 0.56s, 0.56s;
  }
  .offer-home-top3.is-visible .offer-home-top3__reveal--1{ transition-delay: 0.03s; }
  .offer-home-top3.is-visible .offer-home-top3__reveal--2{ transition-delay: 0.08s; }
  .offer-home-top3.is-visible .offer-home-top3__reveal--3{ transition-delay: 0.14s; }
  .offer-home-top3.is-visible .offer-home-top3__card:nth-child(1){ transition-delay: 0.2s; }
  .offer-home-top3.is-visible .offer-home-top3__card:nth-child(2){ transition-delay: 0.28s; }
  .offer-home-top3.is-visible .offer-home-top3__card:nth-child(3){ transition-delay: 0.36s; }
  .offer-home-top3.is-visible .offer-home-top3__card:nth-child(4){ transition-delay: 0.44s; }
  .knowledge-base-section .knowledge-header{
    transition-duration: 0.58s, 0.58s;
  }
  .knowledge-card{
    transition-duration: 0.56s, 0.56s;
  }
  .knowledge-base-section.is-visible .knowledge-card:nth-child(1){ transition-delay: 0.03s; }
  .knowledge-base-section.is-visible .knowledge-card:nth-child(2){ transition-delay: 0.07s; }
  .knowledge-base-section.is-visible .knowledge-card:nth-child(3){ transition-delay: 0.11s; }
  .knowledge-base-section.is-visible .knowledge-card:nth-child(4){ transition-delay: 0.15s; }
  .knowledge-base-section.is-visible .knowledge-card:nth-child(5){ transition-delay: 0.19s; }
  .knowledge-base-section.is-visible .knowledge-card:nth-child(6){ transition-delay: 0.23s; }
  .faq-section .faq-header,
  .faq-item{
    transition-duration: 0.52s, 0.52s;
  }
  .faq-section.is-visible .faq-item:nth-child(1){ transition-delay: 0.03s; }
  .faq-section.is-visible .faq-item:nth-child(2){ transition-delay: 0.07s; }
  .faq-section.is-visible .faq-item:nth-child(3){ transition-delay: 0.11s; }
  .faq-section.is-visible .faq-item:nth-child(4){ transition-delay: 0.15s; }
  .faq-section.is-visible .faq-item:nth-child(5){ transition-delay: 0.19s; }
  .faq-section.is-visible .faq-item:nth-child(6){ transition-delay: 0.23s; }
  body.home .contact-section .contact-header,
  body.home .contact-section .contact-info-card,
  body.home .contact-section .contact-form-wrapper{
    transition-duration: 0.56s, 0.56s;
  }
  body.home .contact-section.is-visible .contact-info-card{ transition-delay: 0.06s; }
  body.home .contact-section.is-visible .contact-form-wrapper{ transition-delay: 0.12s; }
}

.offer-home-top3__card--wide{
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(320px, 1fr);
  align-items: stretch;
  height: 305px;
}

.offer-home-top3__media{
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8efe9;
}
.offer-home-top3__media--wide{
  aspect-ratio: auto;
  min-height: 0;
  height: 100%;
}
.offer-home-top3__card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.offer-home-top3__card:hover img{
  transform: scale(1.06);
}

.offer-home-top3__body{
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.5rem 1.4rem;
}
.offer-home-top3__body--wide{
  justify-content: center;
  padding: 1.35rem 1.7rem 1.4rem;
}
.offer-home-top3__body--wide h3{
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.offer-home-top3__body--wide p{
  max-width: 52ch;
}
.offer-home-top3__num{
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
  color: rgba(0, 71, 49, 0.07);
  pointer-events: none;
  user-select: none;
}
.offer-home-top3__body h3{
  margin: 0 3rem 0.5rem 0;
  color: #004731;
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.35;
}
.offer-home-top3__body p{
  margin: 0 0 0.75rem;
  color: rgba(18, 20, 19, 0.72);
  line-height: 1.65;
  font-size: 0.9375rem;
  flex: 1;
}
.offer-home-top3__cta{
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #004731;
}
.offer-home-top3__cta-arrow{
  display: inline-block;
  transition: transform 0.3s ease;
}
.offer-home-top3__card:hover .offer-home-top3__cta-arrow{
  transform: translateX(5px);
}

.offer-home-top3__actions{
  margin-top: 2rem;
  text-align: center;
}
.offer-home-top3__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  border: 2px solid #004731;
  background: transparent;
  color: #004731;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 800;
  font-family: "Inter", system-ui, sans-serif;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.3s ease;
}
.offer-home-top3__btn:hover{
  background: #004731;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 71, 49, 0.22);
  transform: translateY(-2px);
}
.offer-home-top3__btn::after{
  content: "→";
  font-size: 0.9em;
  margin-left: 0.45rem;
  transition: transform 0.3s ease;
}
.offer-home-top3__btn:hover::after{
  transform: translateX(4px);
}

@media (max-width: 1024px){
  .offer-home-top3__grid{
    grid-template-columns: 1fr;
  }
  .offer-home-top3__head{
    margin-bottom: 1.5rem;
  }
  .offer-home-top3__intro{
    white-space: normal;
  }
  .offer-home-top3__card--wide{
    grid-template-columns: 1fr;
    height: auto;
  }
  .offer-home-top3__media--wide{
    min-height: 240px;
    height: auto;
  }
}

.hero,
.about-section,
.offer-home-top3,
.tst,
.knowledge-base-section,
.faq-section,
.contact-section{
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}


.about-section,
.offer-home-top3,
.tst,
.knowledge-base-section,
.faq-section,
.contact-section{
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}


@media (max-width: 768px){
  .about-section,
  .offer-home-top3,
  .tst,
  .knowledge-base-section,
  .faq-section,
  .contact-section{
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }
}

/* Większy padding tylko w „O nas” (nad globalnym resetem sekcji) */
.about-section{
  padding-top: clamp(88px, 11vw, 120px) !important;
  padding-bottom: clamp(104px, 13vw, 148px) !important;
}
@media (max-width: 768px){
  .about-section{
    padding-top: 60px !important;
    padding-bottom: 96px !important;
  }
}

.offer-home-top3{
  padding-top: clamp(8px, 1vw, 20px) !important;
  padding-bottom: clamp(88px, 11vw, 120px) !important;
}
@media (max-width: 768px){
  .offer-home-top3{
    padding-top: 8px !important;
    padding-bottom: 84px !important;
  }
}

/* Skrócenie dolnego paddingu „O nas” — sekcje bliżej siebie */
.about-section{
  padding-bottom: clamp(56px, 7vw, 80px) !important;
}
@media (max-width: 768px){
  .about-section{
    padding-bottom: 56px !important;
  }
}

/* Padding sekcji opinii — dół nieco ciaśniejszy niż góra */
.tst{
  padding-top: clamp(80px, 9.5vw, 112px) !important;
  padding-bottom: clamp(68px, 7.8vw, 100px) !important;
}
@media (max-width: 768px){
  .tst{
    padding-top: 60px !important;
    padding-bottom: 52px !important;
  }
  .tst-head-row{
    margin-bottom: 0.85rem;
  }
}

/* Baza wiedzy — padding i oddech sekcji */
.knowledge-base-section{
  padding-top: clamp(80px, 9.5vw, 112px) !important;
  padding-bottom: clamp(88px, 11vw, 124px) !important;
}
@media (max-width: 768px){
  .knowledge-base-section{
    padding-top: 56px !important;
    padding-bottom: 64px !important;
  }
}
/* FAQ — padding sekcji */
.faq-section{
  padding-top: clamp(80px, 9.5vw, 112px) !important;
  padding-bottom: clamp(88px, 11vw, 124px) !important;
}
@media (max-width: 768px){
  .faq-section{
    padding-top: 56px !important;
    padding-bottom: 64px !important;
  }
}

/* Kontakt / formularz — padding sekcji (nad globalnym resetem 72px) */
.contact-section{
  padding-top: clamp(80px, 9.5vw, 112px) !important;
  padding-bottom: clamp(88px, 11vw, 124px) !important;
}
@media (max-width: 768px){
  .contact-section{
    padding-top: 56px !important;
    padding-bottom: 64px !important;
  }
}

@media (max-width: 768px){
  body.home{
    padding-top: 0 !important;
  }
}

@media (max-width: 768px) and (max-height: 740px){
  .hero{
    padding-top: calc(var(--mobile-header-height, 60px) + env(safe-area-inset-top, 0px) + 0.65rem);
    padding-bottom: 1rem;
  }
  .hero-container{
    gap: 0.75rem;
  }
  .hero h1{
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1.08;
  }
  .hero-accent{
    margin-top: -0.45rem;
    font-size: clamp(1.2rem, 5.5vw, 1.45rem);
  }
  .hero .btn-main,
  .hero .btn-ghost{
    padding: 14px 22px;
    font-size: 0.95rem;
  }
  .hero-stats{
    padding-top: 0.65rem;
    gap: 0.65rem 0.25rem;
  }
  .hero-stat h3{
    font-size: clamp(1.25rem, 5vw, 1.5rem);
  }
  .hero-stat p{
    font-size: clamp(0.56rem, 2.2vw, 0.66rem);
  }
}
@media (max-width: 768px){
  body:not(.home){
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  body.home{
    margin-top: 0;
    padding-top: 0 !important;
  }

  /* Podstrony: treść zaczyna się pod fixed headerem (mobile) */
  body:not(.home) .where-buy-section,
  body:not(.home) .knowledge-hero,
  body:not(.home) .contact-section,
  body:not(.home) .pj-docs-section,
  body:not(.home) .pj-katalog-section{
    padding-top: calc(var(--mobile-header-height, 60px) + 1.25rem) !important;
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08));
  transition: background 0.6s ease;
}

.hero-overlay.scrolled {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.14));
}
.hero-text {
  max-width: 720px;
  margin: 0 auto clamp(3rem, 8vw, 4.5rem);
  animation: fadeInUp 0.7s ease-out 0.3s both;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-text-accent {
  color:#9EC2A6;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  font-weight: 300;
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  line-height: 1.8;
  letter-spacing: 0.4px;
}

@media (max-width: 768px) {
  .hero-text {
    gap: 0.8rem;
    margin: 0 auto 2.5rem;
  }

  .hero-text-accent {
    font-size: 1.1rem;
  }
}
.hero-text-main {
  max-width: 650px;
  margin: 0 auto 45px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-text-accent {
  font-size: 26px;
  font-style: italic;
  color: var(--brand-500);
  line-height: 1.7;
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-text-accent {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .hero-text-accent {
    font-size: 18px;
  }
}
.tst::before,
.tst::after{
  pointer-events:none;
}

/* ===== Popup podziękowania formularza — luxury premium ===== */
body.contact-thank-modal-open{
  overflow: hidden;
}

.contact-thank-modal{
  padding: clamp(20px, 5vw, 40px);
  background: transparent;
  animation: none;
  z-index: 10050;
}

.contact-thank-modal.active{
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-thank-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-thank-modal.active .contact-thank-modal__backdrop{
  opacity: 1;
}

.contact-thank-modal__panel{
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  padding: clamp(32px, 6vw, 44px) clamp(28px, 5vw, 36px) clamp(28px, 5vw, 36px);
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  text-align: center;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.contact-thank-modal.active .contact-thank-modal__panel{
  opacity: 1;
  transform: translateY(0);
}

.contact-thank-modal__close{
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 71, 49, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: var(--brand-900);
  cursor: pointer;
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s ease;
}

.contact-thank-modal__close:hover{
  background: #fff;
  border-color: rgba(0, 71, 49, 0.22);
  transform: rotate(90deg);
}

.contact-thank-modal__brand{
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 1.1rem;
}

.contact-thank-modal__logo{
  display: block;
  width: min(280px, 78vw);
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.contact-thank-modal__title{
  position: relative;
  z-index: 1;
  margin: 0 0 0.75rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.5rem, 4vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #121816;
  letter-spacing: -0.02em;
}

.contact-thank-modal__message{
  position: relative;
  z-index: 1;
  margin: 0 auto 1.5rem;
  max-width: 34ch;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.72;
  color: var(--text-700);
  font-weight: 400;
}

.contact-thank-modal__timeline{
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 1rem 1.1rem;
  text-align: left;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  display: grid;
  gap: 0.65rem;
}

.contact-thank-modal__step{
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-700);
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.contact-thank-modal.active .contact-thank-modal__step:nth-child(1){
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.35s;
}
.contact-thank-modal.active .contact-thank-modal__step:nth-child(2){
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.45s;
}
.contact-thank-modal.active .contact-thank-modal__step:nth-child(3){
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.55s;
}

.contact-thank-modal__step-num{
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-900);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact-thank-modal__step-text{
  flex: 1;
}

.contact-thank-modal__cta{
  position: relative;
  z-index: 1;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border: none;
  border-radius: 8px;
  background: var(--brand-900);
  color: #fff;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 71, 49, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-thank-modal__cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 71, 49, 0.24);
  background: #003d27;
}

.contact-thank-modal__cta:active{
  transform: translateY(0);
}

.contact-thank-modal__cta-arrow{
  transition: transform 0.28s ease;
  font-size: 1.1em;
}

.contact-thank-modal__cta:hover .contact-thank-modal__cta-arrow{
  transform: translateX(4px);
}

@media (max-width: 480px){
  .contact-thank-modal__panel{
    border-radius: 16px;
    padding-top: 32px;
  }

  .contact-thank-modal__timeline{
    padding: 0.85rem 0.95rem;
  }

  .contact-thank-modal__message{
    font-size: 0.875rem;
  }
}

@media (prefers-reduced-motion: reduce){
  .contact-thank-modal__backdrop,
  .contact-thank-modal__panel,
  .contact-thank-modal__step{
    transition: none !important;
    animation: none !important;
  }

  .contact-thank-modal.active .contact-thank-modal__panel,
  .contact-thank-modal.active .contact-thank-modal__step{
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Header UI moved from header.php to keep HTML lighter */
.site-header {
	background: #ffffff !important;
	border-bottom: 1px solid rgba(230, 230, 230, 0.6);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	max-width: 100vw;
	box-sizing: border-box;
	overflow: visible;
	z-index: 1000;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 0.7rem 0;
	width: 100%;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.header-inner {
	max-width: 1440px;
	width: 100%;
	margin: 0 auto;
	padding: 0 4rem;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 2rem;
	box-sizing: border-box;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-logo {
	grid-column: 1;
	justify-self: start;
	flex-shrink: 0;
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 1rem;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-logo a {
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.site-logo img {
	height: 50px;
	width: auto;
	display: block;
	object-fit: contain;
	transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled .site-logo img {
	height: 46px;
}

.main-navigation {
	grid-column: 2;
	min-width: 0;
	max-width: 100%;
	display: flex;
	justify-content: center;
	justify-self: center;
	width: 100%;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-navigation > ul,
#primary-menu {
	list-style: none;
	display: flex;
	width: auto;
	justify-content: center;
	gap: clamp(2.35rem, 3vw, 3.6rem);
	transition: gap 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	color: #1a1a1a;
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.15px;
	text-transform: uppercase;
	transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	padding: 0.5rem 0;
	display: block;
}

.main-navigation a:hover {
	color: #1a4d3a;
}

.main-navigation a::after {
	content: "";
	position: absolute;
	bottom: 1px;
	left: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, #1a4d3a 0%, #5ba574 100%);
	transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-navigation a:hover::after {
	width: 100%;
}

.main-navigation svg {
	display: none;
}

.mobile-menu-footer {
	display: none;
}

.header-right {
	grid-column: 3;
	justify-self: end;
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 2.2rem;
	flex-shrink: 0;
	padding-left: 2rem;
	border-left: 1.5px solid rgba(200, 200, 200, 0.4);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-menu {
	grid-column: 3;
	justify-self: end;
}

.header-phone {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.phone-icon {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	background: rgba(26, 77, 58, 0.05);
	border-radius: 50%;
}

.phone-icon svg {
	width: 18px;
	height: 18px;
	stroke: #1a4d3a;
	stroke-width: 1.8;
	fill: none;
	transition: stroke 0.3s ease;
}

.phone-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	line-height: 1.3;
}

.phone-label {
	font-size: 10px;
	color: #666666;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.phone-number {
	font-size: 15px;
	font-weight: 800;
	color: #1a4d3a;
	letter-spacing: 0.4px;
	transition: font-size 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-phone:hover .phone-number {
	color: #5ba574;
}

.header-phone:hover .phone-icon svg {
	stroke: #5ba574;
}

.header-phone:hover .phone-icon {
	background: rgba(91, 181, 116, 0.1);
}

.cta-button {
	background: #1a4d3a;
	color: #ffffff;
	padding: 0.85rem 2.2rem;
	border: 2px solid #1a4d3a;
	border-radius: 3px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.2px;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	white-space: normal;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	max-width: 200px;
}

.cta-button::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: #5ba574;
	transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: -1;
}

.cta-button:hover::before {
	left: 0;
}

.cta-button:hover {
	box-shadow: 0 10px 24px rgba(26, 77, 58, 0.2);
}

.site-header.scrolled {
	padding: 0.5rem 0 !important;
	background: rgba(255, 255, 255, 0.95);
	border-bottom-color: rgba(230, 230, 230, 0.3);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.site-header.scrolled .header-inner {
	padding: 0 3rem;
	gap: 1.75rem;
	min-height: 64px;
}

.site-header.scrolled .main-navigation > ul,
.site-header.scrolled #primary-menu {
	gap: clamp(2.1rem, 2.6vw, 3.2rem);
}

.site-header.scrolled .main-navigation a {
	font-size: 12px;
	padding: 0.4rem 0;
}

.site-header.scrolled .phone-number {
	font-size: 14px;
}

.site-header.scrolled .phone-icon {
	width: 30px;
	height: 30px;
}

.site-header.scrolled .phone-icon svg {
	width: 16px;
	height: 16px;
}

.site-header.scrolled .cta-button {
	padding: 0.8rem 2rem;
	font-size: 11px;
}

.site-header.scrolled .header-right {
	gap: 2rem;
	padding-left: 1.8rem;
}

.site-header.scrolled .phone-label {
	font-size: 9px;
}

.hamburger-menu {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	gap: 5px;
	width: 26px;
	position: relative;
	transition: all 0.3s ease;
	z-index: 2;
}

.hamburger-menu span {
	width: 26px;
	height: 2px;
	background: #1a4d3a;
	border-radius: 2px;
	transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
	transform: rotate(45deg) translateY(12px) scaleX(1.1);
	opacity: 1;
}

.hamburger-menu.active span:nth-child(2) {
	opacity: 0;
	transform: scale(0);
}

.hamburger-menu.active span:nth-child(3) {
	transform: rotate(-45deg) translateY(-12px) scaleX(1.1);
	opacity: 1;
}

.hamburger-menu:hover span:not(.active span:nth-child(2)) {
	background: #2d6b4f;
}

.main-navigation a {
	color: #1a4d3a;
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.15px;
	text-transform: uppercase;
	transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	padding: 0.5rem 0;
	display: block;
	white-space: nowrap;
}

.hamburger-menu.active:hover span:nth-child(1),
.hamburger-menu.active:hover span:nth-child(3) {
	background: #5ba574;
	transform-origin: center;
}

/* Tablet i desktop — zawsze pełne menu (hamburger tylko ≤768px). */
@media (min-width: 769px) {
	.hamburger-menu {
		display: none !important;
	}

	.header-inner {
		display: grid !important;
		grid-template-columns: auto minmax(0, 1fr) auto;
		align-items: center;
	}

	.main-navigation {
		display: flex !important;
		position: static !important;
		top: auto !important;
		left: auto !important;
		right: auto !important;
		width: 100%;
		min-width: 0;
		max-width: 100%;
		overflow: visible !important;
		padding: 0 !important;
		margin: 0;
		background: transparent !important;
		box-shadow: none !important;
		border: none !important;
		max-height: none !important;
		flex-direction: row !important;
		justify-content: center !important;
		animation: none !important;
	}

	.main-navigation > ul,
	#primary-menu {
		flex-direction: row !important;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		justify-content: center;
		gap: clamp(1rem, 1.8vw, 2.35rem);
		overflow: visible !important;
	}

	.main-navigation .mega-menu__list {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
		align-items: stretch !important;
		justify-content: flex-start !important;
		width: 100% !important;
		max-width: none !important;
		min-width: 0 !important;
		gap: 0 !important;
	}

	.main-navigation .mega-menu {
		display: block !important;
		position: absolute !important;
		top: calc(100% + 8px) !important;
		left: 50% !important;
		right: auto !important;
		transform: translateX(-50%) translateY(4px);
	}

	.main-navigation li {
		overflow: visible !important;
	}

	.main-navigation a {
		display: block !important;
		padding: 0.5rem 0 !important;
		font-size: 13px;
		letter-spacing: 1px;
	}

	.main-navigation .has-mega-menu > .menu-link {
		display: inline-flex !important;
		align-items: center;
		gap: 0.35rem;
		white-space: nowrap;
	}

	.main-navigation a::after {
		display: block !important;
	}

	.main-navigation svg:not(.menu-chevron) {
		display: none !important;
	}

	.main-navigation .menu-chevron {
		display: inline-block !important;
		flex-shrink: 0;
	}

	.mobile-menu-footer {
		display: none !important;
	}

	.header-right {
		display: flex !important;
	}
}

@media (min-width: 769px) and (max-width: 1100px) {
	.header-inner {
		padding: 0 1.25rem !important;
		gap: 0.85rem;
	}

	.main-navigation > ul,
	#primary-menu {
		gap: clamp(0.7rem, 1.2vw, 1rem);
	}

	.main-navigation a {
		font-size: 10px;
		letter-spacing: 0.3px;
	}

	.site-logo img {
		height: 42px !important;
	}

	.header-right {
		gap: 0.75rem;
		padding-left: 0.75rem;
	}

	.phone-label {
		display: none;
	}

	.phone-number {
		font-size: 13px;
	}

	.cta-button {
		padding: 0.62rem 0.95rem;
		font-size: 9px;
		max-width: 132px;
	}
}

@media (min-width: 1101px) and (max-width: 1500px) {
	.header-inner {
		padding: 0 2.75rem;
		gap: 1.5rem;
	}

	.main-navigation > ul,
	#primary-menu {
		gap: clamp(1.35rem, 2vw, 2rem);
	}

	.main-navigation a {
		font-size: 12px;
		letter-spacing: 0.65px;
	}

	.phone-label {
		display: none;
	}

	.cta-button {
		padding: 0.78rem 1.6rem;
		font-size: 11px;
	}
}

@media (max-width: 768px) {
	html.mobile-nav-open,
	body.mobile-nav-open {
		overflow: hidden !important;
		height: 100%;
		overscroll-behavior: none;
		touch-action: none;
	}

	body.mobile-nav-open {
		position: fixed;
		width: 100%;
		left: 0;
		right: 0;
	}

	body.mobile-nav-open .main-navigation {
		touch-action: pan-y;
		-webkit-overflow-scrolling: touch;
	}

	.site-header {
		position: fixed;
		width: 100%;
		max-width: 100vw;
		box-sizing: border-box;
		overflow: visible;
		padding:
			calc(0.7rem + env(safe-area-inset-top, 0px))
			0
			0.7rem !important;
		height: auto;
		min-height: 0;
		background: #ffffff !important;
		border-bottom: 1px solid rgba(230, 230, 230, 0.6) !important;
		box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05) !important;
		backdrop-filter: none !important;
		-webkit-backdrop-filter: none !important;
		transition:
			padding 0.3s cubic-bezier(0.4, 0, 0.2, 1),
			min-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
			background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
			box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
			border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
			backdrop-filter 0.3s cubic-bezier(0.4, 0, 0.2, 1),
			-webkit-backdrop-filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.site-header:not(.scrolled) {
		background: #ffffff !important;
		border-bottom: 1px solid rgba(230, 230, 230, 0.6) !important;
		box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05) !important;
		backdrop-filter: none !important;
		-webkit-backdrop-filter: none !important;
	}

	.site-header.scrolled {
		padding:
			calc(0.5rem + env(safe-area-inset-top, 0px))
			0
			0.5rem !important;
		background: rgba(255, 255, 255, 0.74) !important;
		border-bottom-color: rgba(230, 230, 230, 0.35) !important;
		backdrop-filter: blur(10px) !important;
		-webkit-backdrop-filter: blur(10px) !important;
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
	}

	.site-header.scrolled .header-inner {
		min-height: 52px;
		padding: 0 1rem !important;
		gap: 0.65rem !important;
	}

	.site-header.scrolled .site-logo img {
		height: 36px !important;
	}

	body {
		padding-top: var(--mobile-header-height, 60px);
		transition: padding-top 0.35s ease;
	}

	body.home {
		padding-top: 0 !important;
	}

	.header-inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0 1.15rem !important;
		gap: 0.75rem !important;
		min-height: 56px;
		transition: padding 0.35s ease;
	}

	.site-logo,
	.hamburger-menu {
		flex-shrink: 0;
	}

	.hamburger-menu {
		display: flex;
		order: 3;
		grid-column: auto;
	}

	.site-logo {
		order: 1;
		grid-column: auto;
		gap: 0.7rem;
	}

	.site-logo img {
		height: 40px !important;
		transition: height 0.35s ease;
	}

	.main-navigation {
		order: 4;
		grid-column: auto;
		width: 100%;
		display: none;
		position: fixed;
		top: var(--mobile-header-height, 60px);
		transition: top 0.35s ease;
		left: 0;
		right: 0;
		background: linear-gradient(135deg, #fef9f3 0%, #fefcf8 100%);
		flex-direction: column;
		box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
		padding: 1.5rem !important;
		border-top: none;
		z-index: 998;
		max-height: calc(100dvh - var(--mobile-header-height, 60px));
		overflow-y: auto;
		animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.main-navigation.active {
		display: flex;
	}

	.main-navigation ul {
		flex-direction: column;
		justify-content: flex-start;
		gap: 0.8rem;
	}

	.main-navigation li {
		border-radius: 8px;
		overflow: hidden;
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.main-navigation li:hover {
		background: rgba(26, 77, 58, 0.08);
	}

	.main-navigation {
		justify-content: flex-start;
		justify-self: auto;
	}

	.main-navigation a {
		font-size: 14px;
		padding: 1rem 1.2rem !important;
		letter-spacing: 0.9px;
		display: flex;
		align-items: center;
		gap: 0.8rem;
		color: #1a4d3a;
		font-weight: 700;
	}

	.main-navigation a::after {
		display: none;
	}

	.main-navigation svg {
		display: block;
		width: 20px;
		height: 20px;
		stroke: #1a4d3a;
		stroke-width: 2;
		fill: none;
		transition: transform 0.3s ease;
		flex-shrink: 0;
	}

	.main-navigation li:hover a svg {
		transform: translateX(4px);
	}

	.mobile-menu-footer {
		display: flex !important;
		margin-top: 1.5rem;
		padding-top: 1.5rem;
		border-top: 2px solid rgba(26, 77, 58, 0.15);
		flex-direction: column;
		gap: 1rem;
	}

	.mobile-phone-call {
		display: flex;
		align-items: center;
		gap: 0.8rem;
		text-decoration: none;
		color: #1a4d3a;
		font-weight: 700;
		transition: all 0.3s ease;
		padding: 0.8rem;
		border-radius: 8px;
	}

	.mobile-phone-call:hover {
		background: rgba(26, 77, 58, 0.1);
	}

	.mobile-phone-call svg {
		width: 20px;
		height: 20px;
		stroke: #1a4d3a;
		stroke-width: 2;
		fill: none;
	}

	.phone-call-text {
		display: flex;
		flex-direction: column;
		gap: 2px;
	}

	.phone-call-label {
		font-size: 10px;
		color: #999999;
		font-weight: 600;
		letter-spacing: 0.5px;
		text-transform: uppercase;
	}

	.phone-call-number {
		font-size: 15px;
		font-weight: 800;
		color: #1a4d3a;
	}

	.mobile-cta-button {
		background: linear-gradient(135deg, #1a4d3a 0%, #2d6b4f 100%);
		color: #ffffff !important;
		padding: 1.4rem 1.6rem !important;
		border: none;
		border-radius: 12px;
		font-size: 15px;
		font-weight: 700;
		letter-spacing: 0.3px;
		text-decoration: none;
		cursor: pointer;
		transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		text-transform: none;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 0.8rem;
		box-shadow: 0 8px 24px rgba(26, 77, 58, 0.3);
		line-height: 1.5;
		min-height: 80px;
		word-wrap: break-word;
		white-space: normal;
		text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	}

	.mobile-cta-button svg {
		width: 18px;
		height: 18px;
		stroke: #ffffff;
		stroke-width: 2;
		fill: none;
	}

	.mobile-cta-button:hover {
		box-shadow: 0 8px 20px rgba(26, 77, 58, 0.3);
		transform: translateY(-2px);
	}

	.header-right {
		display: none;
	}

}

@media (max-width: 480px) {
	.site-header {
		position: fixed;
		width: 100%;
		padding:
			calc(0.7rem + env(safe-area-inset-top, 0px))
			0
			0.7rem !important;
		min-height: 0;
	}

	.site-header.scrolled {
		padding:
			calc(0.5rem + env(safe-area-inset-top, 0px))
			0
			0.5rem !important;
	}

	.site-header.scrolled .site-logo img {
		height: 35px !important;
	}

	body {
		padding-top: var(--mobile-header-height, 56px);
	}

	body.home {
		padding-top: 0 !important;
	}

	.header-inner {
		padding: 0 0.95rem !important;
		gap: 0.55rem;
		min-height: 52px;
	}

	.site-logo img {
		height: 38px !important;
	}

	.hamburger-menu span {
		width: 22px;
		height: 1.8px;
		gap: 4px;
	}

	.main-navigation {
		top: var(--mobile-header-height, 56px);
		max-height: calc(100dvh - var(--mobile-header-height, 56px));
		padding: 1.2rem !important;
	}

	.main-navigation ul {
		gap: 0.6rem;
	}

	.main-navigation a {
		font-size: 13px;
		padding: 0.9rem 1rem !important;
		letter-spacing: 0.8px;
	}

	.main-navigation svg {
		width: 18px;
		height: 18px;
	}

	.mobile-menu-footer {
		margin-top: 1rem;
		padding-top: 1rem;
		gap: 0.8rem;
	}

	.mobile-phone-call {
		padding: 0.7rem;
	}

	.phone-call-number {
		font-size: 14px;
	}

	.mobile-cta-button {
		padding: 0.9rem 1.2rem !important;
		font-size: 12px;
	}

}

.hamburger-menu .hamburger-close {
	display: none !important;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.hamburger-menu.active span {
	display: none;
}

.hamburger-menu.active .hamburger-close {
	display: block !important;
}

.main-navigation .has-mega-menu {
	position: relative;
}

.main-navigation .has-mega-menu > .menu-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	white-space: nowrap;
}

.main-navigation .menu-chevron {
	display: inline-block;
	width: 12px;
	height: 12px;
	margin-left: 2px;
	color: currentColor;
	stroke: currentColor;
	flex-shrink: 0;
	vertical-align: middle;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-navigation .has-mega-menu:hover > .menu-link .menu-chevron,
.main-navigation .has-mega-menu:focus-within > .menu-link .menu-chevron {
	transform: rotate(180deg);
}

.mega-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%) translateY(4px);
	width: max-content;
	min-width: 240px;
	max-width: min(280px, 92vw);
	background: #fff;
	border: 1px solid rgba(0, 71, 49, 0.06);
	border-radius: 10px;
	padding: 0.35rem 0.25rem;
	box-shadow:
		0 1px 2px rgba(15, 20, 18, 0.04),
		0 16px 32px rgba(15, 20, 18, 0.1);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1),
		visibility 0s linear 0.28s;
	z-index: 1001;
}

.mega-menu::before {
	content: "";
	position: absolute;
	top: -14px;
	left: 0;
	right: 0;
	height: 14px;
}

.main-navigation .has-mega-menu:hover > .mega-menu,
.main-navigation .has-mega-menu:focus-within > .mega-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0) !important;
	transition:
		opacity 0.24s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1),
		visibility 0s linear 0s;
}

.mega-menu__list {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	display: flex !important;
	flex-direction: column !important;
	flex-wrap: nowrap !important;
	align-items: stretch !important;
	justify-content: flex-start !important;
	width: 100% !important;
	gap: 0 !important;
}

.mega-menu__list li {
	margin: 0 !important;
	padding: 0 !important;
}

.mega-menu__list a {
	position: relative;
	display: flex !important;
	align-items: baseline;
	gap: 0.55rem;
	padding: 0.42rem 0.7rem !important;
	border-radius: 6px;
	color: var(--brand-900, #004731) !important;
	text-decoration: none !important;
	transition: background 0.2s ease, color 0.2s ease;
}

.mega-menu__list a::after {
	display: none !important;
}

.mega-menu__num {
	flex-shrink: 0;
	width: 22px;
	font-family: "Inter", system-ui, sans-serif;
	font-size: 9.5px !important;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.04em;
	color: rgba(0, 71, 49, 0.36);
	transition: color 0.2s ease;
}

.mega-menu__text {
	flex: 1;
	font-family: "Inter", system-ui, sans-serif;
	font-size: 10.5px !important;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase !important;
	white-space: normal;
	line-height: 1.35;
	color: var(--brand-900, #004731);
	transition: color 0.2s ease;
}

.mega-menu__list a:hover,
.mega-menu__list a:focus-visible {
	background: rgba(158, 194, 166, 0.14);
}

.mega-menu__list a:hover .mega-menu__num,
.mega-menu__list a:focus-visible .mega-menu__num {
	color: var(--brand-900, #004731);
}

.mega-menu__list a:hover .mega-menu__text,
.mega-menu__list a:focus-visible .mega-menu__text {
	color: #003a28;
}

.mega-menu__cta {
	position: relative;
	display: block !important;
	margin: 0.2rem 0 0 !important;
	padding: 0.4rem 0.55rem !important;
	border-top: 1px solid rgba(0, 71, 49, 0.06);
	font-size: 9px !important;
	letter-spacing: 0.18em !important;
	text-transform: uppercase !important;
	color: rgba(0, 71, 49, 0.65) !important;
	font-weight: 700 !important;
	text-decoration: none !important;
	white-space: nowrap !important;
	transition: color 0.2s ease;
}

.mega-menu__cta::after {
	display: none !important;
}

.mega-menu__cta:hover {
	color: var(--brand-900, #004731) !important;
}

@media (max-width: 768px) {
	.main-navigation .has-mega-menu:hover > .mega-menu,
	.main-navigation .has-mega-menu:focus-within > .mega-menu {
		position: static !important;
		top: auto !important;
		left: auto !important;
		transform: none !important;
		box-shadow: none !important;
	}

	.has-mega-menu--offer > .mega-menu {
		display: none !important;
	}

	.has-mega-menu--knowledge {
		display: flex;
		flex-direction: column;
		overflow: visible !important;
	}

	.has-mega-menu--knowledge > .menu-link {
		justify-content: space-between !important;
		width: 100%;
		flex-shrink: 0;
	}

	.has-mega-menu--knowledge > .mega-menu {
		display: none !important;
		position: static !important;
		top: auto !important;
		left: auto !important;
		right: auto !important;
		transform: none !important;
		width: 100% !important;
		min-width: 0 !important;
		max-width: none !important;
		opacity: 1 !important;
		visibility: hidden !important;
		pointer-events: none !important;
		margin: 0 !important;
		padding: 0 !important;
		background: transparent !important;
		border: none !important;
		box-shadow: none !important;
		z-index: auto !important;
	}

	.has-mega-menu--knowledge.is-mobile-open > .mega-menu {
		display: block !important;
		visibility: visible !important;
		pointer-events: auto !important;
		margin: 0 !important;
		padding: 0 0 0.25rem 1.2rem !important;
		border-left: 2px solid rgba(26, 77, 58, 0.14) !important;
		border-radius: 0 !important;
	}

	.has-mega-menu--knowledge > .mega-menu::before {
		display: none !important;
	}

	.has-mega-menu--knowledge .mega-menu__list {
		width: 100% !important;
	}

	.has-mega-menu--knowledge .mega-menu__list a {
		padding: 0.55rem 0.85rem 0.55rem 0 !important;
		font-size: 13px !important;
	}

	.has-mega-menu--knowledge .mega-menu__text {
		font-size: 12px !important;
	}

	.has-mega-menu--knowledge .mega-menu__cta {
		margin-top: 0.1rem !important;
		padding: 0.5rem 0.85rem 0.5rem 0 !important;
		border-top: none;
		font-size: 11px !important;
	}

	.main-navigation .menu-chevron {
		display: none !important;
	}

	.has-mega-menu--knowledge .menu-chevron {
		display: inline-block !important;
		width: 14px;
		height: 14px;
		margin-left: auto;
		flex-shrink: 0;
		transition: transform 0.25s ease;
	}

	.has-mega-menu--knowledge.is-mobile-open .menu-chevron {
		transform: rotate(180deg);
	}
}