/* ==========================================================================
   FIZJOLAND - Centrum Fizjoterapii Dzieciecej
   Stylesheet
   ========================================================================== */

/* 1. Zmienne, reset, baza
   ========================================================================== */

:root {
  /* Kolory marki - z logo */
  --turkus-50:  #E6F8F9;
  --turkus-100: #C9EFF1;
  --turkus-200: #99DFE3;
  --turkus-300: #5FCAD0;
  --turkus-400: #2EBDC4;
  --turkus-500: #1AB5BD;
  --turkus-600: #0F98A0;
  --turkus-700: #0A7980;
  --turkus-800: #075C61;
  --turkus-900: #054145;

  --pomaran-50:  #FFF3E8;
  --pomaran-100: #FFE2C7;
  --pomaran-200: #FFC58F;
  --pomaran-300: #FBA659;
  --pomaran-400: #F49336;
  --pomaran-500: #F08530;
  --pomaran-600: #D86D1B;
  --pomaran-700: #B05311;
  --pomaran-800: #843D0B;
  --pomaran-900: #5C2A07;

  --tlo:        #FBFCFD;
  --tlo-2:      #F2F7F8;
  --karta:      #FFFFFF;
  --tekst:      #1C2A2D;
  --tekst-2:    #3F5359;
  --tekst-3:    #65797F;
  --linia:      #E1EAEC;
  --linia-2:    #F0F4F5;

  --cien-sm: 0 1px 3px rgba(7, 92, 97, 0.08);
  --cien-md: 0 6px 18px rgba(7, 92, 97, 0.10);
  --cien-lg: 0 16px 40px rgba(7, 92, 97, 0.14);
  --cien-xl: 0 24px 60px rgba(7, 92, 97, 0.18);
  --cien-color: 0 12px 30px rgba(26, 181, 189, 0.30);
  --cien-pomaran: 0 12px 30px rgba(240, 133, 48, 0.30);

  --grad-glowny: linear-gradient(135deg, #1AB5BD 0%, #2EBDC4 50%, #F08530 100%);
  --grad-turkus: linear-gradient(135deg, #1AB5BD 0%, #0F98A0 100%);
  --grad-pomaran: linear-gradient(135deg, #F08530 0%, #D86D1B 100%);
  --grad-soft: linear-gradient(180deg, #E6F8F9 0%, #FFF3E8 100%);

  --r-sm: 8px;
  --r: 14px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 36px;
  --r-pill: 999px;

  --font-naglowek: 'Plus Jakarta Sans', 'Segoe UI', Tahoma, sans-serif;
  --font-tekst: 'Inter', 'Segoe UI', Tahoma, sans-serif;

  --kontener: 1200px;
  --kontener-waski: 880px;

  --t-szybko: 180ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-srednio: 320ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-wolno: 520ms cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-tekst);
  font-size: 17px;
  line-height: 1.7;
  color: var(--tekst);
  background: var(--tlo);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--turkus-700);
  text-decoration: none;
  transition: color var(--t-szybko);
}

a:hover {
  color: var(--pomaran-600);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-naglowek);
  font-weight: 700;
  line-height: 1.2;
  color: var(--tekst);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; color: var(--tekst); }

ul, ol { margin: 0 0 1rem 1.2rem; }
li { margin-bottom: 0.4rem; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--turkus-700);
  color: #fff;
  padding: 12px 20px;
  z-index: 10000;
  border-radius: 0 0 var(--r) 0;
}

.skip-link:focus {
  top: 0;
  color: #fff;
}

