/* ==========================================================================
   CZYSZCZENIEINSTALACJI.PL — THEME „CZYSTA WODA" 2026
   Jasny clean-lab: biel + światło + akwamarynowe poświaty.
   Petrol #05303B jako kotwica (przed/po, kontakt, stopka).
   JEDEN akcent: cyjan wodny #0891B2 (CTA i detale).
   Fonty: Sora (nagłówki) + Inter (tekst). Prefiks klas: .hx- / .cz-
   ========================================================================== */

:root {
  --cz-bg: #F6FAFB;
  --cz-bg-2: #ECF4F6;
  --cz-surface: #FFFFFF;
  --cz-ink: #05303B;
  --cz-ink-2: #0A4552;
  --cz-text: #0A2E37;
  --cz-muted: #4D6B74;
  --cz-line: #DEEAED;
  --cz-accent: #0891B2;
  --cz-accent-2: #22D3EE;
  --cz-cta-a: #06B6D4;
  --cz-cta-b: #0E7490;

  --cz-font-head: "Sora", "Inter", system-ui, sans-serif;
  --cz-font-body: "Inter", system-ui, -apple-system, sans-serif;

  --cz-r-card: 20px;
  --cz-r-panel: 26px;
  --cz-r-pill: 999px;

  --cz-sh-rest: 0 1px 2px rgba(5, 48, 59, .05), 0 10px 30px rgba(5, 48, 59, .08);
  --cz-sh-hover: 0 2px 4px rgba(5, 48, 59, .05), 0 18px 44px rgba(5, 48, 59, .14);
  --cz-sh-cta: 0 10px 30px rgba(6, 182, 212, .35);
  --cz-sh-panel: 0 28px 90px rgba(5, 48, 59, .18);

  --cz-container: 1180px;
}

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

.hx-container { max-width: var(--cz-container); margin: 0 auto; padding: 0 22px; }

.hx-h1, .hx-h2, .hx-h3 {
  font-family: var(--cz-font-head);
  color: var(--cz-text);
  letter-spacing: -0.025em;
  margin: 0;
}
.hx-h1 { font-size: clamp(38px, 5vw, 64px); line-height: 1.06; font-weight: 700; }
.hx-h2 { font-size: clamp(30px, 3.6vw, 44px); line-height: 1.12; font-weight: 700; }
.hx-h3 { font-size: clamp(19px, 2vw, 22px); line-height: 1.3; font-weight: 600; }

.hx-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--cz-font-head);
  font-size: 13px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--cz-accent);
  margin: 0 0 14px;
}
.hx-kicker::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--cz-accent), var(--cz-accent-2));
}
.hx-lead { font-size: clamp(16px, 1.4vw, 18px); color: var(--cz-muted); max-width: 660px; margin: 16px 0 0; }

.hx-section { padding: clamp(64px, 9vw, 122px) 0; }
.hx-section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 58px); }
.hx-section-head.hx-center { margin-left: auto; margin-right: auto; text-align: center; }
.hx-section-head.hx-center .hx-lead { margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------------------
   Przyciski
   -------------------------------------------------------------------------- */
.hx-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--cz-font-head);
  font-size: 16px; font-weight: 600; line-height: 1;
  padding: 17px 30px;
  border-radius: var(--cz-r-pill);
  border: 0; cursor: pointer;
  text-decoration: none !important;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
  position: relative; overflow: hidden;
  white-space: nowrap;
}
.hx-btn svg { flex: 0 0 auto; }

.hx-btn-cta {
  background: linear-gradient(135deg, var(--cz-cta-a), var(--cz-cta-b) 90%);
  color: #fff !important;
  box-shadow: var(--cz-sh-cta), inset 0 1px 0 rgba(255, 255, 255, .3);
}
.hx-btn-cta:hover {
  background: linear-gradient(135deg, #0FC0DE, #0A7F9E 90%);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(6, 182, 212, .45), inset 0 1px 0 rgba(255, 255, 255, .3);
}
.hx-btn-cta::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -80%; width: 55%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .4), transparent);
  transform: skewX(-20deg);
  animation: hx-shine 4.2s ease-in-out infinite;
}
@keyframes hx-shine {
  0%, 64% { left: -80%; }
  82%, 100% { left: 140%; }
}

.hx-btn-ghost {
  background: #fff;
  color: var(--cz-text) !important;
  border: 1px solid var(--cz-line);
  box-shadow: var(--cz-sh-rest);
}
.hx-btn-ghost:hover { transform: translateY(-2px); box-shadow: var(--cz-sh-hover); border-color: #BFDAE1; color: var(--cz-accent) !important; }

/* --------------------------------------------------------------------------
   Nawigacja
   -------------------------------------------------------------------------- */
.hx-nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(222, 234, 237, .9);
  transition: box-shadow .25s ease;
}
.hx-nav.is-scrolled { box-shadow: 0 10px 34px rgba(5, 48, 59, .09); }
.hx-nav-inner {
  max-width: var(--cz-container); margin: 0 auto; padding: 0 22px;
  display: flex; align-items: center; gap: 14px;
  min-height: 72px;
}
.hx-nav-logo { display: flex; align-items: center; flex: 0 0 auto; }
.hx-nav-logo img { height: 44px; width: auto; display: block; }

.hx-nav-menu {
  display: flex; align-items: center; gap: 2px;
  list-style: none !important; margin: 0 0 0 auto !important; padding: 0 !important;
}
.hx-nav-menu li { list-style: none !important; margin: 0 !important; padding: 0 !important; position: relative; }
.hx-nav-menu > li > a {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--cz-font-body);
  font-size: 14px; font-weight: 500;
  color: var(--cz-text) !important;
  padding: 10px 9px; border-radius: 10px;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease;
}
.hx-nav-menu > li > a:hover { background: var(--cz-bg-2); color: var(--cz-accent) !important; }
.hx-nav-menu > li.is-active > a { color: var(--cz-accent) !important; font-weight: 600; }
.hx-nav-phone.hx-nav-phone-desktop { padding: 12px 18px; font-size: 14px; margin-left: 4px; }

