/* Self-hosted Barlow + Barlow Condensed (latin + polskie znaki scalone, 1 plik/waga) — DuroPark */
@font-face{font-family:'Barlow';font-style:normal;font-weight:400;font-display:swap;src:url(fonts/barlow-400.woff2) format('woff2')}
@font-face{font-family:'Barlow';font-style:normal;font-weight:500;font-display:swap;src:url(fonts/barlow-500.woff2) format('woff2')}
@font-face{font-family:'Barlow';font-style:normal;font-weight:600;font-display:swap;src:url(fonts/barlow-600.woff2) format('woff2')}
@font-face{font-family:'Barlow';font-style:normal;font-weight:700;font-display:swap;src:url(fonts/barlow-700.woff2) format('woff2')}
@font-face{font-family:'Barlow Condensed';font-style:normal;font-weight:700;font-display:swap;src:url(fonts/barlow-condensed-700.woff2) format('woff2')}
@font-face{font-family:'Barlow Condensed';font-style:normal;font-weight:900;font-display:swap;src:url(fonts/barlow-condensed-900.woff2) format('woff2')}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --cyan:   #3dd6c8;
  --green:  #7ed957;
  --yellow: #f0e44a;
  --grad:   linear-gradient(90deg,#3dd6c8,#7ed957,#f0e44a);
  --grad-soft: linear-gradient(135deg,rgba(61,214,200,.10),rgba(126,217,87,.06));
  --dark:   #0f1923;
  --text:   #111820;
  --muted:  #566575;
  --cyan-text: #0e7a72;
  --light:  #f5f7f9;
  --border: #e2e8f0;
  --white:  #ffffff;
  --fd: 'Barlow Condensed', sans-serif;
  --fb: 'Barlow', sans-serif;
  --shadow: 0 2px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.10);
}
.gt { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--text); font-family: var(--fb); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
svg { display: block; }

/* NAV */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3.5rem; height: 68px;
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}
.nav-logo img { height: 38px; width: auto; display: block; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  font-family: var(--fd); font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  background: var(--grad); color: var(--dark) !important;
  padding: 0.55rem 1.4rem; border-radius: 4px;
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-weight: 700 !important; transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85 !important; }
.nav-cta svg { width: 16px; height: 16px; }

/* HAMBURGER BUTTON */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px; height: 20px;
  background: none; border: none; cursor: pointer; padding: 0;
  z-index: 101;
}
.nav-burger span {
  display: block; width: 100%; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
  transform-origin: left center;
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translateY(-1px); }
.nav-burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translateY(1px); }

/* MOBILE DRAWER */
.nav-drawer {
  position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
  z-index: 99; display: flex; flex-direction: column;
  padding: 2rem 1.5rem 3rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  visibility: hidden;
}
.nav-drawer.open { transform: translateX(0); visibility: visible; }
.nav-drawer ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.nav-drawer li { border-bottom: 1px solid var(--border); }
.nav-drawer li:first-child { border-top: 1px solid var(--border); }
.nav-drawer a {
  display: block; padding: 1.1rem 0;
  font-family: var(--fd); font-size: 1.35rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text); text-decoration: none; transition: color 0.2s;
}
.nav-drawer a:hover, .nav-drawer a.active { color: #1a9e93; }
.nav-drawer .drawer-cta {
  margin-top: 1.8rem;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  background: var(--grad); color: var(--dark);
  padding: 1rem 2rem; border-radius: 4px;
  font-family: var(--fd); font-size: 1.1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; text-decoration: none;
  box-shadow: 0 6px 20px rgba(61,214,200,0.22);
}
.nav-drawer .drawer-cta svg { width: 18px; height: 18px; }

/* HERO */
#home {
  min-height: 100vh;
  padding-top: 68px;
  background: var(--white);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-left: 3.5rem; padding-right: 3.5rem; padding-bottom: 5rem;
}
#home::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(0,0,0,0.02) 80px, rgba(0,0,0,0.02) 81px),
    repeating-linear-gradient(0deg,  transparent, transparent 80px, rgba(0,0,0,0.02) 80px, rgba(0,0,0,0.02) 81px);
  pointer-events: none;
}
#home::after {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(61,214,200,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero-plane {
  position: absolute; top: 14%; right: 6%;
  width: 480px; opacity: 0.05;
  pointer-events: none;
}
.hero-eyebrow {
  font-family: var(--fd); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 1.2rem; position: relative;
  display: inline-flex; align-items: center; gap: 0.8rem;
}
.hero-eyebrow::before {
  content: ''; width: 36px; height: 1px; background: var(--cyan); display: inline-block;
}
h1 {
  font-family: var(--fd); font-weight: 900;
  font-size: clamp(5rem, 9vw, 9rem);
  line-height: 0.88; text-transform: uppercase;
  color: var(--text); margin-bottom: 1.6rem; position: relative;
}
.hero-sub {
  font-size: 1rem; color: var(--muted);
  max-width: 500px; line-height: 1.75; margin-bottom: 2.5rem; position: relative;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; position: relative; flex-wrap: wrap; }