/* 2. Layout - kontenery
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--kontener);
  margin: 0 auto;
  padding: 0 24px;
}

.container-waski {
  max-width: var(--kontener-waski);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section-tlo {
  background: var(--tlo-2);
}

.section-grad {
  background: var(--grad-soft);
}

.section-tytul {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-tytul .nadtytul {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pomaran-600);
  background: var(--pomaran-50);
  padding: 6px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}

.section-tytul h2 {
  margin-bottom: 16px;
}

.section-tytul p {
  color: var(--tekst-2);
  font-size: 1.1rem;
}

/* 3. Przyciski
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: 2px solid transparent;
  border-radius: var(--r-pill);
  font-family: var(--font-naglowek);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--t-szybko), box-shadow var(--t-szybko), background var(--t-szybko), color var(--t-szybko), border-color var(--t-szybko);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--grad-pomaran);
  color: #fff;
  box-shadow: var(--cien-pomaran);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(240, 133, 48, 0.40);
  color: #fff;
}

.btn-turkus {
  background: var(--grad-turkus);
  color: #fff;
  box-shadow: var(--cien-color);
}

.btn-turkus:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(26, 181, 189, 0.40);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--turkus-700);
  border-color: var(--turkus-300);
}

.btn-outline:hover {
  background: var(--turkus-700);
  color: #fff;
  border-color: var(--turkus-700);
  transform: translateY(-2px);
}

.btn-biel {
  background: #fff;
  color: var(--turkus-700);
}

.btn-biel:hover {
  background: var(--turkus-50);
  color: var(--turkus-800);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* 4. Header i nawigacja
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--linia-2);
  transition: box-shadow var(--t-szybko), background var(--t-szybko);
}

.site-header.is-scrolled {
  box-shadow: var(--cien-md);
  background: rgba(255, 255, 255, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 50px;
  width: auto;
  transition: transform var(--t-szybko);
}

.brand:hover .brand-logo {
  transform: scale(1.03);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--linia);
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--turkus-700);
  transition: transform var(--t-szybko), opacity var(--t-szybko);
  border-radius: 2px;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item { margin: 0; }

.nav-link {
  display: inline-block;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--tekst-2);
  border-radius: var(--r-sm);
  transition: color var(--t-szybko), background var(--t-szybko);
}

.nav-link:hover {
  color: var(--turkus-700);
  background: var(--turkus-50);
}

.nav-link.is-active {
  color: var(--turkus-700);
  background: var(--turkus-50);
}

.nav-cta {
  flex-shrink: 0;
}

/* 5. Hero
   ========================================================================== */

.hero {
  position: relative;
  padding: 100px 0 120px;
  background: var(--grad-soft);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 181, 189, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(240, 133, 48, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-tresc {
  position: relative;
  z-index: 2;
}

.hero-nadtytul {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pomaran-600);
  background: rgba(255, 255, 255, 0.85);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 22px;
  box-shadow: var(--cien-sm);
}

.hero-nadtytul::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--pomaran-500);
  border-radius: 50%;
  animation: puls 2s infinite;
}

@keyframes puls {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}

.hero-tytul {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 22px;
  line-height: 1.1;
}

.hero-tytul .akcent {
  background: var(--grad-glowny);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-opis {
  font-size: 1.2rem;
  color: var(--tekst-2);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-zaufanie {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--linia);
}

.hero-zaufanie-item .liczba {
  display: block;
  font-family: var(--font-naglowek);
  font-size: 2rem;
  font-weight: 800;
  color: var(--turkus-600);
  line-height: 1;
}

.hero-zaufanie-item .opis {
  font-size: 0.88rem;
  color: var(--tekst-3);
  margin-top: 6px;
  display: block;
}

.hero-wizualizacja {
  position: relative;
  z-index: 2;
}

/* Hero orbita - logo + 6 metod na okregu */

.hero-orbita {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

.hero-orbita-linie {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-orbita-obrot {
  transform-origin: center;
  animation: orbita-obrot 60s linear infinite;
}

@keyframes orbita-obrot {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-orbita-srodek {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38%;
  height: 38%;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--cien-xl), 0 0 0 8px rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  animation: orbita-srodek-puls 4s ease-in-out infinite;
}

.hero-orbita-srodek img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

@keyframes orbita-srodek-puls {
  0%, 100% { box-shadow: var(--cien-xl), 0 0 0 8px rgba(255, 255, 255, 0.6); }
  50% { box-shadow: var(--cien-xl), 0 0 0 14px rgba(255, 255, 255, 0.4); }
}

.hero-orbita-metoda {
  position: absolute;
  width: auto;
  min-width: 130px;
  white-space: nowrap;
  background: #fff;
  border-radius: var(--r-pill);
  padding: 10px 18px 10px 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--tekst);
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: var(--cien-md);
  border: 1.5px solid var(--linia-2);
  transition: transform var(--t-szybko), box-shadow var(--t-szybko), border-color var(--t-szybko), background var(--t-szybko);
  z-index: 3;
}

.hero-orbita-metoda .ikona {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--turkus-100);
  color: var(--turkus-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--t-szybko);
}

.hero-orbita-metoda .nazwa {
  line-height: 1.2;
  font-family: var(--font-naglowek);
}

.hero-orbita-metoda:nth-child(odd) .ikona,
.hero-orbita-metoda.poz-2 .ikona,
.hero-orbita-metoda.poz-4 .ikona,
.hero-orbita-metoda.poz-6 .ikona {
  background: var(--pomaran-100);
  color: var(--pomaran-700);
}

.hero-orbita-metoda.poz-1 .ikona,
.hero-orbita-metoda.poz-3 .ikona,
.hero-orbita-metoda.poz-5 .ikona {
  background: var(--turkus-100);
  color: var(--turkus-700);
}

.hero-orbita-metoda:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: var(--cien-lg);
  border-color: var(--turkus-300);
  color: var(--turkus-800);
}