.hx-nav-burger {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  border: 1px solid var(--cz-line) !important; border-radius: 12px !important;
  background: #fff !important;
  color: var(--cz-text) !important;
  cursor: pointer; align-items: center; justify-content: center;
  padding: 0 !important;
}
.hx-nav-burger span, .hx-nav-burger span::before, .hx-nav-burger span::after {
  content: ""; display: block; width: 18px; height: 2px; border-radius: 2px;
  background: var(--cz-text) !important; position: relative;
  transition: transform .25s ease, opacity .2s ease;
}
.hx-nav-burger span::before { position: absolute; top: -6px; }
.hx-nav-burger span::after { position: absolute; top: 6px; }
.hx-nav.is-open .hx-nav-burger span { background: transparent !important; }
.hx-nav.is-open .hx-nav-burger span::before { transform: translateY(6px) rotate(45deg); }
.hx-nav.is-open .hx-nav-burger span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1250px) and (min-width: 1021px) {
  .hx-nav-menu > li > a { padding: 10px 6px; font-size: 13px; }
}
@media (max-width: 1020px) {
  .hx-nav-inner { min-height: 64px; }
  .hx-nav-logo img { height: 38px; }
  .hx-nav-burger { display: inline-flex; }
  .hx-nav-phone-desktop { display: none; }
  .hx-nav-menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff;
    border-bottom: 1px solid var(--cz-line);
    box-shadow: 0 24px 40px rgba(5, 48, 59, .12);
    padding: 12px 16px 18px !important;
    display: none;
  }
  .hx-nav.is-open .hx-nav-menu { display: flex; }
  .hx-nav-menu > li > a { width: 100%; padding: 13px 12px; font-size: 16px; white-space: normal; }
  .hx-nav-mobile-cta { margin-top: 10px; }
  .hx-nav-mobile-cta .hx-btn { width: 100%; }
}
@media (min-width: 1021px) {
  .hx-nav-mobile-cta { display: none; }
}

/* --------------------------------------------------------------------------
   HERO — jasny clean-lab z liniami przepływu
   -------------------------------------------------------------------------- */
.cz-hero {
  position: relative;
  background:
    radial-gradient(900px 460px at 12% -12%, rgba(34, 211, 238, .16), transparent 60%),
    radial-gradient(760px 420px at 95% 8%, rgba(8, 145, 178, .12), transparent 55%),
    linear-gradient(180deg, #FFFFFF 0%, var(--cz-bg) 100%);
  overflow: hidden;
}
.cz-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='640' viewBox='0 0 1200 640' fill='none'%3E%3Cpath d='M-50 120 Q 200 60 450 120 T 950 120 T 1450 120' stroke='%230891B2' stroke-opacity='0.07' stroke-width='2'/%3E%3Cpath d='M-50 190 Q 200 130 450 190 T 950 190 T 1450 190' stroke='%230891B2' stroke-opacity='0.055' stroke-width='2'/%3E%3Cpath d='M-50 260 Q 200 200 450 260 T 950 260 T 1450 260' stroke='%230891B2' stroke-opacity='0.04' stroke-width='2'/%3E%3Cpath d='M-50 330 Q 200 270 450 330 T 950 330 T 1450 330' stroke='%230891B2' stroke-opacity='0.03' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  pointer-events: none;
}
.cz-hero-inner {
  position: relative;
  display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(36px, 5vw, 64px);
  align-items: center;
  padding: clamp(52px, 7vw, 96px) 0 clamp(88px, 10vw, 136px);
}
.cz-hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 600;
  color: var(--cz-accent);
  background: rgba(34, 211, 238, .1);
  border: 1px solid rgba(8, 145, 178, .25);
  border-radius: var(--cz-r-pill);
  padding: 8px 16px;
  margin-bottom: 22px;
}
.cz-hero-badge .hx-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, .5);
  animation: hx-pulse 2.4s infinite;
}
@keyframes hx-pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, .5); }
  70% { box-shadow: 0 0 0 9px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.cz-hero .hx-h1 .hx-grad {
  background: linear-gradient(92deg, var(--cz-cta-a) 5%, var(--cz-accent) 60%, #2BB8D8 95%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.cz-hero-sub {
  font-size: clamp(17px, 1.6vw, 19.5px); line-height: 1.6;
  color: var(--cz-muted);
  max-width: 560px;
  margin: 20px 0 0;
}
.cz-hero-sub strong { color: var(--cz-text); font-weight: 600; }
.cz-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.cz-hero-cta .hx-btn-cta { font-size: 17.5px; padding: 19px 34px; }
.cz-hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  margin-top: 34px; padding-top: 26px;
  border-top: 1px solid var(--cz-line);
  font-size: 14px; color: var(--cz-muted);
}
.cz-hero-trust .hx-trust-item { display: inline-flex; align-items: center; gap: 8px; }
.cz-hero-trust strong { color: var(--cz-text); font-weight: 600; }

.cz-hero-media { position: relative; }
.cz-hero-photo {
  position: relative;
  border-radius: var(--cz-r-panel);
  overflow: hidden;
  border: 1px solid rgba(8, 145, 178, .18);
  box-shadow: 0 34px 90px rgba(5, 48, 59, .22);
  background: #fff;
}
.cz-hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(34, 211, 238, .12), transparent 45%);
  pointer-events: none;
}
.cz-hero-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3.3; }
.cz-hero-card {
  position: absolute; left: -18px; bottom: -24px;
  display: flex; align-items: center; gap: 13px;
  background: rgba(255, 255, 255, .97);
  color: var(--cz-text);
  border: 1px solid var(--cz-line);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(5, 48, 59, .25);
  padding: 14px 20px 14px 14px;
  font-size: 13.5px; line-height: 1.35;
}
.cz-hero-card .cz-hero-card-icon {
  width: 42px; height: 42px; border-radius: 12px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #D9F5FB, #B9EBF6);
  color: var(--cz-accent);
}
.cz-hero-card strong { display: block; font-family: var(--cz-font-head); font-size: 14.5px; }
.cz-hero-card span { color: var(--cz-muted); }