.btn-rezerwuj {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--grad); color: var(--dark);
  padding: 0.95rem 2.2rem;
  font-family: var(--fd); font-size: 1.05rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  text-decoration: none; border-radius: 4px;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s; white-space: nowrap;
  box-shadow: 0 6px 20px rgba(61,214,200,0.22);
}
.btn-rezerwuj:hover { opacity: 0.93; transform: translateY(-1px); box-shadow: 0 10px 28px rgba(61,214,200,0.30); }
.btn-rezerwuj svg { width: 16px; height: 16px; }
.btn-cennik {
  display: inline-flex; align-items: center; gap: 0.55rem;
  color: var(--text); padding: 0.9rem 2rem;
  font-family: var(--fd); font-size: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  text-decoration: none;
  border: 2px solid var(--border); border-radius: 4px;
  transition: border-color 0.2s, color 0.2s, background 0.2s; white-space: nowrap;
}
.btn-cennik:hover { border-color: var(--cyan); color: #1a9e93; background: rgba(61,214,200,0.04); }
.btn-cennik svg { width: 16px; height: 16px; }

.hero-stats {
  position: absolute; right: 3.5rem; bottom: 5rem;
  display: flex; flex-direction: column; gap: 0; text-align: right;
}
.hstat { padding: 1.2rem 0; border-bottom: 1px solid var(--border); }
.hstat:last-child { border-bottom: none; }
.hstat-num {
  font-family: var(--fd); font-size: 2.8rem; font-weight: 900;
  line-height: 1; margin-bottom: 0.2rem;
}
.hstat-lbl {
  font-family: var(--fb); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
}

/* STRIP */
.strip {
  background: var(--light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1rem 3.5rem; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.strip-text { font-family: var(--fd); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); white-space: nowrap; display: inline-flex; align-items: center; gap: 0.5rem; }
.strip-text svg { width: 14px; height: 14px; color: var(--cyan); }
.strip-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border); flex-shrink: 0; }

/* SECTIONS */
section { padding: 6rem 3.5rem; }
.sec-label { font-family: var(--fd); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--cyan-text); margin-bottom: 0.8rem; display: inline-flex; align-items: center; gap: 0.7rem; }
.sec-label::before { content: ''; width: 28px; height: 1px; background: var(--cyan); display: inline-block; }
.sec-title { font-family: var(--fd); font-weight: 900; font-size: clamp(2.6rem,4.5vw,4rem); line-height: 0.92; text-transform: uppercase; margin-bottom: 1.2rem; }
.sec-sub { color: var(--muted); font-size: 1rem; max-width: 540px; line-height: 1.75; margin-bottom: 3.5rem; }

/* FEATURES */
#features { background: var(--light); position: relative; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feat-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 2.2rem 1.9rem; transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s; position: relative; overflow: hidden; }
.feat-card::after { content: ''; position: absolute; left: 0; top: 0; width: 0; height: 3px; background: var(--grad); transition: width .35s ease; }
.feat-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: rgba(61,214,200,.35); }
.feat-card:hover::after { width: 100%; }
.feat-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--grad-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 1.3rem; color: #1a9e93; }
.feat-icon svg { width: 26px; height: 26px; }
.feat-title { font-family: var(--fd); font-size: 1.2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.55rem; }
.feat-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* SPLIT TWO-COL SECTIONS */
.split { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: center; }
#rezerwacja, #zmien-rezerwacje { background: var(--white); }
#zmien-rezerwacje { background: var(--light); }