.hero-orbita-metoda:hover .ikona {
  transform: scale(1.1) rotate(-6deg);
}

/* Pozycje na okregu - 6 punktow co 60° */
.hero-orbita-metoda.poz-1 {
  top: 0;
  left: 50%;
  transform: translate(-50%, -10%);
  animation: orbita-plywaj 5s ease-in-out infinite;
}
.hero-orbita-metoda.poz-2 {
  top: 22%;
  right: -5%;
  animation: orbita-plywaj 5.5s ease-in-out infinite 0.6s;
}
.hero-orbita-metoda.poz-3 {
  bottom: 22%;
  right: -5%;
  animation: orbita-plywaj 6s ease-in-out infinite 1.2s;
}
.hero-orbita-metoda.poz-4 {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 10%);
  animation: orbita-plywaj 5.5s ease-in-out infinite 1.8s;
}
.hero-orbita-metoda.poz-5 {
  bottom: 22%;
  left: -5%;
  animation: orbita-plywaj 5s ease-in-out infinite 2.4s;
}
.hero-orbita-metoda.poz-6 {
  top: 22%;
  left: -5%;
  animation: orbita-plywaj 6s ease-in-out infinite 3s;
}

.hero-orbita-metoda.poz-1:hover,
.hero-orbita-metoda.poz-4:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

@keyframes orbita-plywaj {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

/* 6. Page header (podstrony)
   ========================================================================== */

.page-header {
  position: relative;
  padding: 80px 0 60px;
  background: var(--grad-soft);
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(26, 181, 189, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-header::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(240, 133, 48, 0.13) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-header-inner {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.page-header h1 {
  margin-bottom: 16px;
}

.page-header .lead {
  font-size: 1.18rem;
  color: var(--tekst-2);
}

.breadcrumbs {
  font-size: 0.88rem;
  color: var(--tekst-3);
  margin-bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.breadcrumbs a {
  color: var(--tekst-3);
}

.breadcrumbs a:hover {
  color: var(--turkus-700);
}

.breadcrumbs .sep::before {
  content: "/";
  margin: 0 4px;
  color: var(--linia);
}

/* 7. Karty - usługi, schorzenia, metody
   ========================================================================== */

.siatka {
  display: grid;
  gap: 28px;
}

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

.karta {
  background: var(--karta);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--cien-sm);
  border: 1px solid var(--linia-2);
  transition: transform var(--t-srednio), box-shadow var(--t-srednio), border-color var(--t-srednio);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.karta:hover {
  transform: translateY(-6px);
  box-shadow: var(--cien-lg);
  border-color: var(--turkus-200);
}

.karta-ikona {
  width: 64px;
  height: 64px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--turkus-50);
  color: var(--turkus-700);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.karta-ikona.pomaran {
  background: var(--pomaran-50);
  color: var(--pomaran-700);
}

.karta-tytul {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--tekst);
}

.karta-opis {
  color: var(--tekst-2);
  margin-bottom: 18px;
  flex-grow: 1;
}

.karta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--turkus-700);
  margin-top: auto;
}

.karta-link::after {
  content: "->";
  transition: transform var(--t-szybko);
  font-weight: 700;
}

.karta-link:hover::after {
  transform: translateX(4px);
}

/* karta linku do schorzenia/metody (uproszczona) */
.karta-link-prosty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 20px 24px;
  border-radius: var(--r);
  border: 1px solid var(--linia);
  font-weight: 600;
  color: var(--tekst);
  transition: all var(--t-szybko);
}

.karta-link-prosty:hover {
  border-color: var(--turkus-400);
  background: var(--turkus-50);
  color: var(--turkus-800);
  transform: translateX(6px);
}

.karta-link-prosty::after {
  content: "->";
  color: var(--turkus-500);
  font-weight: 700;
}

/* 8. Zespół - karty
   ========================================================================== */

.osoba {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--cien-sm);
  border: 1px solid var(--linia-2);
  transition: transform var(--t-srednio), box-shadow var(--t-srednio);
  display: flex;
  flex-direction: column;
}