@media (max-width: 900px) {
  .cz-hero-inner { grid-template-columns: 1fr; padding-top: 40px; }
  .cz-hero-media { max-width: 560px; }
  .cz-hero-photo { transform: none; }
  .cz-hero-photo img { aspect-ratio: 16 / 10; }
  .cz-hero-card { left: 14px; bottom: -20px; }
  .cz-hero-cta .hx-btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   Pasek zaufania
   -------------------------------------------------------------------------- */
.hx-trustbar { position: relative; z-index: 5; margin-top: clamp(-60px, -5vw, -44px); }
.hx-trustbar-card {
  background: var(--cz-surface);
  border: 1px solid var(--cz-line);
  border-radius: var(--cz-r-panel);
  box-shadow: var(--cz-sh-panel);
  padding: clamp(22px, 3vw, 34px) clamp(20px, 3vw, 38px);
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px 18px;
}
.hx-trust-cell { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: var(--cz-muted); line-height: 1.4; }
.hx-trust-cell strong { display: block; font-family: var(--cz-font-head); font-size: 14.5px; color: var(--cz-text); margin-bottom: 2px; }
.hx-trust-icon {
  width: 40px; height: 40px; flex: 0 0 auto;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #DFF6FB, #C4EDF7);
  color: var(--cz-accent);
}
@media (max-width: 1020px) { .hx-trustbar-card { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .hx-trustbar-card { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; } }

/* --------------------------------------------------------------------------
   PRZED / PO — petrolowa scena z suwakiem
   -------------------------------------------------------------------------- */
.cz-ba-section {
  position: relative;
  background:
    radial-gradient(820px 420px at 84% -10%, rgba(34, 211, 238, .14), transparent 60%),
    radial-gradient(640px 380px at 6% 110%, rgba(8, 145, 178, .16), transparent 60%),
    linear-gradient(165deg, var(--cz-ink), var(--cz-ink-2));
  color: #E7F5F8;
  overflow: hidden;
}
.cz-ba-section .hx-h2 { color: #fff; }
.cz-ba-section .hx-lead { color: #9FC2CB; }
.cz-ba-section .hx-kicker { color: var(--cz-accent-2); }

.cz-ba {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--cz-r-panel);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
}
.cz-ba img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; pointer-events: none; }
.cz-ba .cz-ba-after {
  position: absolute; inset: 0;
  clip-path: inset(0 0 0 50%);
}
.cz-ba .cz-ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 0 20px rgba(34, 211, 238, .8);
  transform: translateX(-50%);
}
.cz-ba .cz-ba-handle::after {
  content: "◂ ▸";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fff;
  color: var(--cz-accent);
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 26px rgba(0, 0, 0, .4);
}
.cz-ba-label {
  position: absolute; top: 16px;
  font-family: var(--cz-font-head);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--cz-r-pill);
  backdrop-filter: blur(6px);
  pointer-events: none;
}
.cz-ba-label.przed { left: 16px; background: rgba(124, 74, 18, .82); color: #FFE9CF; }
.cz-ba-label.po { right: 16px; background: rgba(8, 145, 178, .85); color: #E3FAFF; }
.cz-ba-caption { text-align: center; color: #9FC2CB; font-size: 14px; margin: 22px auto 0; max-width: 640px; }

.cz-ba-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 900px; margin: 36px auto 0;
}
.cz-ba-stat {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--cz-r-card);
  padding: 20px 22px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.cz-ba-stat strong { display: block; font-family: var(--cz-font-head); font-size: clamp(26px, 3vw, 34px); font-weight: 700; color: #fff; line-height: 1.1; }
.cz-ba-stat strong em { font-style: normal; color: var(--cz-accent-2); }
.cz-ba-stat span { font-size: 13px; color: #9FC2CB; }
@media (max-width: 620px) { .cz-ba-stats { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   PROCES — 4 kroki z linią przepływu
   -------------------------------------------------------------------------- */
.cz-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }
.cz-steps::before {
  content: ""; position: absolute; top: 34px; left: 8%; right: 8%; height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(8, 145, 178, .1), var(--cz-accent-2), rgba(8, 145, 178, .1));
  background-size: 200% 100%;
  animation: cz-flow 5s linear infinite;
}
@keyframes cz-flow { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }
.cz-step {
  position: relative;
  background: var(--cz-surface);
  border: 1px solid var(--cz-line);
  border-radius: var(--cz-r-card);
  box-shadow: var(--cz-sh-rest);
  padding: 26px 22px 24px;
  text-align: center;
  transition: transform .24s ease, box-shadow .24s ease;
}
.cz-step:hover { transform: translateY(-5px); box-shadow: var(--cz-sh-hover); }
.cz-step-num {
  width: 52px; height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--cz-font-head); font-size: 20px; font-weight: 700;
  color: #fff;
  background: linear-gradient(160deg, var(--cz-cta-a), var(--cz-cta-b));
  box-shadow: 0 8px 22px rgba(6, 182, 212, .35);
  position: relative; z-index: 1;
}
.cz-step h3 { font-family: var(--cz-font-head); font-size: 17px; font-weight: 600; color: var(--cz-text); margin: 0 0 8px; }
.cz-step p { font-size: 14px; line-height: 1.55; color: var(--cz-muted); margin: 0; }
@media (max-width: 1020px) {
  .cz-steps { grid-template-columns: 1fr 1fr; }
  .cz-steps::before { display: none; }
}
@media (max-width: 560px) { .cz-steps { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Metody — karty
   -------------------------------------------------------------------------- */
.hx-methods-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hx-method-card {
  position: relative;
  background: var(--cz-surface);
  border: 1px solid var(--cz-line);
  border-radius: var(--cz-r-card);
  padding: 30px 28px 26px;
  box-shadow: var(--cz-sh-rest);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
  overflow: hidden;
}
.hx-method-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cz-cta-a), var(--cz-accent-2));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.hx-method-card:hover { transform: translateY(-6px); box-shadow: var(--cz-sh-hover); border-color: #BFDAE1; }
.hx-method-card:hover::before { transform: scaleX(1); }
.hx-method-card h3 { font-family: var(--cz-font-head); font-size: 19.5px; font-weight: 600; color: var(--cz-text); margin: 0; letter-spacing: -0.015em; }
.hx-method-card > p { font-size: 14.5px; line-height: 1.6; color: var(--cz-muted); margin: 0; }
.hx-service-icon {
  width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #DFF6FB, #C4EDF7);
  color: var(--cz-accent);
  margin-bottom: 4px;
  transition: transform .24s ease;
}
.hx-method-card:hover .hx-service-icon { transform: scale(1.07); }
.hx-checklist { list-style: none !important; margin: 4px 0 6px !important; padding: 0 !important; display: grid; gap: 9px; }
.hx-checklist li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 14px; color: var(--cz-text);
  list-style: none !important; margin: 0 !important; padding: 0 !important;
}
.hx-checklist li span.hx-check {
  width: 22px; height: 22px; flex: 0 0 auto; margin-top: 1px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #D9F5FB, #B9EBF6);
  color: var(--cz-accent);
}
.hx-service-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--cz-font-head);
  font-size: 13.5px; font-weight: 600; color: var(--cz-accent);
  margin-top: auto;
  transition: gap .2s ease;
}
.hx-method-card:hover .hx-service-more { gap: 10px; }
@media (max-width: 1020px) { .hx-methods-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

/* --------------------------------------------------------------------------
   Objawy
   -------------------------------------------------------------------------- */
.hx-symptoms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hx-symptom {
  background: var(--cz-surface);
  border: 1px solid var(--cz-line);
  border-radius: var(--cz-r-card);
  box-shadow: var(--cz-sh-rest);
  padding: 22px 24px;
  font-size: 14.5px; line-height: 1.6; color: var(--cz-muted);
  transition: transform .22s ease, box-shadow .22s ease;
}
.hx-symptom:hover { transform: translateY(-3px); box-shadow: var(--cz-sh-hover); }
.hx-symptom strong {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--cz-font-head);
  font-size: 15.5px; font-weight: 600; color: var(--cz-text);
  margin-bottom: 7px;
}
.hx-symptom strong::before {
  content: "";
  width: 9px; height: 9px; border-radius: 50%;
  background: #B45309;
  flex: 0 0 auto;
  box-shadow: 0 0 0 4px rgba(180, 83, 9, .14);
}
@media (max-width: 900px) { .hx-symptoms-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .hx-symptoms-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.hx-faq { max-width: 880px; margin: 0 auto; }
.hx-faq .faq-item, html body .faq-item {
  background: #fff !important;
  border: 1px solid var(--cz-line) !important;
  border-radius: var(--cz-r-card) !important;
  box-shadow: var(--cz-sh-rest) !important;
  margin-bottom: 12px;
  overflow: hidden;
}
.hx-faq .faq-item summary, html body .faq-item summary {
  padding: 18px 52px 18px 22px;
  cursor: pointer;
  font-family: var(--cz-font-head) !important;
  font-weight: 600;
  font-size: 16.5px;
  color: var(--cz-text) !important;
  list-style: none;
  position: relative;
}
.hx-faq .faq-item summary::-webkit-details-marker, html body .faq-item summary::-webkit-details-marker { display: none; }
.hx-faq .faq-item summary::after, html body .faq-item summary::after {
  content: "+";
  position: absolute; right: 22px; top: 50%;
  transform: translateY(-50%);
  font-size: 24px; font-weight: 400;
  color: var(--cz-accent) !important;
}
.hx-faq .faq-item[open] summary::after, html body .faq-item[open] summary::after { content: "−"; }
.hx-faq .faq-body, html body .faq-item .faq-body { padding: 0 22px 20px; color: var(--cz-muted); line-height: 1.65; font-size: 15px; }
.hx-faq .faq-body ul { margin: 8px 0; padding-left: 22px; }
.hx-faq .faq-body strong { color: var(--cz-text); }

/* --------------------------------------------------------------------------
   Panel kontaktowy (petrol)
   -------------------------------------------------------------------------- */
.hx-contact-panel {
  position: relative;
  border-radius: var(--cz-r-panel);
  overflow: hidden;
  background:
    radial-gradient(700px 380px at 12% -20%, rgba(34, 211, 238, .2), transparent 55%),
    radial-gradient(560px 340px at 95% 120%, rgba(8, 145, 178, .18), transparent 60%),
    linear-gradient(160deg, var(--cz-ink), var(--cz-ink-2));
  color: #E7F5F8;
  box-shadow: var(--cz-sh-panel);
  padding: clamp(36px, 5.5vw, 72px) clamp(24px, 5vw, 72px);
}
.hx-contact-grid {
  position: relative;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 4vw, 60px);
  align-items: center;
}
.hx-contact-panel .hx-h2 { color: #fff; }
.hx-contact-panel .hx-kicker { color: var(--cz-accent-2); }
.hx-contact-sub { color: #9FC2CB; font-size: 16.5px; margin: 16px 0 0; max-width: 480px; }
.hx-contact-ctas { display: flex; flex-direction: column; gap: 12px; }
.hx-phone-btn {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--cz-r-card);
  padding: 16px 22px;
  text-decoration: none !important;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.hx-phone-btn:hover { transform: translateY(-3px); background: rgba(255, 255, 255, .09); border-color: rgba(255, 255, 255, .3); }
.hx-phone-btn .hx-phone-ico {
  width: 46px; height: 46px; border-radius: 13px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--cz-cta-a), var(--cz-cta-b));
  color: #fff;
  box-shadow: 0 8px 20px rgba(6, 182, 212, .35);
}
.hx-phone-btn small { display: block; font-size: 12.5px; color: #8FB5BF; letter-spacing: .03em; }
.hx-phone-btn strong { font-family: var(--cz-font-head); font-size: clamp(19px, 2vw, 23px); font-weight: 700; color: #fff !important; letter-spacing: .01em; }
.hx-contact-meta {
  display: flex; flex-wrap: wrap; gap: 10px 24px;
  margin-top: 18px; font-size: 14px; color: #9FC2CB;
}
.hx-contact-meta a { color: #C3E9F1 !important; }
.hx-contact-meta .hx-meta-item { display: inline-flex; align-items: center; gap: 8px; }
@media (max-width: 900px) { .hx-contact-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Stopka (petrol)
   -------------------------------------------------------------------------- */
.hx-footer {
  background: var(--cz-ink);
  color: #9FC2CB;
  font-family: var(--cz-font-body);
  font-size: 14px; line-height: 1.6;
  padding: clamp(48px, 6vw, 76px) 0 0;
  position: relative;
}
.hx-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, .4), transparent);
}
.hx-footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 36px;
  padding-bottom: 44px;
}
img.hx-footer-logo { height: 44px !important; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: .92; }
.hx-footer-desc { margin: 0; font-size: 13.5px; color: #7AA2AD; max-width: 280px; }
.hx-footer h4 {
  font-family: var(--cz-font-head); font-size: 13px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: #fff; margin: 0 0 18px;
}
.hx-footer ul { list-style: none !important; margin: 0 !important; padding: 0 !important; display: grid; gap: 10px; }
.hx-footer ul li { list-style: none !important; margin: 0 !important; padding: 0 !important; }
.hx-footer a { color: #9FC2CB !important; text-decoration: none !important; transition: color .16s ease; }
.hx-footer a:hover { color: var(--cz-accent-2) !important; }
.hx-footer .hx-footer-site-desc { font-size: 12px; color: #5E8794; }
.hx-footer-contact strong { color: #DEF2F7; }
.hx-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px;
  font-size: 13px; color: #5E8794;
}
.hx-footer-bottom p { margin: 0; }
.hx-footer-bottom a { color: #7AA2AD !important; }
.hx-footer-bottom a:hover { color: var(--cz-accent-2) !important; }
@media (max-width: 1020px) { .hx-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .hx-footer-grid { grid-template-columns: 1fr; gap: 30px; } }

/* --------------------------------------------------------------------------
   Pływający pasek "Zadzwoń" (mobile)
   -------------------------------------------------------------------------- */
.hx-sticky-call { display: none; }
@media (max-width: 782px) {
  .hx-sticky-call {
    position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 1100;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: linear-gradient(135deg, var(--cz-cta-a), var(--cz-cta-b) 90%);
    color: #fff !important;
    font-family: var(--cz-font-head); font-size: 16.5px; font-weight: 600;
    border-radius: var(--cz-r-pill);
    padding: 16px 20px;
    box-shadow: 0 12px 32px rgba(6, 182, 212, .45), inset 0 1px 0 rgba(255, 255, 255, .3);
    text-decoration: none !important;
    overflow: hidden;
  }
  .hx-sticky-call::after {
    content: ""; position: absolute; top: 0; bottom: 0; left: -80%; width: 55%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .35), transparent);
    transform: skewX(-20deg);
    animation: hx-shine 4.2s ease-in-out infinite;
  }
  body { padding-bottom: 84px !important; }
}

/* --------------------------------------------------------------------------
   Pasek CTA nad stopką (podstrony)
   -------------------------------------------------------------------------- */
.hx-cta-strip { padding: clamp(56px, 7vw, 96px) 22px; background: var(--cz-bg); }
.hx-cta-panel {
  position: relative;
  max-width: var(--cz-container);
  margin: 0 auto;
  border-radius: var(--cz-r-panel);
  overflow: hidden;
  background:
    radial-gradient(620px 340px at 12% -20%, rgba(34, 211, 238, .2), transparent 55%),
    radial-gradient(520px 300px at 95% 130%, rgba(8, 145, 178, .18), transparent 60%),
    linear-gradient(160deg, var(--cz-ink), var(--cz-ink-2));
  color: #E7F5F8;
  box-shadow: var(--cz-sh-panel);
  padding: clamp(36px, 5vw, 64px) clamp(24px, 5vw, 64px);
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.hx-cta-panel h2 {
  font-family: var(--cz-font-head) !important;
  font-size: clamp(24px, 3vw, 36px) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.15 !important;
  color: #fff !important;
  margin: 0 0 10px !important;
}
.hx-cta-panel p { color: #9FC2CB !important; font-size: 16px !important; margin: 0 !important; max-width: 520px; }
.hx-cta-panel .hx-btn-cta { font-size: 17px; padding: 18px 32px; flex: 0 0 auto; }
@media (max-width: 700px) {
  .hx-cta-panel { flex-direction: column; align-items: stretch; text-align: center; }
  .hx-cta-panel p { max-width: none; }
}

/* --------------------------------------------------------------------------
   PODSTRONY — skin (page-hero, artykuły, kafle)
   -------------------------------------------------------------------------- */
html body .page-hero {
  background:
    radial-gradient(800px 400px at 14% -14%, rgba(34, 211, 238, .18), transparent 60%),
    radial-gradient(640px 360px at 92% 10%, rgba(8, 145, 178, .12), transparent 55%),
    linear-gradient(180deg, #FFFFFF 0%, var(--cz-bg-2) 100%) !important;
  background-size: auto !important;
  padding: clamp(56px, 7vw, 92px) 22px !important;
  min-height: 0 !important;
  position: relative;
  overflow: hidden;
}
html body .page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='640' viewBox='0 0 1200 640' fill='none'%3E%3Cpath d='M-50 120 Q 200 60 450 120 T 950 120 T 1450 120' stroke='%230891B2' stroke-opacity='0.10' stroke-width='2'/%3E%3Cpath d='M-50 190 Q 200 130 450 190 T 950 190 T 1450 190' stroke='%230891B2' stroke-opacity='0.08' stroke-width='2'/%3E%3Cpath d='M-50 260 Q 200 200 450 260 T 950 260 T 1450 260' stroke='%230891B2' stroke-opacity='0.06' stroke-width='2'/%3E%3Cpath d='M-50 330 Q 200 270 450 330 T 950 330 T 1450 330' stroke='%230891B2' stroke-opacity='0.045' stroke-width='2'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center top !important;
  background-size: 100% auto !important;
  pointer-events: none;
}
html body .page-hero::after {
  content: "Czyszczenie instalacji — dojazd do 200 km od Częstochowy";
  display: block;
  order: -1;
  text-align: center;
  font-family: var(--cz-font-head);
  font-size: 13px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--cz-accent);
  margin-bottom: 16px;
  position: relative;
}
html body .page-hero h1 {
  color: var(--cz-text) !important;
  font-family: var(--cz-font-head) !important;
  font-size: clamp(32px, 4.4vw, 52px) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.025em !important;
  text-align: center !important;
  margin: 0 0 12px !important;
  text-shadow: none !important;
  position: relative;
}
html body .page-hero h4, html body .page-hero > p {
  color: var(--cz-muted) !important;
  font-size: clamp(16px, 1.8vw, 20px) !important;
  font-weight: 500 !important;
  text-shadow: none !important;
  margin: 0 !important;
  position: relative;
}
html body .page-hero .breadcrumb, html body .page-hero .breadcrumb a { color: var(--cz-muted) !important; position: relative; }
html body .page-hero .hero-ctas { margin-top: 26px; position: relative; }
html body .page-hero .hero-ctas .btn-primary {
  background: linear-gradient(135deg, var(--cz-cta-a), var(--cz-cta-b) 90%) !important;
  border: 0 !important; color: #fff !important;
  font-family: var(--cz-font-head) !important; font-weight: 600 !important;
  box-shadow: var(--cz-sh-cta), inset 0 1px 0 rgba(255,255,255,.3) !important;
}
html body .page-hero .hero-ctas .btn-outline {
  background: #fff !important;
  border: 1px solid var(--cz-line) !important;
  color: var(--cz-text) !important;
  font-family: var(--cz-font-head) !important;
  box-shadow: var(--cz-sh-rest) !important;
}

html body .article-section img {
  border-radius: var(--cz-r-card) !important;
  border: 1px solid var(--cz-line) !important;
  box-shadow: 0 2px 4px rgba(5,48,59,.05), 0 24px 60px rgba(5,48,59,.13) !important;
}
html body .breadcrumb, html body .breadcrumb a { color: var(--cz-muted) !important; font-size: 13.5px !important; }
html body .breadcrumb a:hover { color: var(--cz-accent) !important; }

html body .info-box, html body .callout {
  background: linear-gradient(180deg, #FDFFFF, #F0F9FB) !important;
  border: 1px solid var(--cz-line) !important;
  border-left: 4px solid var(--cz-accent) !important;
  border-radius: 16px !important;
  box-shadow: var(--cz-sh-rest) !important;
}
html body .article-cta {
  background: linear-gradient(180deg, #E9F8FB, #DBF2F7) !important;
  border: 1px solid #C4E7EF !important;
  border-left: 4px solid var(--cz-accent) !important;
  border-radius: 16px !important;
}
html body .article-cta h3 { color: var(--cz-text) !important; font-family: var(--cz-font-head) !important; }
html body .article-cta p { color: var(--cz-muted) !important; }
html body .article-cta p strong { color: var(--cz-text) !important; }
/* główny przycisk CTA w artykule -> cyjanowy pill, nie pomarańczowy */
html body .article-cta a:not(.hx-art-link a) {
  display: inline-block;
  background: linear-gradient(135deg, var(--cz-cta-a), var(--cz-cta-b) 90%) !important;
  color: #fff !important;
  font-family: var(--cz-font-head) !important;
  font-weight: 600 !important;
  border-radius: var(--cz-r-pill) !important;
  box-shadow: var(--cz-sh-cta), inset 0 1px 0 rgba(255,255,255,.3) !important;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease !important;
}
html body .article-cta a:not(.hx-art-link a):hover {
  background: linear-gradient(135deg, #0FC0DE, #0A7F9E 90%) !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(6,182,212,.45), inset 0 1px 0 rgba(255,255,255,.3) !important;
}
/* kontekstowy link "Zobacz jak pracujemy" -> zwykły link tekstowy, bez pigułki */
html body .article-cta a.hx-art-link,
html body .hx-art-link a {
  display: inline !important;
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: var(--cz-accent) !important;
  font-weight: 600 !important;
}
html body .hx-art-link { color: var(--cz-muted) !important; }

html body .related-articles .related-card,
html body .related-grid > a, html body .related-grid > div {
  background: #fff !important;
  border: 1px solid var(--cz-line) !important;
  border-radius: var(--cz-r-card) !important;
  box-shadow: var(--cz-sh-rest) !important;
  transition: transform .22s ease, box-shadow .22s ease !important;
}
html body .related-grid > a:hover { transform: translateY(-4px); box-shadow: var(--cz-sh-hover) !important; }

html body .contact-tile {
  background: #fff !important;
  border: 1px solid var(--cz-line) !important;
  border-radius: var(--cz-r-card) !important;
  box-shadow: var(--cz-sh-rest) !important;
  transition: transform .22s ease, box-shadow .22s ease !important;
}
html body .contact-tile:hover { transform: translateY(-4px); box-shadow: var(--cz-sh-hover) !important; }
html body .contact-tile .tile-icon, html body .contact-tile svg { color: var(--cz-accent) !important; fill: var(--cz-accent) !important; }

html body .gallery-grid img {
  border-radius: var(--cz-r-card) !important;
  border: 1px solid var(--cz-line) !important;
  box-shadow: var(--cz-sh-rest) !important;
}

/* --------------------------------------------------------------------------
   Animacje wejścia + dostępność
   -------------------------------------------------------------------------- */
.hx-reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .65, .3, 1); }
.hx-reveal.is-visible { opacity: 1; transform: none; }
.hx-reveal-d1 { transition-delay: .08s; }
.hx-reveal-d2 { transition-delay: .16s; }
.hx-reveal-d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .hx-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hx-btn-cta::after, .hx-sticky-call::after { animation: none !important; }
  .cz-hero-badge .hx-dot { animation: none !important; }
  .cz-steps::before { animation: none !important; }
}

.hx-page a:focus-visible, .hx-page button:focus-visible,
.hx-nav a:focus-visible, .hx-nav button:focus-visible {
  outline: 3px solid rgba(8, 145, 178, .5);
  outline-offset: 2px;
  border-radius: 6px;
}

/* --- poprawki v4 --- */
/* oddech między paskiem zaufania a sekcją przed/po */
.hx-trustbar { margin-bottom: clamp(56px, 8vw, 104px); }

/* karty produktów (chemiczne): zdjęcie bez własnej ramki — koniec kafelka w kafelku */
html body .article-section .product img,
html body .products-grid img,
html body .product .product-img img {
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 12px !important;
}
html body .product .product-img {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* --- nowe logo (lockup: ikona kropli + wordmark) --- */
.cz-logo { display: flex; align-items: center; gap: 10px; text-decoration: none !important; }
.cz-logo-icon { flex: 0 0 auto; filter: drop-shadow(0 3px 8px rgba(6, 182, 212, .3)); }
.cz-logo-text {
  font-family: var(--cz-font-head);
  font-size: 18.5px; font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--cz-text);
  line-height: 1;
  white-space: nowrap;
}
.cz-logo-text b { color: var(--cz-accent); font-weight: 700; }
.cz-logo-text i { font-style: normal; color: var(--cz-muted); font-size: 13px; font-weight: 500; margin-left: 1px; }
@media (max-width: 1250px) and (min-width: 1021px) { .cz-logo-text { font-size: 16px; } }
.hx-footer .cz-logo { margin-bottom: 16px; }
.hx-footer .cz-logo-text { color: #fff; }
.hx-footer .cz-logo-text b { color: var(--cz-accent-2); }
.hx-footer .cz-logo-text i { color: #7AA2AD; }

/* przycisk telefonu w nav nie może się kurczyć (obcinanie numeru) */
.hx-nav-phone.hx-nav-phone-desktop { flex: 0 0 auto; }
@media (min-width: 1021px) { .hx-nav-menu { flex-wrap: nowrap; } }

/* ==========================================================================
   ARTYKUŁY — pełny override starej palety (_article_styles.html) na „Czysta Woda"
   Nadpisuje KAŻDĄ klasę article-*/related-* na cyjan/petrol.
   ========================================================================== */

/* hero artykułu */
html body .article-hero h1 { color: var(--cz-text) !important; font-family: var(--cz-font-head) !important; }
html body .article-hero .breadcrumb,
html body .article-hero .breadcrumb a { color: var(--cz-muted) !important; }
html body .article-hero .breadcrumb a:hover { color: var(--cz-accent) !important; }
html body .article-hero .article-cat {
  background: linear-gradient(135deg, var(--cz-cta-a), var(--cz-cta-b) 90%) !important;
  color: #fff !important;
}
html body .article-hero .article-meta span { color: var(--cz-muted) !important; }

/* treść artykułu */
html body .article-body p.lead { color: var(--cz-text) !important; }
html body .article-body h2,
html body .article-body h3 { color: var(--cz-text) !important; font-family: var(--cz-font-head) !important; }
html body .article-body strong { color: var(--cz-text) !important; }
html body .article-body a { color: var(--cz-accent) !important; }
html body .article-body a:hover { color: var(--cz-cta-b) !important; }
html body .article-body table th { background: var(--cz-bg-2) !important; color: var(--cz-text) !important; }

/* callout — akcent cyjan zamiast pomarańczu */
html body .article-body .callout {
  background: linear-gradient(180deg, #FDFFFF, #F0F9FB) !important;
  border-left: 4px solid var(--cz-accent) !important;
}
html body .article-body .callout strong,
html body .article-body .callout > strong:first-child { color: var(--cz-text) !important; }

/* CTA box — JASNY, nie ciemny; nagłówek i tekst czytelne */
html body .article-cta {
  background: linear-gradient(180deg, #E9F8FB, #DBF2F7) !important;
  border: 1px solid #C4E7EF !important;
  border-left: 4px solid var(--cz-accent) !important;
  border-radius: 16px !important;
  color: var(--cz-text) !important;
}
html body .article-cta h3 { color: var(--cz-text) !important; font-family: var(--cz-font-head) !important; }
html body .article-cta p { color: var(--cz-muted) !important; }
html body .article-cta p strong { color: var(--cz-text) !important; }
/* główny przycisk -> cyjanowy pill */
html body .article-cta a:not(.hx-art-link a) {
  display: inline-block;
  background: linear-gradient(135deg, var(--cz-cta-a), var(--cz-cta-b) 90%) !important;
  color: #fff !important;
  font-family: var(--cz-font-head) !important;
  font-weight: 600 !important;
  border-radius: var(--cz-r-pill) !important;
  box-shadow: var(--cz-sh-cta), inset 0 1px 0 rgba(255,255,255,.3) !important;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease !important;
}
html body .article-cta a:not(.hx-art-link a):hover {
  background: linear-gradient(135deg, #0FC0DE, #0A7F9E 90%) !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(6,182,212,.45), inset 0 1px 0 rgba(255,255,255,.3) !important;
}
/* kontekstowy link "Zobacz jak pracujemy" -> zwykły tekstowy link */
html body .article-cta a.hx-art-link,
html body .hx-art-link a {
  display: inline !important;
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: var(--cz-accent) !important;
  font-weight: 600 !important;
}
html body .hx-art-link { color: var(--cz-muted) !important; }

/* related articles */
html body .related-articles h2 { color: var(--cz-text) !important; font-family: var(--cz-font-head) !important; }
html body .related-card h3 { color: var(--cz-text) !important; }
html body .related-card .related-cat { color: var(--cz-accent) !important; }

/* ==========================================================================
   PODSTRONY USŁUGOWE + PARTIALE — pełny override starej palety na „Czysta Woda"
   Obejmuje: .cta-inline, .article-section, .callout, .tech-table/.type-card,
   .faq-item (partial FAQ), .blog-card (listing). Domyka wszystkie #d97706/#303a4d.
   ========================================================================== */

/* --- box CTA inline (ropuls / chemiczne / wymienniki) — JASNY, bez ramki --- */
html body .cta-inline {
  background: linear-gradient(180deg, #E9F8FB, #DBF2F7) !important;
  border: 1px solid #C4E7EF !important;
  border-radius: var(--cz-r-panel) !important;
  color: var(--cz-text) !important;
}
html body .cta-inline h2,
html body .cta-inline h3 { color: var(--cz-text) !important; font-family: var(--cz-font-head) !important; }
html body .cta-inline p { color: var(--cz-muted) !important; }
html body .cta-inline p strong { color: var(--cz-text) !important; }
/* JEDYNY element z obramowaniem/wyróżnieniem: przycisk Zadzwoń */
html body .cta-inline a:not(.hx-art-link a) {
  display: inline-block;
  background: linear-gradient(135deg, var(--cz-cta-a), var(--cz-cta-b) 90%) !important;
  color: #fff !important;
  font-family: var(--cz-font-head) !important;
  font-weight: 600 !important;
  border-radius: var(--cz-r-pill) !important;
  box-shadow: var(--cz-sh-cta), inset 0 1px 0 rgba(255,255,255,.3) !important;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease !important;
}
html body .cta-inline a:not(.hx-art-link a):hover {
  background: linear-gradient(135deg, #0FC0DE, #0A7F9E 90%) !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(6,182,212,.45), inset 0 1px 0 rgba(255,255,255,.3) !important;
}

/* --- treść podstron: nagłówki / linki / strong / tabele --- */
html body .article-section h2,
html body .article-section h3 { color: var(--cz-text) !important; font-family: var(--cz-font-head) !important; }
html body .article-section strong { color: var(--cz-text) !important; }
html body .article-section a:not(.cta-inline a) { color: var(--cz-accent) !important; }
html body .article-section a:hover:not(.cta-inline a) { color: var(--cz-cta-b) !important; }
/* przycisk w cta-inline zawsze biały tekst — wygrywa nad .article-section a */
html body .article-section .cta-inline a,
html body .cta-inline a:not(.hx-art-link a) { color: #fff !important; }
html body .tech-table th,
html body .type-card h4 { color: var(--cz-text) !important; }
html body .tech-table th { background: var(--cz-bg-2) !important; }

/* --- callout na podstronach: cyjan zamiast pomarańczu --- */
html body .callout {
  background: linear-gradient(180deg, #FDFFFF, #F0F9FB) !important;
  border-left: 4px solid var(--cz-accent) !important;
}
html body .callout strong,
html body .callout > strong:first-child { color: var(--cz-text) !important; }

/* --- FAQ (partial _faq_styles) --- */
html body .faq-item summary { color: var(--cz-text) !important; }
html body .faq-item summary::after { color: var(--cz-accent) !important; }
html body .faq-item .faq-answer a { color: var(--cz-accent) !important; }
html body .faq-item .faq-answer strong { color: var(--cz-text) !important; }

/* --- listing blogu (.blog-card) --- */
html body .blog-hero h1 { color: var(--cz-text) !important; font-family: var(--cz-font-head) !important; }
html body .blog-card h2 { color: var(--cz-text) !important; }
html body .blog-card:hover { border-color: #BFDAE1 !important; }
html body .blog-card .blog-cat { color: var(--cz-accent) !important; }
html body .blog-card .blog-read-more { color: var(--cz-accent) !important; }

/* --- poprawki v12: hero artykułu + przycinane zdjęcia produktowe --- */

/* hero artykułu (blog): brandowy band spójny z resztą, wyśrodkowany, kolory Czysta Woda */
html body .article-hero {
  background:
    radial-gradient(700px 340px at 20% -14%, rgba(34,211,238,.14), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, var(--cz-bg-2) 100%) !important;
  border-bottom: 1px solid var(--cz-line) !important;
  text-align: center !important;
  padding: clamp(40px, 6vw, 72px) 22px clamp(28px, 4vw, 44px) !important;
}
html body .article-hero > * { max-width: 820px; margin-left: auto !important; margin-right: auto !important; }
html body .article-hero .breadcrumb,
html body .article-hero .breadcrumb a { color: var(--cz-muted) !important; }
html body .article-hero .breadcrumb a:hover { color: var(--cz-accent) !important; }
html body .article-hero .article-cat {
  background: linear-gradient(135deg, var(--cz-cta-a), var(--cz-cta-b) 90%) !important;
  color: #fff !important;
}
html body .article-hero h1 {
  color: var(--cz-text) !important;
  font-family: var(--cz-font-head) !important;
  line-height: 1.1 !important;
}
html body .article-hero .article-meta,
html body .article-hero .article-meta span { color: var(--cz-muted) !important; }

/* zdjęcia produktowe w układzie 2-kolumnowym: NIE przycinaj — pokaż cały produkt */
html body .article-figure-2col img {
  aspect-ratio: 4 / 3 !important;
  object-fit: contain !important;
  background: #fff !important;
  padding: 18px !important;
  border: 1px solid var(--cz-line) !important;
  box-shadow: var(--cz-sh-rest) !important;
}