/* PROCESS / STEPS */
#process { background: var(--white); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; position: relative; }
.step { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 2rem 1.7rem; position: relative; counter-increment: step; transition: transform .25s, box-shadow .25s; }
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.step-num {
  font-family: var(--fd); font-weight: 900; font-size: 3.2rem; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 1rem;
}
.step-num::before { content: counter(step,decimal-leading-zero); }
.step-title { font-family: var(--fd); font-size: 1.15rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.step-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* CENNIK-TEASER CARD (on main page) */
.teaser {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: center;
  background: linear-gradient(135deg, #0f1923 0%, #16242f 100%);
  border-radius: 18px; padding: 3.5rem; color: #fff; position: relative; overflow: hidden;
}
.teaser::before { content: ''; position: absolute; right: -120px; top: -120px; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(61,214,200,0.20) 0%, transparent 70%); }
.teaser h2 { font-family: var(--fd); font-weight: 900; font-size: clamp(2rem,3.4vw,3rem); line-height: 1; text-transform: uppercase; margin-bottom: 1rem; position: relative; }
.teaser p { color: rgba(255,255,255,.7); margin-bottom: 1.7rem; max-width: 480px; line-height: 1.7; position: relative; }
.teaser ul { list-style: none; display: grid; gap: 0.7rem; position: relative; }
.teaser ul li { display: flex; align-items: center; gap: 0.7rem; font-size: 0.95rem; color: rgba(255,255,255,.85); }
.teaser ul li svg { width: 18px; height: 18px; color: var(--cyan); flex-shrink: 0; }
.teaser-cta { display: inline-flex; align-items: center; gap: 0.7rem; background: var(--grad); color: var(--dark); padding: 0.95rem 2.2rem; font-family: var(--fd); font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; text-decoration: none; border-radius: 4px; margin-top: 1.5rem; transition: opacity 0.2s, transform 0.15s; position: relative; }
.teaser-cta:hover { opacity: 0.92; transform: translateX(3px); }
.teaser-cta svg { width: 16px; height: 16px; }

/* TEASER PRICE CARDS */
.teaser-price-cards {
  display: flex; flex-direction: column; gap: 1rem;
  justify-content: center; align-items: stretch;
}
.tpc {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 1.5rem 1.8rem 1.2rem;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 0.3rem;
}
.tpc--featured {
  background: rgba(61,214,200,0.10);
  border-color: rgba(61,214,200,0.40);
  box-shadow: 0 0 32px rgba(61,214,200,0.12);
}
.tpc--bonus {
  background: rgba(126,217,87,0.08);
  border-color: rgba(126,217,87,0.30);
}
.tpc-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: var(--dark);
  padding: .18rem .9rem; border-radius: 20px;
  font-family: var(--fd); font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; white-space: nowrap;
}
.tpc-days-wrap {
  display: flex; align-items: baseline; gap: 0.4rem; margin-top: 0.2rem;
}
.tpc-num {
  font-family: var(--fd); font-weight: 900; font-size: 3.2rem; line-height: 1;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.tpc-unit {
  font-family: var(--fd); font-size: 0.8rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45);
}
.tpc-price {
  font-family: var(--fd); font-weight: 900; font-size: 1.9rem;
  color: #fff; line-height: 1;
}
.tpc-note {
  font-size: .72rem; color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: .08em; font-family: var(--fd); font-weight: 700;
}

/* CENNIK PAGE */
.page-hero {
  padding-top: 9rem; padding-bottom: 4rem; padding-left: 3.5rem; padding-right: 3.5rem;
  background: var(--white); position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(0,0,0,0.02) 80px, rgba(0,0,0,0.02) 81px),
    repeating-linear-gradient(0deg,  transparent, transparent 80px, rgba(0,0,0,0.02) 80px, rgba(0,0,0,0.02) 81px);
  pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(61,214,200,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; max-width: 1100px; }