.osoba:hover {
  transform: translateY(-6px);
  box-shadow: var(--cien-lg);
}

.osoba-foto {
  aspect-ratio: 4 / 5;
  background: var(--turkus-50);
  overflow: hidden;
  position: relative;
}

.osoba-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-srednio);
}

.osoba:hover .osoba-foto img {
  transform: scale(1.05);
}

.osoba-tresc {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.osoba-imie {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.osoba-tytul {
  font-size: 0.95rem;
  color: var(--turkus-700);
  font-weight: 600;
  margin-bottom: 14px;
}

.osoba-metody {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.metoda-chip {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  background: var(--turkus-50);
  color: var(--turkus-800);
}

.osoba-opis {
  color: var(--tekst-2);
  font-size: 0.95rem;
  margin-bottom: 18px;
  flex-grow: 1;
}

.osoba-link {
  font-weight: 600;
  color: var(--pomaran-600);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.osoba-link::after {
  content: "->";
  transition: transform var(--t-szybko);
}

.osoba-link:hover::after {
  transform: translateX(4px);
}

/* 9. Cennik - tabela
   ========================================================================== */

.cennik-tabela {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--cien-md);
  border: 1px solid var(--linia-2);
}

.cennik-wiersz {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--linia-2);
  align-items: center;
}

.cennik-wiersz:last-child {
  border-bottom: none;
}

.cennik-wiersz:nth-child(even) {
  background: var(--tlo-2);
}

.cennik-naglowek {
  background: var(--grad-turkus) !important;
  color: #fff;
}

.cennik-naglowek .cennik-nazwa,
.cennik-naglowek .cennik-cena,
.cennik-naglowek .cennik-czas {
  color: #fff;
  font-weight: 700;
  font-family: var(--font-naglowek);
}

.cennik-nazwa {
  font-weight: 600;
  color: var(--tekst);
}

.cennik-nazwa small {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--tekst-3);
  margin-top: 4px;
}

.cennik-cena {
  font-family: var(--font-naglowek);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--turkus-700);
  white-space: nowrap;
}

.cennik-czas {
  font-size: 0.9rem;
  color: var(--tekst-3);
  white-space: nowrap;
}

/* 10. Galeria + lightbox
   ========================================================================== */

.galeria-siatka {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.galeria-foto {
  aspect-ratio: 4 / 3;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--tlo-2);
  transition: transform var(--t-szybko), box-shadow var(--t-szybko);
}

.galeria-foto:hover {
  transform: translateY(-4px);
  box-shadow: var(--cien-md);
}

.galeria-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-srednio);
}

.galeria-foto:hover img {
  transform: scale(1.06);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 92, 97, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-srednio), visibility var(--t-srednio);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-obraz {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--r);
  box-shadow: var(--cien-xl);
}

.lightbox-zamknij,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-szybko);
}

.lightbox-zamknij:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-zamknij {
  top: 20px;
  right: 20px;
}

.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* 11. Sekcja CTA
   ========================================================================== */

.cta-sekcja {
  position: relative;
  padding: 100px 0;
  background: var(--grad-glowny);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.cta-sekcja::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.10) 0%, transparent 50%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.cta-sekcja h2 {
  color: #fff;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.cta-sekcja p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
  margin-bottom: 32px;
}

