/* ==========================================================================
   HYDRO-SOLAR — THEME 2026 „ENERGIA"
   Rynek: GOP (Katowice i okolice). Jasna baza + głęboka zieleń morska,
   akcent teal #0D9488, energia limonka #A3E635, słońce #FDE047.
   Prefiks klas: .hs-  |  Fonty: Outfit (nagłówki) + Manrope (tekst)
   ========================================================================== */

:root {
  --hs-ink: #04302A;          /* najgłębsza zieleń — kotwica (footer, panele) */
  --hs-ink-2: #0A4A40;
  --hs-bg: #F6FAF7;
  --hs-bg-2: #ECF4EE;
  --hs-surface: #FFFFFF;
  --hs-text: #0B2E28;
  --hs-muted: #56716A;
  --hs-line: #DFEAE2;
  --hs-accent: #0D9488;       /* teal */
  --hs-accent-2: #2DD4BF;
  --hs-lime: #A3E635;         /* energia */
  --hs-lime-deep: #65A30D;
  --hs-sun: #FDE047;
  --hs-cta-a: #16A34A;        /* CTA gradient start (zieleń) */
  --hs-cta-b: #0D9488;        /* CTA gradient end (teal) */

  --hs-font-head: "Outfit", system-ui, sans-serif;
  --hs-font-body: "Manrope", system-ui, -apple-system, sans-serif;

  --hs-r-card: 18px;
  --hs-r-btn: 14px;
  --hs-r-panel: 26px;
  --hs-r-pill: 999px;

  --hs-sh-rest: 0 1px 2px rgba(4, 48, 42, .05), 0 10px 28px rgba(4, 48, 42, .08);
  --hs-sh-hover: 0 2px 4px rgba(4, 48, 42, .06), 0 18px 44px rgba(4, 48, 42, .14);
  --hs-sh-cta: 0 10px 30px rgba(22, 163, 74, .35);
  --hs-sh-panel: 0 26px 80px rgba(4, 48, 42, .16);

  --hs-container: 1200px;
}

/* --------------------------------------------------------------------------
   Baza
   -------------------------------------------------------------------------- */
.hs-page {
  margin: 0;
  background: var(--hs-bg);
  color: var(--hs-text);
  font-family: var(--hs-font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.hs-page *, .hs-page *::before, .hs-page *::after { box-sizing: border-box; }
.hs-page img { max-width: 100%; height: auto; display: block; }
.hs-page a { color: var(--hs-accent); text-decoration: none; }

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

.hs-h1, .hs-h2, .hs-h3 {
  font-family: var(--hs-font-head);
  color: var(--hs-text);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
}
.hs-h1 { font-size: clamp(38px, 5vw, 62px); font-weight: 700; }
.hs-h2 { font-size: clamp(28px, 3.4vw, 42px); font-weight: 700; }
.hs-h3 { font-size: clamp(19px, 2vw, 23px); font-weight: 600; }
.hs-lead { font-size: clamp(16.5px, 1.6vw, 19px); color: var(--hs-muted); line-height: 1.6; }

/* kicker — nadtytuł sekcji z „iskrą" */
.hs-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--hs-font-head);
  font-size: 13px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--hs-accent);
  margin-bottom: 14px;
}
.hs-kicker::before {
  content: "";
  width: 22px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--hs-lime), var(--hs-accent));
}