.page-hero h1 { font-size: clamp(3.5rem, 7vw, 6.5rem); margin-bottom: 1.4rem; }
.page-hero .hero-sub { max-width: 620px; font-size: 1.05rem; margin-bottom: 2.2rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 2.5rem; margin-top: 1.6rem; position: relative; }
.hero-meta-item { display: flex; align-items: center; gap: 0.65rem; color: var(--text); font-size: 0.92rem; }
.hero-meta-item svg { width: 18px; height: 18px; color: #1a9e93; flex-shrink: 0; }
.hero-meta-item strong { font-weight: 700; }

/* PRICING WIDGET WRAP */
#pricing { padding-top: 1rem; padding-bottom: 4.5rem; background: var(--white); }
.pricing-wrap { max-width: 1100px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 2.5rem; box-shadow: var(--shadow); position: relative; }
.pricing-wrap::before { content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 3px; background: var(--grad); border-radius: 0 0 4px 4px; }

/* CUSTOM PRICING TABLE */
.custom-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
  gap: 0.85rem;
}
.price-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem 0.9rem 1.2rem;
  text-align: center;
  position: relative;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  cursor: default;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(61,214,200,.35);
}
.price-card--featured {
  border-color: transparent !important;
  background: linear-gradient(var(--white), var(--white)) padding-box,
              var(--grad) border-box;
  box-shadow: 0 6px 28px rgba(61,214,200,0.20) !important;
}
.price-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: var(--dark);
  padding: .18rem .85rem; border-radius: 20px;
  font-family: var(--fd); font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; white-space: nowrap;
}
.price-days {
  font-family: var(--fd); font-weight: 900; font-size: 2.6rem; line-height: 1;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: .15rem;
}
.price-day-label {
  font-family: var(--fd); font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
  margin-bottom: .75rem;
}
.price-total {
  font-family: var(--fd); font-size: 1.35rem; font-weight: 900;
  color: var(--text); line-height: 1; margin-bottom: .3rem;
}
.price-per-day {
  font-size: .72rem; color: var(--muted); line-height: 1.3;
}
.pricing-more {
  grid-column: 1 / -1;
  border: 1.5px dashed var(--border); border-radius: 14px;
  padding: 1.2rem; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 0.8rem;
}
.pricing-more span { font-size: .9rem; color: var(--muted); }
.pricing-more a {
  font-family: var(--fd); font-size: .9rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: #1a9e93; text-decoration: none;
  white-space: nowrap;
}
.pricing-more a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .custom-pricing-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.7rem; }
}
@media (max-width: 400px) {
  .custom-pricing-grid { grid-template-columns: 1fr 1fr; }
}