.cta-przyciski {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* 12. Formularz kontaktowy
   ========================================================================== */

.formularz {
  background: #fff;
  padding: 40px;
  border-radius: var(--r-lg);
  box-shadow: var(--cien-md);
  border: 1px solid var(--linia-2);
}

.pole {
  margin-bottom: 18px;
}

.pole label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--tekst);
}

.pole input,
.pole textarea,
.pole select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--linia);
  border-radius: var(--r-sm);
  font-family: var(--font-tekst);
  font-size: 1rem;
  background: #fff;
  color: var(--tekst);
  transition: border-color var(--t-szybko), box-shadow var(--t-szybko);
}

.pole input:focus,
.pole textarea:focus,
.pole select:focus {
  outline: none;
  border-color: var(--turkus-500);
  box-shadow: 0 0 0 4px rgba(26, 181, 189, 0.15);
}

.pole textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-tekst);
}

.pole-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--tekst-2);
}

.pole-checkbox input {
  width: auto;
  margin-top: 4px;
  accent-color: var(--turkus-600);
}

.pole-checkbox label {
  font-weight: 400;
  margin: 0;
}

/* 13. Box info - akcenty
   ========================================================================== */

.box-info {
  background: var(--turkus-50);
  border-left: 4px solid var(--turkus-500);
  padding: 22px 26px;
  border-radius: var(--r);
  margin: 28px 0;
}

.box-info.pomaran {
  background: var(--pomaran-50);
  border-left-color: var(--pomaran-500);
}

.box-info h3, .box-info h4 {
  margin-bottom: 8px;
  color: var(--turkus-800);
}

.box-info.pomaran h3, .box-info.pomaran h4 {
  color: var(--pomaran-700);
}

/* lista checkmark */
.lista-check {
  list-style: none;
  margin-left: 0;
}

.lista-check li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
}

.lista-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  background: var(--turkus-500);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

/* 14. Tresc artykulu / podstrony
   ========================================================================== */

.tresc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--tekst);
}

.tresc h2 {
  margin-top: 48px;
  margin-bottom: 18px;
}

.tresc h3 {
  margin-top: 36px;
  margin-bottom: 14px;
}

.tresc p {
  margin-bottom: 1.2rem;
}

.tresc ul, .tresc ol {
  margin-bottom: 1.2rem;
  padding-left: 1.2rem;
}

.tresc li {
  margin-bottom: 8px;
}

.tresc a {
  color: var(--turkus-700);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--turkus-200);
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

.tresc a:hover {
  color: var(--pomaran-600);
  text-decoration-color: var(--pomaran-300);
}

/* 15. Mapa
   ========================================================================== */

.mapa-osadzenie {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--cien-md);
  border: 1px solid var(--linia);
}

.mapa-osadzenie iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* 16. Footer
   ========================================================================== */

.site-footer {
  background: var(--turkus-900);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-logo {
  background: #fff;
  padding: 12px 16px;
  border-radius: var(--r);
  margin-bottom: 20px;
  height: auto;
  max-width: 220px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.footer-foundation {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-foundation strong { color: var(--pomaran-300); }

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list li { margin-bottom: 10px; }

.footer-list a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  transition: color var(--t-szybko);
}

.footer-list a:hover {
  color: var(--pomaran-300);
}

.footer-address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.footer-address .muted {
  color: rgba(255, 255, 255, 0.55);
}

.footer-address p { margin-bottom: 14px; }

.footer-address a {
  color: #fff;
  font-weight: 600;
}

.footer-address a:hover { color: var(--pomaran-300); }

.footer-phone {
  font-size: 1.05rem !important;
}

.footer-hours strong {
  color: var(--turkus-300);
  display: block;
  margin-bottom: 4px;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.25);
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

/* 17. Cookie notice
   ========================================================================== */

.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  border-radius: var(--r);
  padding: 20px;
  box-shadow: var(--cien-xl);
  z-index: 8000;
  border: 1px solid var(--linia);
  max-width: 720px;
  margin: 0 auto;
  animation: cookieSlideUp 0.4s ease;
}

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

.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  padding: 0;
  max-width: 100%;
}