/* gradient w nagłówkach */
.hs-grad {
  background: linear-gradient(94deg, var(--hs-cta-a) 0%, var(--hs-accent) 55%, var(--hs-accent-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* --------------------------------------------------------------------------
   Przyciski
   -------------------------------------------------------------------------- */
.hs-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--hs-font-head);
  font-size: 16px; font-weight: 600;
  padding: 15px 28px;
  border-radius: var(--hs-r-btn);
  border: 0; cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
  text-decoration: none !important;
  white-space: nowrap;
}
.hs-btn-cta {
  background: linear-gradient(135deg, var(--hs-cta-a), var(--hs-cta-b) 92%);
  color: #fff !important;
  box-shadow: var(--hs-sh-cta), inset 0 1px 0 rgba(255, 255, 255, .28);
}
.hs-btn-cta:hover {
  background: linear-gradient(135deg, #15B754, #0FA396 92%);
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(22, 163, 74, .45), inset 0 1px 0 rgba(255, 255, 255, .28);
}
.hs-btn-ghost {
  background: var(--hs-surface);
  color: var(--hs-text) !important;
  border: 1px solid var(--hs-line);
  box-shadow: var(--hs-sh-rest);
}
.hs-btn-ghost:hover { transform: translateY(-2px); box-shadow: var(--hs-sh-hover); border-color: #C8DCCB; }
.hs-btn-dark {
  background: var(--hs-ink-2);
  color: #fff !important;
}
.hs-btn-dark:hover { background: var(--hs-ink); transform: translateY(-2px); }

/* --------------------------------------------------------------------------
   Nawigacja
   -------------------------------------------------------------------------- */
.hs-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 250, 247, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(223, 234, 226, .8);
}
.hs-nav-inner {
  max-width: var(--hs-container); margin: 0 auto;
  display: flex; align-items: center; gap: 18px;
  padding: 13px 24px;
}
.hs-logo { display: flex; align-items: center; gap: 10px; text-decoration: none !important; flex: 0 0 auto; }
.hs-logo-icon { flex: 0 0 auto; filter: drop-shadow(0 3px 8px rgba(13, 148, 136, .3)); }
.hs-logo-text {
  font-family: var(--hs-font-head);
  font-size: 20px; font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--hs-text);
  line-height: 1; white-space: nowrap;
}
.hs-logo-text b { color: var(--hs-accent); font-weight: 700; }
.hs-logo-text i { font-style: normal; color: var(--hs-muted); font-size: 13.5px; font-weight: 500; margin-left: 1px; }

.hs-nav-menu {
  display: flex; align-items: center; gap: 2px; flex-wrap: nowrap;
  list-style: none !important; margin: 0 0 0 auto !important; padding: 0 !important;
}
.hs-nav-menu > li { list-style: none; position: relative; }
.hs-nav-menu > li > a {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--hs-font-head);
  font-size: 15px; font-weight: 500;
  color: var(--hs-text);
  padding: 9px 13px; border-radius: 10px;
  transition: background .18s ease, color .18s ease;
}
.hs-nav-menu > li > a:hover { background: var(--hs-bg-2); color: var(--hs-accent); }
.hs-nav-menu > li.is-active > a { color: var(--hs-accent); font-weight: 700; }
.hs-nav-caret { width: 14px; height: 14px; }

.hs-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 270px;
  background: var(--hs-surface);
  border: 1px solid var(--hs-line);
  border-radius: 16px;
  box-shadow: var(--hs-sh-panel);
  padding: 8px !important;
  margin: 0 !important;
  list-style: none !important;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.hs-has-dropdown:hover .hs-dropdown,
.hs-has-dropdown:focus-within .hs-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.hs-dropdown li { list-style: none; }
.hs-dropdown a {
  display: block;
  font-size: 14.5px; font-weight: 500;
  color: var(--hs-text);
  padding: 10px 14px; border-radius: 10px;
}
.hs-dropdown a:hover { background: var(--hs-bg-2); color: var(--hs-accent); }

.hs-nav-phone { flex: 0 0 auto; font-size: 15.5px; padding: 12px 22px; }

.hs-nav-burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--hs-line); border-radius: 12px;
  background: var(--hs-surface);
  cursor: pointer; position: relative;
  margin-left: auto;
}
.hs-nav-burger span, .hs-nav-burger span::before, .hs-nav-burger span::after {
  content: ""; position: absolute; left: 50%;
  width: 20px; height: 2px; border-radius: 2px;
  background: var(--hs-text);
  transform: translateX(-50%);
  transition: all .25s ease;
}
.hs-nav-burger span { top: 50%; margin-top: -1px; }
.hs-nav-burger span::before { top: -7px; }
.hs-nav-burger span::after { top: 7px; }
.hs-nav-burger[aria-expanded="true"] span { background: transparent; }
.hs-nav-burger[aria-expanded="true"] span::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.hs-nav-burger[aria-expanded="true"] span::after { top: 0; transform: translateX(-50%) rotate(-45deg); }