/* INCLUDED SECTION */
#included { background: var(--light); }
.incl-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.incl-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 1.7rem; display: flex; gap: 1rem; align-items: flex-start; transition: transform .2s, box-shadow .2s; }
.incl-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.incl-ico { width: 42px; height: 42px; border-radius: 10px; background: var(--grad-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #1a9e93; }
.incl-ico svg { width: 22px; height: 22px; }
.incl-title { font-family: var(--fd); font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.3rem; }
.incl-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* CTA BAND */
.cta-band {
  background: linear-gradient(135deg, #0f1923 0%, #1b2c3a 100%);
  color: #fff; padding: 5rem 3.5rem; position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.cta-band::before { content: ''; position: absolute; left: -150px; top: -150px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(61,214,200,0.16) 0%, transparent 70%); }
.cta-band::after { content: ''; position: absolute; right: -150px; bottom: -200px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(240,228,74,0.10) 0%, transparent 70%); }
.cta-band .sec-label { color: var(--cyan-text); margin-bottom: 1rem; position: relative; }
.cta-band .sec-label::before { background: var(--cyan); }
.cta-band h2 { font-family: var(--fd); font-weight: 900; font-size: clamp(2.4rem,4vw,3.6rem); line-height: 1; text-transform: uppercase; margin-bottom: 1.2rem; position: relative; }
.cta-band p { color: rgba(255,255,255,.7); max-width: 560px; margin-bottom: 2rem; line-height: 1.7; position: relative; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; position: relative; }
.cta-actions .btn-cennik { color: #fff; border-color: rgba(255,255,255,.22); }
.cta-actions .btn-cennik:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(61,214,200,0.06); }

/* PRICING NOTE */
.pricing-note { margin: 2rem auto 0; max-width: 1100px; background: var(--white); border: 1px solid var(--border); border-left: 3px solid var(--cyan); border-radius: 8px; padding: 1.2rem 1.5rem; font-size: 0.9rem; color: var(--muted); line-height: 1.7; display: flex; gap: 0.9rem; align-items: flex-start; }
.pricing-note svg { width: 22px; height: 22px; color: var(--cyan); flex-shrink: 0; margin-top: 1px; }
.pricing-note strong { color: var(--text); }

/* FAQ */
#faq { background: var(--white); display: grid; grid-template-columns: 1fr 1.8fr; gap: 6rem; align-items: start; }
.faq-sticky { position: sticky; top: 88px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; color: var(--text); text-align: left; padding: 1.3rem 0; font-family: var(--fb); font-size: 0.98rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color 0.2s; }
.faq-q:hover { color: #1a9e93; }
.faq-ico { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--muted); transition: all 0.2s; font-family: var(--fb); }
.faq-item.open .faq-ico { background: var(--grad); border-color: transparent; color: var(--dark); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.2s; font-size: 0.94rem; color: var(--muted); line-height: 1.75; }
.faq-a.open { max-height: 240px; padding-bottom: 1.3rem; }

/* KONTAKT */
#kontakt { background: var(--light); }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: stretch; }
.contact-items { display: flex; flex-direction: column; gap: 1.6rem; }
.contact-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.c-ico { width: 46px; height: 46px; border-radius: 11px; background: var(--white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #1a9e93; }
.c-ico svg { width: 22px; height: 22px; }
.c-lbl { font-size: 0.7rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 0.2rem; }
.c-val { font-size: 1rem; font-weight: 600; color: var(--text); }
.c-val a { color: var(--text); text-decoration: none; transition: color 0.2s; }
.c-val a:hover { color: #1a9e93; }
.map-box { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); min-height: 460px; display: flex; flex-direction: column; }

/* GDPR MAP CONSENT */
.map-consent {
  background: var(--light); border-radius: 12px;
  min-height: 240px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  padding: 2rem; text-align: center;
}
.map-consent p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; max-width: 320px; }
.map-consent button {
  background: var(--grad); color: var(--dark); border: none; cursor: pointer;
  padding: 0.75rem 1.8rem; border-radius: 4px;
  font-family: var(--fd); font-size: 0.95rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; transition: opacity 0.2s;
}
.map-consent button:hover { opacity: 0.85; }
.map-box iframe { display: none; width: 100%; height: 100%; min-height: 460px; border: 0; flex: 1; }
.map-box.loaded .map-consent { display: none; }
.map-box.loaded iframe { display: block; }

/* FOOTER */
footer { background: var(--dark); padding: 2.5rem 3.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
footer img { height: 36px; width: auto; display: block; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.62); }
.footer-links { display: flex; gap: 1.25rem 1.6rem; list-style: none; flex-wrap: wrap; justify-content: center; width: 100%; max-width: 820px; margin: 0 auto; }
.footer-links a { font-family: var(--fd); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.66); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--cyan); }
.footer-social { display: flex; gap: 1rem; align-items: center; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.30); color: rgba(255,255,255,0.66); transition: color 0.2s, border-color 0.2s; text-decoration: none; }
.footer-social a:hover { color: var(--cyan); border-color: var(--cyan); }
.footer-social svg { width: 18px; height: 18px; }

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  50%     { transform: translateY(-18px) rotate(.4deg); }
}
@keyframes stripSlide {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-plane { animation: heroFloat 9s ease-in-out infinite; }


/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* RESPONSIVE — 1100px */
@media (max-width: 1100px) {
  .teaser { grid-template-columns: 1fr; padding: 2.4rem; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

/* RESPONSIVE — 960px (tablets / landscape phones) */
@media (max-width: 960px) {
  nav.site-nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  #home { padding: 5rem 1.5rem 4rem; }
  .hero-stats { display: none; }
  section { padding: 4rem 1.5rem; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 1.5rem; }
  #faq { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 1.5rem; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 2rem; }
  .map-box { min-height: 260px; }
  .faq-sticky { position: static; top: auto; margin-bottom: 1rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .strip { padding: 0.9rem 1.5rem; }
  .hero-meta { gap: 1.2rem; }
  .page-hero { padding-left: 1.5rem; padding-right: 1.5rem; padding-top: 7rem; padding-bottom: 3rem; }
  .pricing-wrap { padding: 1.5rem; border-radius: 14px; }
  .cta-band { padding: 3.5rem 1.5rem; }
}

/* RESPONSIVE — 640px (portrait tablets / large phones) */
@media (max-width: 640px) {
  h1 { font-size: clamp(3.8rem, 12vw, 6rem); }
  .steps { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-rezerwuj, .btn-cennik { width: 100%; justify-content: center; }
  .hero-meta { flex-direction: column; gap: 0.8rem; }
  .strip { flex-direction: column; align-items: flex-start; gap: 0.55rem; }
  .strip-dot { display: none; }
  .teaser { padding: 2rem 1.5rem; }
  section { padding: 3.5rem 1.25rem; }
  .split { padding: 3.5rem 1.25rem; }
  #faq { padding: 3.5rem 1.25rem; }
  footer { padding: 2rem 1.25rem; }
  .footer-links { justify-content: center; gap: 1.2rem; }
}

/* RESPONSIVE — 400px (small phones) */
@media (max-width: 400px) {
  nav.site-nav { padding: 0 1rem; }
  .nav-logo img { height: 32px; }
  h1 { font-size: clamp(3.2rem, 13vw, 4.5rem); }
  section { padding: 3rem 1rem; }
  .split { padding: 3rem 1rem; }
  #faq { padding: 3rem 1rem; }
  .cta-band { padding: 3rem 1rem; }
  .page-hero { padding-left: 1rem; padding-right: 1rem; }
  footer { padding: 2rem 1rem; }
  .strip { padding: 0.8rem 1rem; }
  .pricing-wrap { padding: 1rem; }
}