.cookie-text {
  flex: 1;
  margin: 0;
  font-size: 0.92rem;
  color: var(--tekst-2);
  min-width: 250px;
}

.cookie-btn {
  flex-shrink: 0;
}

/* 18. Floating call button
   ========================================================================== */

.floating-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--grad-pomaran);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  box-shadow: var(--cien-pomaran);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 7000;
  transition: transform var(--t-szybko), box-shadow var(--t-szybko);
}

.floating-call:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 18px 40px rgba(240, 133, 48, 0.45);
}

.floating-call svg {
  flex-shrink: 0;
}

/* 19. Animacje przy scroll
   ========================================================================== */

.anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-z-lewa {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-z-lewa.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.anim-z-prawa {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-z-prawa.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Na mobile - bez translateX zeby nie powodowac overflow */
@media (max-width: 680px) {
  .anim-z-lewa,
  .anim-z-prawa {
    transform: translateY(20px);
  }
  .anim-z-lewa.is-visible,
  .anim-z-prawa.is-visible {
    transform: translateY(0);
  }
}

/* 20. Helpers
   ========================================================================== */

.tekst-centrum { text-align: center; }
.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0 !important; }
.mb-4 { margin-bottom: 24px; }
.mb-6 { margin-bottom: 40px; }

.akcent-turkus { color: var(--turkus-600); }
.akcent-pomaran { color: var(--pomaran-600); }

/* 21. Media queries
   ========================================================================== */

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .siatka-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .nav-toggle { display: flex; }

  .primary-nav {
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 30px 24px;
    gap: 8px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity var(--t-srednio), transform var(--t-srednio), visibility var(--t-srednio);
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: var(--cien-lg);
    pointer-events: none;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 14px 18px;
    font-size: 1.05rem;
    border-radius: var(--r-sm);
  }

  .nav-cta {
    margin-top: 16px;
    width: 100%;
    text-align: center;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero {
    padding: 60px 0 80px;
  }

  .hero-wizualizacja {
    max-width: 480px;
    margin: 0 auto;
  }

  .hero-orbita-metoda {
    width: 115px;
    font-size: 0.82rem;
    padding: 10px 12px;
  }

  .hero-orbita-metoda .ikona {
    width: 28px;
    height: 28px;
  }

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

  .section { padding: 70px 0; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }

  .siatka-2, .siatka-3, .siatka-4 { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }

  /* Na malych ekranach - orbita przechodzi w kompaktowa siatke */
  .hero-orbita {
    max-width: 360px;
    aspect-ratio: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }

  .hero-orbita-linie { display: none; }

  .hero-orbita-srodek {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 140px;
    height: 140px;
    justify-self: center;
    margin-bottom: 12px;
  }

  .hero-orbita-metoda {
    position: relative;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    animation: none !important;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    justify-content: flex-start;
    box-sizing: border-box;
  }

  .hero-orbita-metoda:hover {
    transform: translateY(-2px) !important;
  }

  .formularz { padding: 28px 22px; }

  .cennik-wiersz {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: left;
  }

  .cennik-cena { font-size: 1.4rem; }

  .floating-call span { display: none; }
  .floating-call {
    padding: 14px;
    border-radius: 50%;
  }

  .cookie-notice {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px;
  }

  .section-tytul { margin-bottom: 40px; }

  .container, .container-waski { padding: 0 16px; }

  .section { padding: 56px 0; }

  .hero-zaufanie {
    gap: 18px;
  }

  .brand-logo {
    height: 40px;
  }

  .header-inner {
    gap: 12px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 360px) {
  .container, .container-waski { padding: 0 12px; }
  .brand-logo { height: 36px; }
}

@media (max-width: 420px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .cta-przyciski { flex-direction: column; }
  .cta-przyciski .btn { width: 100%; }
}

/* 22. Print
   ========================================================================== */

@media print {
  .site-header, .site-footer, .floating-call, .cookie-notice, .hero-cta { display: none; }
  body { color: #000; background: #fff; font-size: 11pt; }
  .hero { padding: 20px 0; background: none; }
}

/* 23. Preferencje uzytkownika
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