@media (max-width: 1080px) {
  .hs-nav-burger { display: inline-flex; }
  .hs-nav-phone-desktop { display: none; }
  .hs-nav-menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--hs-surface);
    border-bottom: 1px solid var(--hs-line);
    box-shadow: 0 30px 60px rgba(4, 48, 42, .14);
    padding: 12px 18px 18px !important;
    display: none;
  }
  .hs-nav-menu.is-open { display: flex; }
  .hs-nav-menu > li > a { padding: 13px 14px; font-size: 16px; }
  .hs-dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; padding: 0 0 0 16px !important;
    display: none;
  }
  .hs-has-dropdown.is-open .hs-dropdown { display: block; }
  .hs-nav-mobile-cta { margin-top: 10px; }
  .hs-nav-mobile-cta .hs-btn { width: 100%; }
}
@media (min-width: 1081px) { .hs-nav-mobile-cta { display: none; } }

/* --------------------------------------------------------------------------
   HERO — asymetryczny, kolaż 2 zdjęć + żeton statystyki, motyw „linii energii"
   -------------------------------------------------------------------------- */
.hs-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(880px 440px at 8% -10%, rgba(163, 230, 53, .13), transparent 55%),
    radial-gradient(760px 420px at 96% 4%, rgba(13, 148, 136, .10), transparent 55%),
    linear-gradient(180deg, #FFFFFF 0%, var(--hs-bg) 100%);
}
/* linie energii — ukośne, cienkie */
.hs-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='700' viewBox='0 0 1400 700' fill='none'%3E%3Cpath d='M-100 620 L 480 240 L 760 400 L 1500 -40' stroke='%230D9488' stroke-opacity='0.07' stroke-width='2'/%3E%3Cpath d='M-100 700 L 520 300 L 800 460 L 1540 30' stroke='%2365A30D' stroke-opacity='0.06' stroke-width='2'/%3E%3Ccircle cx='480' cy='240' r='5' fill='%23A3E635' fill-opacity='.35'/%3E%3Ccircle cx='800' cy='460' r='5' fill='%230D9488' fill-opacity='.25'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  pointer-events: none;
}
.hs-hero-inner {
  position: relative;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 5vw, 70px);
  align-items: center;
  padding: clamp(56px, 7vw, 100px) 0 clamp(64px, 8vw, 110px);
}
.hs-hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--hs-font-head);
  font-size: 13.5px; font-weight: 600;
  color: var(--hs-lime-deep);
  background: rgba(163, 230, 53, .16);
  border: 1px solid rgba(101, 163, 13, .3);
  border-radius: var(--hs-r-pill);
  padding: 8px 16px;
  margin-bottom: 22px;
}
.hs-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #16A34A;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, .5);
  animation: hs-pulse 2.4s infinite;
}
@keyframes hs-pulse {
  0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, .5); }
  70% { box-shadow: 0 0 0 9px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}
.hs-hero-sub {
  font-size: clamp(17px, 1.6vw, 19.5px); line-height: 1.62;
  color: var(--hs-muted);
  max-width: 560px;
  margin: 20px 0 0;
}
.hs-hero-sub strong { color: var(--hs-text); font-weight: 700; }
.hs-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hs-hero-cta .hs-btn-cta { font-size: 17.5px; padding: 19px 34px; }
.hs-hero-cities {
  display: flex; flex-wrap: wrap; gap: 8px 8px;
  margin-top: 32px; padding-top: 26px;
  border-top: 1px solid var(--hs-line);
}
.hs-city-chip {
  font-family: var(--hs-font-head);
  font-size: 13px; font-weight: 600;
  color: var(--hs-ink-2);
  background: #fff;
  border: 1px solid var(--hs-line);
  border-radius: var(--hs-r-pill);
  padding: 6px 13px;
  transition: border-color .18s ease, color .18s ease, transform .18s ease;
}
a.hs-city-chip:hover { border-color: var(--hs-accent); color: var(--hs-accent); transform: translateY(-1px); }
.hs-city-chip-more { color: var(--hs-muted); border-style: dashed; }

/* kolaż zdjęć */
.hs-hero-media { position: relative; }
.hs-hero-photo {
  position: relative;
  border-radius: var(--hs-r-panel);
  overflow: hidden;
  border: 1px solid rgba(13, 148, 136, .16);
  box-shadow: 0 34px 90px rgba(4, 48, 42, .22);
  background: #fff;
}
.hs-hero-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3.1; }
.hs-hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(163, 230, 53, .10), transparent 40%);
  pointer-events: none;
}
.hs-hero-photo-b {
  position: absolute; right: -14px; bottom: -34px;
  width: 44%;
  border-radius: 18px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 22px 55px rgba(4, 48, 42, .28);
}
.hs-hero-photo-b img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.hs-hero-stat {
  position: absolute; left: -20px; top: 26px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, .97);
  border: 1px solid var(--hs-line);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(4, 48, 42, .22);
  padding: 13px 19px 13px 13px;
  font-size: 13.5px; line-height: 1.3;
}
.hs-hero-stat-icon {
  width: 42px; height: 42px; border-radius: 12px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #ECFCCB, #D9F99D);
  color: var(--hs-lime-deep);
}
.hs-hero-stat strong { display: block; font-family: var(--hs-font-head); font-size: 15px; color: var(--hs-text); }
.hs-hero-stat span { color: var(--hs-muted); }

@media (max-width: 920px) {
  .hs-hero-inner { grid-template-columns: 1fr; padding-top: 42px; }
  .hs-hero-media { max-width: 560px; margin-bottom: 30px; }
  .hs-hero-photo img { aspect-ratio: 16 / 10; }
  .hs-hero-photo-b { right: 8px; bottom: -26px; width: 38%; }
  .hs-hero-stat { left: 10px; top: 14px; }
  .hs-hero-cta .hs-btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   Pasek liczb (ciemna zieleń) — zamiast klasycznego trustbara
   -------------------------------------------------------------------------- */
.hs-stats { position: relative; z-index: 5; }
.hs-stats-card {
  background: linear-gradient(120deg, var(--hs-ink) 0%, var(--hs-ink-2) 100%);
  border-radius: var(--hs-r-panel);
  box-shadow: var(--hs-sh-panel);
  padding: clamp(26px, 3.4vw, 40px) clamp(22px, 3.4vw, 44px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative; overflow: hidden;
}
.hs-stats-card::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='300' viewBox='0 0 900 300' fill='none'%3E%3Cpath d='M-40 260 L 300 120 L 480 210 L 940 -30' stroke='%23A3E635' stroke-opacity='0.14' stroke-width='2'/%3E%3C/svg%3E");
  background-size: cover; background-position: center;
  pointer-events: none;
}
.hs-stat { position: relative; }
.hs-stat strong {
  display: block;
  font-family: var(--hs-font-head);
  font-size: clamp(30px, 3.4vw, 44px); font-weight: 700;
  color: #fff; line-height: 1.05;
  letter-spacing: -0.02em;
}
.hs-stat strong em { font-style: normal; color: var(--hs-lime); }
.hs-stat span { display: block; margin-top: 6px; font-size: 14px; color: #A7C4B5; }
@media (max-width: 860px) {
  .hs-stats-card { grid-template-columns: repeat(2, 1fr); gap: 22px 18px; }
}

/* --------------------------------------------------------------------------
   Sekcje — rytm
   -------------------------------------------------------------------------- */
.hs-section { padding: clamp(64px, 8vw, 110px) 0; }
.hs-section-head { max-width: 720px; margin-bottom: clamp(36px, 4.5vw, 56px); }
.hs-section-head .hs-lead { margin: 16px 0 0; }
.hs-section-tint { background: var(--hs-bg-2); }

/* --------------------------------------------------------------------------
   USŁUGI — bento grid (1 duża karta pompy ciepła + mniejsze)
   -------------------------------------------------------------------------- */
.hs-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}
.hs-bento-card { grid-column: span 2; }
.hs-bento-hero { grid-column: span 3; }
.hs-bento-card {
  position: relative;
  background: var(--hs-surface);
  border: 1px solid var(--hs-line);
  border-radius: var(--hs-r-card);
  box-shadow: var(--hs-sh-rest);
  padding: 30px 28px;
  display: flex; flex-direction: column;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
  overflow: hidden;
}
.hs-bento-card:hover { transform: translateY(-4px); box-shadow: var(--hs-sh-hover); border-color: #C8DCCB; }
.hs-bento-hero .hs-bento-photo {
  margin: -30px -28px 24px;
  aspect-ratio: 16 / 9.4;
  overflow: hidden;
}
.hs-bento-hero .hs-bento-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.hs-bento-hero:hover .hs-bento-photo img { transform: scale(1.045); }
.hs-bento-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, #D1FAE5, #CCFBF1);
  color: var(--hs-accent);
  margin-bottom: 18px; flex: 0 0 auto;
}
.hs-bento-card h3 { margin-bottom: 10px; }
.hs-bento-card p { margin: 0 0 18px; font-size: 15px; color: var(--hs-muted); flex: 1 1 auto; }
.hs-bento-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--hs-font-head);
  font-size: 14.5px; font-weight: 700;
  color: var(--hs-accent) !important;
}
.hs-bento-link svg { transition: transform .2s ease; }
.hs-bento-card:hover .hs-bento-link svg { transform: translateX(4px); }
.hs-bento-tag {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--hs-font-head);
  font-size: 12px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--hs-ink);
  background: var(--hs-lime);
  border-radius: var(--hs-r-pill);
  padding: 5px 12px;
  box-shadow: 0 6px 16px rgba(101, 163, 13, .3);
}
@media (max-width: 980px) {
  .hs-bento { grid-template-columns: 1fr 1fr; }
  .hs-bento-card { grid-column: span 1; }
  .hs-bento-hero { grid-column: span 2; }
}
@media (max-width: 640px) {
  .hs-bento { grid-template-columns: 1fr; }
  .hs-bento-card, .hs-bento-hero { grid-column: auto; }
}

/* --------------------------------------------------------------------------
   DLACZEGO MY — lista z „ptaszkami" + zdjęcie
   -------------------------------------------------------------------------- */
.hs-about { display: grid; grid-template-columns: .96fr 1.04fr; gap: clamp(40px, 5vw, 72px); align-items: center; }
.hs-about-media { position: relative; }
.hs-about-photo {
  border-radius: var(--hs-r-panel);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(4, 48, 42, .2);
  border: 1px solid var(--hs-line);
}
.hs-about-photo img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; }
.hs-about-exp {
  position: absolute; right: -16px; bottom: -22px;
  background: linear-gradient(135deg, var(--hs-ink), var(--hs-ink-2));
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(4, 48, 42, .35);
  padding: 18px 26px;
  text-align: center;
}
.hs-about-exp strong {
  display: block;
  font-family: var(--hs-font-head);
  font-size: 34px; font-weight: 700; line-height: 1;
  color: var(--hs-lime);
}
.hs-about-exp span { font-size: 12.5px; color: #A7C4B5; }
.hs-checks { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 14px; }
.hs-checks li { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; }
.hs-checks li strong { color: var(--hs-text); }
.hs-check-ico {
  width: 24px; height: 24px; border-radius: 8px; flex: 0 0 auto; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(140deg, var(--hs-lime), #86EFAC);
  color: var(--hs-ink);
}
@media (max-width: 920px) {
  .hs-about { grid-template-columns: 1fr; }
  .hs-about-media { max-width: 560px; }
}

/* --------------------------------------------------------------------------
   REALIZACJE — siatka zdjęć
   -------------------------------------------------------------------------- */
.hs-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.hs-gallery a {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--hs-line);
  box-shadow: var(--hs-sh-rest);
  transition: transform .22s ease, box-shadow .22s ease;
  display: block;
}
.hs-gallery a:hover { transform: translateY(-3px); box-shadow: var(--hs-sh-hover); }
.hs-gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .45s ease; }
.hs-gallery a:hover img { transform: scale(1.05); }
@media (max-width: 920px) { .hs-gallery { grid-template-columns: repeat(2, 1fr); } }

/* --------------------------------------------------------------------------
   MIASTA GOP — panel z siatką linków
   -------------------------------------------------------------------------- */
.hs-cities-panel {
  background: var(--hs-surface);
  border: 1px solid var(--hs-line);
  border-radius: var(--hs-r-panel);
  box-shadow: var(--hs-sh-rest);
  padding: clamp(30px, 4vw, 52px);
  display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 4vw, 60px);
  align-items: center;
}
.hs-cities-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
.hs-city-link {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--hs-font-head);
  font-size: 15px; font-weight: 600;
  color: var(--hs-text) !important;
  background: var(--hs-bg);
  border: 1px solid var(--hs-line);
  border-radius: 12px;
  padding: 13px 16px;
  transition: border-color .18s ease, background .18s ease, transform .18s ease, color .18s ease;
}
.hs-city-link svg { color: var(--hs-accent); flex: 0 0 auto; transition: transform .18s ease; }
.hs-city-link:hover {
  border-color: var(--hs-accent);
  background: #F0FDF9;
  color: var(--hs-accent) !important;
  transform: translateY(-2px);
}
.hs-city-link:hover svg { transform: scale(1.15); }
@media (max-width: 920px) {
  .hs-cities-panel { grid-template-columns: 1fr; }
}
@media (max-width: 560px) { .hs-cities-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   KROKI WSPÓŁPRACY
   -------------------------------------------------------------------------- */
.hs-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: hs-step; }
.hs-step {
  position: relative;
  background: var(--hs-surface);
  border: 1px solid var(--hs-line);
  border-radius: var(--hs-r-card);
  box-shadow: var(--hs-sh-rest);
  padding: 28px 24px 24px;
  counter-increment: hs-step;
}
.hs-step::before {
  content: "0" counter(hs-step);
  display: inline-block;
  font-family: var(--hs-font-head);
  font-size: 15px; font-weight: 700;
  color: var(--hs-ink);
  background: linear-gradient(140deg, var(--hs-lime), #6EE7B7);
  border-radius: 10px;
  padding: 6px 12px;
  margin-bottom: 16px;
}
.hs-step h3 { font-size: 18px; margin-bottom: 8px; }
.hs-step p { margin: 0; font-size: 14.5px; color: var(--hs-muted); }
@media (max-width: 980px) { .hs-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .hs-steps { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.hs-faq { max-width: 820px; }
.hs-faq details {
  background: var(--hs-surface);
  border: 1px solid var(--hs-line);
  border-radius: 16px;
  box-shadow: var(--hs-sh-rest);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s ease;
}
.hs-faq details[open] { border-color: rgba(13, 148, 136, .4); }
.hs-faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--hs-font-head);
  font-size: 16.5px; font-weight: 600;
  color: var(--hs-text);
  padding: 19px 24px;
  cursor: pointer;
  list-style: none;
}
.hs-faq summary::-webkit-details-marker { display: none; }
.hs-faq summary::after {
  content: "+";
  font-size: 22px; font-weight: 500;
  color: var(--hs-accent);
  flex: 0 0 auto;
  transition: transform .25s ease;
}
.hs-faq details[open] summary::after { transform: rotate(45deg); }
.hs-faq .hs-faq-a { padding: 0 24px 20px; font-size: 15px; color: var(--hs-muted); }
.hs-faq .hs-faq-a a { font-weight: 600; }

/* --------------------------------------------------------------------------
   PANEL CTA (przed stopką)
   -------------------------------------------------------------------------- */
.hs-cta-panel {
  background: linear-gradient(120deg, var(--hs-ink) 0%, var(--hs-ink-2) 78%, #0E5F4C 100%);
  border-radius: var(--hs-r-panel);
  box-shadow: var(--hs-sh-panel);
  padding: clamp(34px, 4.5vw, 56px) clamp(26px, 4.5vw, 60px);
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  position: relative; overflow: hidden;
}
.hs-cta-panel::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='300' viewBox='0 0 900 300' fill='none'%3E%3Cpath d='M-40 280 L 340 90 L 560 200 L 950 -40' stroke='%23A3E635' stroke-opacity='0.16' stroke-width='2'/%3E%3Ccircle cx='340' cy='90' r='5' fill='%23A3E635' fill-opacity='.4'/%3E%3C/svg%3E");
  background-size: cover; background-position: center;
  pointer-events: none;
}
.hs-cta-panel h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); position: relative; }
.hs-cta-panel p { color: #A7C4B5; margin: 10px 0 0; max-width: 520px; font-size: 15.5px; position: relative; }
.hs-cta-panel .hs-btn-cta { font-size: 17px; padding: 18px 32px; flex: 0 0 auto; position: relative; }
@media (max-width: 760px) {
  .hs-cta-panel { flex-direction: column; align-items: stretch; text-align: center; }
  .hs-cta-panel p { max-width: none; }
}

/* --------------------------------------------------------------------------
   STOPKA
   -------------------------------------------------------------------------- */
.hs-footer {
  background: var(--hs-ink);
  color: #C7DACE;
  margin-top: clamp(70px, 9vw, 120px);
  font-size: 14.5px;
}
.hs-footer-grid {
  display: grid; grid-template-columns: 1.25fr .9fr .9fr 1.15fr 1fr; gap: 34px;
  padding: clamp(48px, 6vw, 72px) 0 40px;
}
.hs-footer .hs-logo { margin-bottom: 16px; }
.hs-footer .hs-logo-text { color: #fff; }
.hs-footer .hs-logo-text b { color: var(--hs-accent-2); }
.hs-footer .hs-logo-text i { color: #7BA391; }
.hs-footer-desc { margin: 0; font-size: 13.5px; color: #8FAF9D; max-width: 300px; }
.hs-footer h4 {
  font-family: var(--hs-font-head);
  font-size: 13px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: #fff; margin: 0 0 18px;
}
.hs-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.hs-footer ul a { color: #C7DACE; font-size: 14px; transition: color .18s ease; }
.hs-footer ul a:hover { color: var(--hs-lime); }
.hs-footer-partner span { display: block; font-size: 12px; color: #7BA391; margin-top: 2px; }
.hs-footer-contact strong { color: #fff; }
.hs-footer-contact a { color: var(--hs-accent-2); font-weight: 600; }
.hs-footer-bottom {
  border-top: 1px solid rgba(199, 218, 206, .14);
  padding: 20px 0;
  display: flex; flex-wrap: wrap; gap: 10px 26px; align-items: center; justify-content: space-between;
  font-size: 13px; color: #7BA391;
}
.hs-footer-bottom a { color: #A7C4B5; }
.hs-footer-bottom a:hover { color: var(--hs-lime); }
@media (max-width: 980px) { .hs-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .hs-footer-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   MOBILNY PASEK POŁĄCZENIA (sticky dół — tylko mobile)
   -------------------------------------------------------------------------- */
.hs-callbar {
  display: none;
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90;
}
.hs-callbar a {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, var(--hs-cta-a), var(--hs-cta-b) 92%);
  color: #fff !important;
  font-family: var(--hs-font-head);
  font-size: 17px; font-weight: 700;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 40px rgba(4, 48, 42, .4), inset 0 1px 0 rgba(255,255,255,.25);
}
@media (max-width: 760px) {
  .hs-callbar { display: block; }
  .hs-page { padding-bottom: 76px; }
}

/* --------------------------------------------------------------------------
   PODSTRONY — hero + treść
   -------------------------------------------------------------------------- */
.hs-page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(760px 380px at 12% -12%, rgba(163, 230, 53, .14), transparent 55%),
    radial-gradient(600px 340px at 94% 8%, rgba(13, 148, 136, .10), transparent 55%),
    linear-gradient(180deg, #FFFFFF 0%, var(--hs-bg-2) 100%);
  border-bottom: 1px solid var(--hs-line);
  padding: clamp(46px, 6.5vw, 84px) 0 clamp(38px, 5vw, 60px);
  text-align: center;
}
.hs-page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='500' viewBox='0 0 1400 500' fill='none'%3E%3Cpath d='M-100 460 L 480 180 L 760 300 L 1500 -60' stroke='%230D9488' stroke-opacity='0.08' stroke-width='2'/%3E%3Cpath d='M-100 540 L 520 240 L 800 360 L 1540 10' stroke='%2365A30D' stroke-opacity='0.06' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center top; background-size: 100% auto;
  pointer-events: none;
}
.hs-page-hero > .hs-container { position: relative; }
.hs-breadcrumb { font-size: 13.5px; color: var(--hs-muted); margin-bottom: 14px; }
.hs-breadcrumb a { color: var(--hs-muted); }
.hs-breadcrumb a:hover { color: var(--hs-accent); }
.hs-page-hero h1 { max-width: 900px; margin: 0 auto; }
.hs-page-hero .hs-lead { max-width: 700px; margin: 16px auto 0; }
.hs-page-hero .hs-hero-cta { justify-content: center; }

/* treść artykułowa podstron */
.hs-article { max-width: 860px; margin: 0 auto; }
.hs-article h2 {
  font-family: var(--hs-font-head);
  font-size: clamp(24px, 2.6vw, 31px); font-weight: 700;
  letter-spacing: -0.015em;
  margin: 44px 0 16px;
}
.hs-article h3 {
  font-family: var(--hs-font-head);
  font-size: clamp(19px, 2vw, 22px); font-weight: 600;
  margin: 32px 0 12px;
}
.hs-article p { margin: 0 0 16px; color: #33534B; }
.hs-article ul, .hs-article ol { margin: 0 0 18px; padding-left: 24px; color: #33534B; }
.hs-article li { margin-bottom: 8px; }
.hs-article strong { color: var(--hs-text); }
.hs-article img {
  border-radius: var(--hs-r-card);
  border: 1px solid var(--hs-line);
  box-shadow: var(--hs-sh-hover);
  margin: 10px 0 22px;
}
.hs-article .hs-callout {
  background: linear-gradient(180deg, #FDFFFE, #F0FBF5);
  border: 1px solid #D3EDDC;
  border-left: 4px solid var(--hs-accent);
  border-radius: 14px;
  padding: 20px 24px;
  margin: 26px 0;
  font-size: 15px;
}
.hs-article table {
  width: 100%; border-collapse: collapse;
  font-size: 14.5px;
  margin: 20px 0 26px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--hs-sh-rest);
}
.hs-article th, .hs-article td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--hs-line); }
.hs-article th { background: var(--hs-bg-2); font-family: var(--hs-font-head); font-weight: 600; color: var(--hs-text); }
.hs-article tr:last-child td { border-bottom: 0; }

/* CTA inline w treści podstron */
.hs-cta-inline {
  background: linear-gradient(180deg, #F2FBF4, #E5F6EA);
  border: 1px solid #CDEBD6;
  border-radius: var(--hs-r-card);
  padding: 28px 30px;
  margin: 36px 0;
  text-align: center;
}
.hs-cta-inline h3 { margin: 0 0 8px; font-family: var(--hs-font-head); }
.hs-cta-inline p { margin: 0 0 18px; color: var(--hs-muted); }

/* --------------------------------------------------------------------------
   Animacje reveal
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0; transform: translateY(22px);
    transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
  }
  [data-reveal].is-in { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hs-dot { animation: none !important; }
}

.hs-page a:focus-visible, .hs-page button:focus-visible {
  outline: 3px solid rgba(13, 148, 136, .5);
  outline-offset: 2px;
  border-radius: 6px;
}
