/* ======================================================
   COOL DREAM STYLES — CLEAN REBUILD
   PART 1/3
   Zakres:
   01) Reset / Base
   02) Tokens (global + page scopes)
   03) Typography standard (Raleway)
   04) Layout helpers
   05) Header / Nav / Header CTA
   06) Global CTA buttons
   07) Hero base
   08) Reveal animations (CSS-ready, JS hooks)
====================================================== */

/* ======================================================
   01) RESET / BASE
====================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root,
html,
body {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  font-family: "Raleway", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: #0f172a;
  line-height: 1.5;
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* ======================================================
   02) TOKENS (GLOBAL)
   Wszystko co najczęściej ruszasz: tutaj.
====================================================== */

:root {
  /* ---------- Colors ---------- */
  --ink-900: #0f172a;
  --ink-800: #1e293b;
  --ink-700: #334155;
  --ink-600: #475569;
  --ink-500: #64748b;
  --white: #ffffff;

  --line-soft: rgba(148, 163, 184, 0.28);
  --line-mid: rgba(148, 163, 184, 0.45);

  --brand-900: #0a2540;
  --brand-950: #081c33;

  /* ---------- Typography scale ---------- */
  /* H1/H2/Lead zgodnie z kierunkiem "Serwis", z mocniejszym H1 */
  --fs-h1: clamp(32px, 3.2vw, 46px);
  --lh-h1: 1.1;
  --fw-h1: 650;
  --ls-h1: -0.02em;

  --fs-h2: clamp(26px, 2.5vw, 34px);
  --lh-h2: 1.15;
  --fw-h2: 600;
  --ls-h2: -0.02em;

  --fs-lead: clamp(16px, 1.15vw, 18px);
  --lh-lead: 1.65;
  --fw-lead: 500;

  /* ---------- Header ---------- */
  --header-top: 24px;
  --header-maxw: 1550px;
  --header-pad-y: 14px;
  --header-pad-x: 28px;
  --header-radius: 18px;

  --logo-h: 38px;
  --logo-maxw: 240px;

  --nav-gap: 28px;             /* łatwa kontrola dystansu linków */
  --nav-link-fs: 12.5px;
  --nav-link-fw: 550;
  --nav-link-ls: 0.001em;
  --nav-link-case: uppercase;

  --header-cta-pad-y: 10px;
  --header-cta-pad-x: 14px;

  /* ---------- Buttons CTA ---------- */
  --btn-h: 44px;
  --btn-pad-x: 20px;
  --btn-radius: 999px;
  --btn-fs: 14px;
  --btn-fw: 600;

  /* ---------- Hero ---------- */
  --hero-pad-top-desktop: 120px;
  --hero-pad-top-mobile: 100px;

  /* ---------- Motion ---------- */
  --ease-main: cubic-bezier(0.2, 0.9, 0.2, 1);
  --dur-fast: 0.2s;
  --dur-mid: 0.3s;
  --dur-reveal: 0.7s;
}

/* Scope: dark pages (np. B2B) */
.page-dark,
.b2b-page {
  --header-glass-bg: rgba(10, 37, 64, 0.28);
  --header-glass-border: rgba(255, 255, 255, 0.14);
  --header-glass-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --header-link-color: rgba(255, 255, 255, 0.78);
  --header-link-color-hover: rgba(255, 255, 255, 0.95);
  --header-link-underline: rgba(255, 255, 255, 0.45);
}

/* Scope: light pages (default) */
:root {
  --header-glass-bg: rgba(255, 255, 255, 0.45);
  --header-glass-border: rgba(255, 255, 255, 0.35);
  --header-glass-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  --header-link-color: #334155;
  --header-link-color-hover: #0f172a;
  --header-link-underline: rgba(15, 23, 42, 0.45);
}

/* ======================================================
   03) TYPOGRAPHY STANDARD (RALEWAY)
   Podpinaj klasy do sekcji, gdzie chcesz stały standard.
====================================================== */

.typo-h1,
.hero-title,
h1.h1-standard {
  margin: 0;
  font-size: var(--fs-h1);
  line-height: var(--lh-h1);
  font-weight: var(--fw-h1);
  letter-spacing: var(--ls-h1);
}

.typo-h2,
.section-title,
h2.h2-standard {
  margin: 0;
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  font-weight: var(--fw-h2);
  letter-spacing: var(--ls-h2);
}

.typo-lead,
.section-lead,
p.lead-standard {
  margin: 0;
  font-size: var(--fs-lead);
  line-height: var(--lh-lead);
  font-weight: var(--fw-lead);
  color: rgba(15, 23, 42, 0.78);
}

/* Wersja lead dla ciemnych sekcji */
.page-dark .typo-lead,
.b2b-page .typo-lead {
  color: rgba(255, 255, 255, 0.82);
}

/* ======================================================
   04) LAYOUT HELPERS
====================================================== */

section {
  width: 100%;
}

.max-w-6xl {
  max-width: 1200px;
  margin-inline: auto;
}

.max-w-4xl {
  max-width: 960px;
  margin-inline: auto;
}

/* ======================================================
   05) HEADER / NAV / BURGER — ONE SOURCE OF TRUTH
====================================================== */

:root {
  --header-top: 24px;
  --header-maxw: 1550px;
  --header-pad-y: 14px;
  --header-pad-x: 28px;
  --header-radius: 18px;

  --logo-h: 38px;
  --logo-maxw: 240px;

  --nav-gap: 28px;
  --nav-link-fs: 12.5px;
  --nav-link-fw: 550;
  --nav-link-ls: 0.001em;
  --nav-link-case: uppercase;

  --header-cta-pad-y: 10px;
  --header-cta-pad-x: 14px;

  --burger-size: 46px;
  --burger-line-w: 18px;
  --burger-line-h: 1.75px;
  --mobile-menu-gap: 18px;
}

/* scope: dark pages */
.page-dark,
.b2b-page {
  --header-glass-bg: rgba(10, 37, 64, 0.28);
  --header-glass-border: rgba(255, 255, 255, 0.14);
  --header-glass-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --header-link-color: rgba(255, 255, 255, 0.78);
  --header-link-color-hover: rgba(255, 255, 255, 0.95);
  --header-link-underline: rgba(255, 255, 255, 0.45);
  --header-cta-border: rgba(255, 255, 255, 0.58);
  --header-cta-border-hover: rgba(255, 255, 255, 0.78);
  --burger-line-color: rgba(255, 255, 255, 0.94);
}

/* scope: light pages */
:root {
  --header-glass-bg: rgba(255, 255, 255, 0.45);
  --header-glass-border: rgba(255, 255, 255, 0.35);
  --header-glass-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  --header-link-color: #334155;
  --header-link-color-hover: #0f172a;
  --header-link-underline: rgba(15, 23, 42, 0.45);
  --header-cta-border: #0a2540;
  --header-cta-border-hover: #0a2540;
  --burger-line-color: #0f172a;
}

.glass-header {
  position: fixed;
  top: var(--header-top);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;

  width: calc(100% - 24px);
  max-width: var(--header-maxw);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  padding: var(--header-pad-y) var(--header-pad-x);
  border-radius: var(--header-radius);

  background: var(--header-glass-bg);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid var(--header-glass-border);
  box-shadow: var(--header-glass-shadow);

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    padding 0.3s ease,
    border-radius 0.3s ease;
}

/* logo */
.header-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.header-logo img,
.logo-box img {
  display: block;
  height: var(--logo-h);
  width: auto;
  max-width: min(100%, var(--logo-maxw));
  object-fit: contain;
  background: transparent;

  filter: brightness(0.98) contrast(1.08) saturate(1.1)
    drop-shadow(0 6px 14px rgba(15, 23, 42, 0.25));
  mix-blend-mode: multiply;
}

/* nav desktop */
.header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--nav-gap);
  flex: 1 1 auto;
  min-width: 0;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;

  font-size: var(--nav-link-fs);
  font-weight: var(--nav-link-fw);
  letter-spacing: var(--nav-link-ls);
  text-transform: var(--nav-link-case);

  color: var(--header-link-color);
  transform: translateY(0);
  border-radius: 999px;

  transition:
    color 0.2s ease,
    transform 0.2s ease,
    font-weight 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--header-link-underline);
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.nav-link:hover {
  color: var(--header-link-color-hover);
  transform: translateY(-0.5px);
  font-weight: 650;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--header-link-color-hover);
  font-weight: 750;
}

.nav-link.active::after {
  display: none !important;
}

/* kontakt pill */
.glass-header .header-nav .nav-link[href="#/kontakt"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--header-cta-pad-y) var(--header-cta-pad-x);
  border-radius: 999px;
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--header-cta-border);
  color: var(--header-link-color-hover);
  text-decoration: none;
}

.glass-header .header-nav .nav-link[href="#/kontakt"]::after {
  display: none !important;
}

.glass-header .header-nav .nav-link[href="#/kontakt"]:hover {
  background: transparent;
  box-shadow:
    inset 0 0 0 2px var(--header-cta-border-hover),
    0 10px 26px rgba(10, 37, 64, 0.12);
}

/* burger */
.header-burger {
  display: none;
  width: var(--burger-size);
  height: var(--burger-size);
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}

.header-burger__box {
  position: relative;
  width: var(--burger-line-w);
  height: 14px;
  display: block;
}

.header-burger__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-h);
  border-radius: 999px;
  background: var(--burger-line-color);
  transition:
    transform 0.25s ease,
    opacity 0.2s ease,
    top 0.25s ease;
}

.header-burger__line:nth-child(1) {
  top: 0;
}
.header-burger__line:nth-child(2) {
  top: 6px;
}
.header-burger__line:nth-child(3) {
  top: 12px;
}

.glass-header.menu-open .header-burger__line:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.glass-header.menu-open .header-burger__line:nth-child(2) {
  opacity: 0;
}

.glass-header.menu-open .header-burger__line:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

/* =========================
   MOBILE / TABLET HEADER
========================= */

@media (max-width: 900px) {
  .glass-header {
    align-items: center;
    padding: 12px 18px;
    gap: 12px;
  }

  .header-logo img,
  .logo-box img {
    height: 32px;
    max-width: 160px;
  }

  .header-burger {
    display: inline-flex;
  }

  .header-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: var(--mobile-menu-gap);

    padding: 22px 20px 20px;
    border-radius: 22px;

    background: var(--header-glass-bg);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    border: 1px solid var(--header-glass-border);
    box-shadow: var(--header-glass-shadow);

    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.22s ease,
      transform 0.22s ease;
  }

  .glass-header.menu-open .header-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header-nav .nav-link {
    width: 100%;
    justify-content: flex-start;
    padding: 0;
    font-size: 14px;
    line-height: 1.3;
  }

  .header-nav .nav-link::after {
    display: none;
  }

  .glass-header .header-nav .nav-link[href="#/kontakt"] {
    width: 100%;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    margin-top: 2px;
  }

  .hero,
  .relative.h-\[90svh\],
  .install-hero,
  .home-hero {
    padding-top: var(--hero-pad-top-mobile);
  }
}


/* ======================================================
   06) GLOBAL CTA BUTTONS
   Standard globalny (B2B możesz nadpisywać lokalnie)
====================================================== */

.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  height: var(--btn-h);
  padding: 0 var(--btn-pad-x);
  border-radius: var(--btn-radius);

  font-size: var(--btn-fs);
  font-weight: var(--btn-fw);
  line-height: 1;

  transition: background var(--dur-fast) ease,
    color var(--dur-fast) ease,
    box-shadow var(--dur-fast) ease,
    transform var(--dur-fast) ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-main {
  background: #0f172a;
  color: #ffffff;
  border: none;
}

.btn-main:hover {
  background: #020617;
}

.btn-outline {
  background: transparent;
  color: #0f172a;
  box-shadow: inset 0 0 0 1px #0f172a;
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.05);
}

/* ======================================================
   07) HERO BASE
====================================================== */

.hero,
section.hero,
section.relative {
  position: relative;
}

.hero,
.relative.h-\[90svh\],
.install-hero,
.home-hero {
  padding-top: var(--hero-pad-top-desktop);
}

.hero img,
.relative img {
  object-fit: cover;
}

/* Hero fade (jednorazowy efekt pod klasę) */
.hero-fade,
.hero-fade-delay {
  opacity: 0;
  transform: translateY(14px);
  animation: heroFadeUp 1.1s ease-out forwards;
  will-change: opacity, transform;
}

.hero-fade-delay {
  animation-delay: 0.18s;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ======================================================
   COOL DREAM STYLES — CLEAN REBUILD
   PART 2/3
   Zakres:
   10) Section backgrounds (Home + light pages)
   11) Reviews
   12) Home service tiles (no jump / no gray border)
   13) Timeline base (shared) + color variants (Home/B2B)
   14) FAQ base + light/dark variants
   15) Light subpages consistency (Kontakt / O nas / FAQ)
====================================================== */

/* ======================================================
   10) SECTION BACKGROUNDS (HOME + LIGHT PAGES)
   Standard “ice/white” + blue-white blended backgrounds
====================================================== */

/* Tokeny tła */
:root {
  --bg-ice-main:
    radial-gradient(980px 520px at 16% 10%, rgba(120, 210, 255, 0.16) 0%, rgba(120, 210, 255, 0) 62%),
    radial-gradient(880px 500px at 85% 24%, rgba(170, 240, 255, 0.18) 0%, rgba(170, 240, 255, 0) 64%),
    linear-gradient(180deg, rgba(245, 252, 255, 0.9) 0%, #ffffff 44%, #ffffff 100%);

  --bg-ice-soft:
    radial-gradient(820px 420px at 50% 0%, rgba(140, 225, 255, 0.14) 0%, rgba(140, 225, 255, 0) 62%),
    linear-gradient(
      to bottom,
      rgba(10, 37, 64, 0.04) 0%,
      rgba(244, 250, 255, 0.88) 38%,
      rgba(255, 255, 255, 1) 100%
    );

  --bg-blue-white-mix:
    radial-gradient(760px 380px at 14% 18%, rgba(96, 165, 250, 0.16) 0%, rgba(96, 165, 250, 0) 64%),
    radial-gradient(760px 380px at 86% 30%, rgba(186, 230, 253, 0.24) 0%, rgba(186, 230, 253, 0) 64%),
    linear-gradient(180deg, #f7fbff 0%, #f4faff 52%, #ffffff 100%);
}

/* Home hero/install hero (jeśli używane) */
.home-hero,
.install-hero {
  background:
    radial-gradient(950px 460px at 50% 10%, rgba(15, 23, 42, 0.08), rgba(255, 255, 255, 0) 65%),
    linear-gradient(180deg, #fbfdff 0%, #f4faff 60%, #ffffff 100%);
  padding-top: 180px; /* zostawione jak w Twojej wersji */
}

/* Home: Klimatyzacja dla domu + Serwis klimatyzacji */
.home-section--ice,
.home-ac-home,
.home-service {
  background: var(--bg-ice-main);
}

/* Home: Opinie + Klimatyzacja dla firm (blue + white mix) */
.home-section--blue-mix,
.home-reviews,
.home-business {
  background: var(--bg-blue-white-mix);
}

/* pomocniczo dla starej klasy tailwindowej */
.bg-\[\#F4FAFF\] {
  background: #f4faff;
}

/* ======================================================
   11) REVIEWS
====================================================== */

.reviews-container {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.review-card {
  min-width: 260px;
  max-width: 260px;
  border-radius: 20px;
  padding: 20px;
  background: #ffffff;
  border: 0; /* brak szarej ramki */
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.review-stars {
  color: #fbbf24;
  margin-bottom: 8px;
}

/* ======================================================
   12) HOME SERVICE TILES (4 kafle)
   - brak podskakiwania
   - brak szarych obwódek
====================================================== */

.home-service-tiles .tile,
.home-service-cards .card,
.home-services-grid .service-tile {
  transform: none !important;
  transition: box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  border: 0 !important; /* usuwa szare obwódki */
}

.home-service-tiles .tile:hover,
.home-service-cards .card:hover,
.home-services-grid .service-tile:hover {
  transform: none !important; /* zero jump */
}

/* ======================================================
   TIMELINE — INSTALL PAGE
   wersja oparta na starej, ale bez białej obwódki wokół cyfr
====================================================== */

.install-page{
  --tl-gap: 26px;

  --tl-axis-w: 2px;
  --tl-axis-color: rgba(148,163,184,0.38);

  --tl-dot-size: 34px;
  --tl-icon-box: 64px;

  --tl-col-axis: 44px;
  --tl-col-gap: 22px;

  --tl-axis-x: 50%;
}

.install-page .timeline{
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: var(--tl-gap);
  position: relative;
}

/* jedna ciągła oś */
.install-page .timeline::before{
  content: "";
  position: absolute;
  left: var(--tl-axis-x);
  transform: translateX(-50%);
  width: var(--tl-axis-w);
  background: var(--tl-axis-color);
  border-radius: 999px;
  z-index: 0;

  top: var(--tl-axis-top, 0px);
  bottom: calc(100% - var(--tl-axis-bottom, 100%));
}

/* row */
.install-page .tl-row{
  display: grid;
  grid-template-columns: 1fr var(--tl-col-axis) 1fr;
  column-gap: var(--tl-col-gap);
  align-items: start;
  position: relative;
  z-index: 1;
}

/* cols */
.install-page .tl-col{
  display: flex;
}

.install-page .tl-col--left{
  justify-content: flex-end;
}

.install-page .tl-col--right{
  justify-content: flex-start;
}

/* axis col */
.install-page .tl-axis{
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 1;
}

/* dot */
.install-page .tl-dot{
  width: var(--tl-dot-size);
  height: var(--tl-dot-size);
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 650;
  color: #0f172a;
  background: #ffffff;
  border: 1px solid rgba(148,163,184,0.40);

  position: relative;
  z-index: 2;

  margin-top: calc(
    var(--tl-row-align-y, calc(var(--tl-icon-box) / 2))
    - (var(--tl-dot-size) / 2)
  );

  box-shadow: none;
}

/* card */
.install-page .tl-card{
  width: min(560px, 100%);
  display: grid;
  grid-template-columns: 84px 1fr 84px;
  grid-template-rows: auto auto;
  grid-template-areas:
    "icon main side"
    ". actions side";
  column-gap: 18px;
  row-gap: 10px;

  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.install-page .tl-card--mirror{
  grid-template-areas:
    "side main icon"
    "side actions .";
}

/* icon */
.install-page .tl-icon{
  grid-area: icon;
  width: var(--tl-icon-box);
  height: var(--tl-icon-box);
  background: transparent !important;
  border-radius: 18px;

  display: grid;
  place-items: center;

  margin-top: calc(
    var(--tl-row-align-y, calc(var(--tl-icon-box) / 2))
    - (var(--tl-icon-box) / 2)
  );

  align-self: start;
}

.install-page .tl-iconimg{
  width: 44px;
  height: 44px;
  display: block;
  opacity: 1;
}

.install-page .tl-iconph{
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 1px solid rgba(15,23,42,0.12);
  background: rgba(255,255,255,0.65);
}

/* content */
.install-page .tl-main{
  grid-area: main;
  padding-top: 2px;
}

.install-page .tl-title{
  margin: 0 0 6px 0;
  font-size: 18px;
  font-weight: 650;
  color: #0f172a;
  letter-spacing: 0.01em;
}

.install-page .tl-desc{
  margin: 0;
  color: #475569;
  line-height: 1.65;
  font-size: 15.5px;
}

.install-page .tl-side{
  grid-area: side;
}

.install-page .tl-actions{
  grid-area: actions;
}

/* plus */
.install-page .tl-plusrow{
  display: flex;
  justify-content: center;
}

.install-page .tl-plus{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.45);
  background: rgba(255,255,255,0.92);

  display: grid;
  place-items: center;

  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  color: #0f172a;

  transition: transform .16s ease, background .16s ease;
}

.install-page .tl-plus:hover{
  background: rgba(15,23,42,0.06);
}

.install-page .tl-card.is-open .tl-plus{
  transform: rotate(45deg);
}

/* more */
.install-page .tl-more{
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);

  margin-top: 0;
  padding-top: 0;
  border-top: 1px solid transparent;

  font-size: 14.6px;
  line-height: 1.75;
  color: #334155;
  max-width: 66ch;

  transition:
    max-height .34s ease,
    opacity .22s ease,
    transform .22s ease,
    margin-top .22s ease,
    padding-top .22s ease,
    border-color .22s ease;
}

.install-page .tl-more.is-open{
  max-height: 900px;
  opacity: 1;
  transform: translateY(0);

  margin-top: 12px;
  padding-top: 12px;
  border-top-color: rgba(148,163,184,0.35);
}

.install-page .tl-plus:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(10,37,64,0.18);
}

/* ======================================================
   14) FAQ BASE + VARIANTS
====================================================== */

.faq-section {
  width: 100%;
  padding: 110px 0 112px;
}

.faq-head {
  margin-bottom: 26px;
}

.faq-head.is-centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* kategoriami */
.faq-cat {
  margin-top: 34px;
  padding-top: 10px;
}

.faq-cat:first-child {
  margin-top: 0;
  padding-top: 0;
}

.faq-cat__title {
  margin: 0 0 10px 0;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  padding: 16px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;

  font-size: 17px;
  font-weight: 600;
}

.faq-q__text {
  line-height: 1.35;
}

.faq-chevron {
  opacity: 0.7;
  transform: rotate(0deg);
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.22s ease;
  will-change: transform;
  display: inline-flex;
}

.faq-chevron.is-open {
  transform: rotate(180deg);
  opacity: 1;
}

.faq-a {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-4px);

  padding: 0;
  line-height: 1.75;
  max-width: 74ch;

  transition:
    max-height 0.32s ease,
    opacity 0.2s ease,
    transform 0.2s ease,
    padding 0.2s ease;
}

.faq-item.is-open .faq-a {
  max-height: 520px;
  opacity: 1;
  transform: translateY(0);
  padding: 0 0 16px 0;
}

.faq-q:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(10, 37, 64, 0.14);
  border-radius: 12px;
}

/* light */
.faq--light,
.install-page .faq-section,
.service-page .faq-section {
  background: var(--bg-ice-soft);
  color: #0f172a;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.faq--light .faq-cat__title,
.install-page .faq-cat__title,
.service-page .faq-cat__title {
  color: #64748b;
}

.faq--light .faq-item,
.install-page .faq-item,
.service-page .faq-item {
  border-top-color: rgba(148, 163, 184, 0.22);
}

.faq--light .faq-q,
.install-page .faq-q,
.service-page .faq-q {
  color: #0f172a;
}

.faq--light .faq-a,
.install-page .faq-a,
.service-page .faq-a {
  color: #475569;
}

/* dark (B2B) */
.faq--dark,
.b2b-page .faq-section,
.b2b-page .b2b-faq .faq-section {
  background: transparent;
  color: rgba(255, 255, 255, 0.94);
  border-bottom: 0;
}

.faq--dark .faq-cat__title,
.b2b-page .faq-cat__title,
.b2b-page .b2b-faq .faq-cat__title {
  color: rgba(255, 255, 255, 0.62);
}

.faq--dark .faq-item,
.b2b-page .faq-item,
.b2b-page .b2b-faq .faq-item {
  border-top-color: rgba(255, 255, 255, 0.1);
  background: transparent !important;
}

.faq--dark .faq-q,
.b2b-page .faq-q,
.b2b-page .b2b-faq .faq-q {
  color: rgba(255, 255, 255, 0.95);
}

.faq--dark .faq-a,
.b2b-page .faq-a,
.b2b-page .b2b-faq .faq-a,
.b2b-page .b2b-faq .faq-a p {
  color: rgba(255, 255, 255, 0.78);
}

/* FAQ wrapper full width style for B2B */
.b2b-page .b2b-faq .faq-wrap {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}

/* ukryj lead pod "Najczęściej..." jeśli nie chcesz go w B2B */
.b2b-page .b2b-faq .max-w-4xl.mx-auto.text-center.mb-12 p {
  display: none !important;
}

/* ======================================================
   15) LIGHT SUBPAGES CONSISTENCY (Kontakt / O nas / FAQ)
====================================================== */

.contact-page,
.about-page,
.faq-page-light {
  color: #0f172a;
  background: var(--bg-ice-main);
}

.contact-page section,
.about-page section,
.faq-page-light section {
  background: transparent;
}

/* listy i podpunkty spójne z Montaż/Serwis */
.faq-page-light ul,
.faq-page-light ol,
.install-page ul,
.install-page ol,
.service-page ul,
.service-page ol {
  padding-left: 1.2rem;
}

.faq-page-light li,
.install-page li,
.service-page li {
  margin: 0.35rem 0;
}

/* ======================================================
   FOOTER (GLOBAL)
====================================================== */

.site-footer {
  color: #64748b;
  background:
    radial-gradient(760px 220px at 18% 0%, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(180deg, #eef2f7 0%, #f6f8fb 42%, #ffffff 100%);
  border-top: 1px solid rgba(148, 163, 184, 0.34);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}

.site-footer__brand {
  max-width: 420px;
}

.site-footer__logo {
  height: 42px;
  width: auto;
  margin-bottom: 22px;
  opacity: 0.94;
}

.site-footer__brandtext {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.8;
  color: #475569;
}

.site-footer__col {
  min-width: 0;
}

.site-footer__title {
  margin: 0 0 18px 0;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 600;
  color: #0f172a;
}

.site-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}

.site-footer__link {
  font-size: 15px;
  line-height: 1.55;
  color: #5f6f82;
  transition: color 0.2s ease;
}

.site-footer__link:hover {
  color: #334155;
}

.site-footer__contact {
  display: grid;
  gap: 14px;
}

.site-footer__contactrow {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: center;
}

.site-footer__contactrow--start {
  align-items: start;
}

.site-footer__contacticonwrap {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.site-footer__contacticon {
  width: 17px;
  height: 17px;
  object-fit: contain;
  opacity: 0.68;
}

.site-footer__contactline {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #5f6f82;
}

.site-footer__contactvalue {
  color: #526273;
  font-weight: 500;
}

.site-footer__contactlink {
  color: #526273;
  font-weight: 500;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-footer__contactlink:hover {
  color: #334155;
  opacity: 1;
}
.site-footer__bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.28);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-footer__bottomcopy {
  margin: 0;
  font-size: 12px;
  color: #94a3b8;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer__legal-link {
  font-size: 12px;
  color: #94a3b8;
  transition: color 0.2s ease;
}

.site-footer__legal-link:hover {
  color: #64748b;
}

@media (min-width: 768px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer__brand {
    max-width: 100%;
  }
}
/* ======================================================
   RESPONSIVE (PART 2 SCOPE)
====================================================== */

@media (max-width: 900px) {
  .faq-section {
    padding: 92px 0 100px;
  }

  .faq-q {
    padding: 14px 0;
    font-size: 16.5px;
  }

  .b2b-page .px-6 {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }
}

/* szerszy boczny oddech B2B desktop */
.b2b-page .px-6 {
  padding-left: 32px !important;
  padding-right: 32px !important;
}

/* ======================================================
   COOL DREAM STYLES — CLEAN REBUILD
   PART 3/3
   Zakres:
   16) Service page (one source of truth)
   17) B2B page (background, solutions slider, FAQ specifics)
   18) Business image card helper
   19) Final utility overrides / cleanup-safe hooks
   20) Responsive (service + b2b scope)
====================================================== */

/* ======================================================
   16) /SERWIS — ONE SOURCE OF TRUTH
====================================================== */

.service-page {
  color: #0f172a;
  background:
    radial-gradient(900px 520px at 18% 6%, rgba(120, 210, 255, 0.16) 0%, rgba(120, 210, 255, 0) 60%),
    radial-gradient(760px 520px at 86% 18%, rgba(170, 240, 255, 0.18) 0%, rgba(170, 240, 255, 0) 62%),
    linear-gradient(180deg, rgba(245, 252, 255, 0.86) 0%, #ffffff 42%, #ffffff 100%);
}

.service-page .svc-hero {
  padding: 88px 0 40px;
  background: radial-gradient(900px 420px at 50% 0%, rgba(140, 225, 255, 0.22) 0%, rgba(140, 225, 255, 0) 62%);
}

.service-page .svc-packages {
  padding: 36px 0 10px;
}

/* rytm hero -> pakiety */
.service-page .svc-hero .max-w-6xl {
  padding-top: 64px !important;
  padding-bottom: 18px !important;
}
.service-page .svc-packages .max-w-6xl {
  padding-top: 10px !important;
  padding-bottom: 44px !important;
}

/* container */
.service-page .max-w-6xl {
  max-width: 1320px;
}

/* typografia serwisu */
.service-page .svc-h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 650; /* mocniej niż stare 520 */
}

.service-page .svc-lead {
  margin: 0 auto;
  max-width: 66ch;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.78);
  font-weight: 500;
}

.service-page .svc-h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 2.5vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.service-page .svc-sub {
  margin: 0 auto;
  max-width: 70ch;
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.72);
}

.service-page .svc-head {
  margin-bottom: 26px;
}

/* akcje */
.service-page .svc-hero__actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.service-page .svc-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  height: 46px;
  padding: 0 18px;
  border-radius: 999px;

  font-size: 14.5px;
  font-weight: 650;
  letter-spacing: -0.01em;

  transition: box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  user-select: none;
}

.service-page .svc-btn:active {
  transform: translateY(1px);
}

.service-page .svc-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #0a2540 0%, #0b2f53 100%);
  box-shadow: 0 14px 40px rgba(10, 37, 64, 0.18);
}
.service-page .svc-btn--primary:hover {
  box-shadow: 0 18px 52px rgba(10, 37, 64, 0.22);
}

.service-page .svc-btn--secondary {
  color: #0f172a;
  background: rgba(15, 23, 42, 0.06);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.1);
}
.service-page .svc-btn--secondary:hover {
  background: rgba(15, 23, 42, 0.08);
}

/* grid pakietów */
.service-page .svc-grid {
  margin-top: 12px !important;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 26px;
  align-items: stretch;
}

/* karta */
.service-page .svc-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  contain: layout paint;

  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(120, 190, 220, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 253, 255, 0.86) 100%);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);

  transform: none;
  transition: box-shadow 0.2s ease;
}

.service-page .svc-card:hover {
  transform: none;
  box-shadow: 0 18px 52px rgba(15, 23, 42, 0.1);
}

/* cap */
.service-page .svc-cap {
  height: 56px;
  margin: 0;
  padding: 0 16px;
  border-bottom: 0;
  box-shadow: none;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 12.5px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-page .svc-card--complete .svc-cap {
  background: rgba(15, 23, 42, 0.06);
  color: rgba(15, 23, 42, 0.72);
}

.service-page .svc-card--premium .svc-cap {
  background: #0a2540;
  color: #fff;
}

.service-page .svc-card--basic .svc-cap {
  display: none;
}

/* basic: offset jak wcześniej */
.service-page .svc-card--basic {
  margin-top: 56px;
  height: calc(100% - 56px);
}

/* body */
.service-page .svc-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

/* header ceny */
.service-page .svc-card__head {
  margin: 0 0 10px 0;
  gap: 8px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-page .svc-card__name {
  margin: 0;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 900;
  color: #0b1220;
}

.service-page .svc-card__price {
  margin: 0;
  font-size: 34px;
  line-height: 1;
  font-weight: 750;
  white-space: nowrap;
  color: #0b1220;
}

/* opcja outline pill */
.service-page.svc-name-pills .svc-card__name {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 12px;
  border-radius: 999px;
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(10, 37, 64, 0.28);

  color: rgba(15, 23, 42, 0.85);
  font-weight: 650;
  letter-spacing: 0.12em;
}

.service-page.svc-name-pills .svc-card--premium .svc-card__name {
  box-shadow: inset 0 0 0 1px rgba(10, 37, 64, 0.45);
}
.service-page.svc-name-pills .svc-card--complete .svc-card__name {
  box-shadow: inset 0 0 0 1px rgba(10, 37, 64, 0.38);
}

/* lead pod ceną */
.service-page .svc-card__tagline {
  margin: 0 0 14px 0;
  min-height: 4.6em;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  color: #111;
  line-height: 1.15;
  font-weight: 650;
}

/* lista */
.service-page .svc-list {
  margin: 0;
  padding: 0;
  list-style: none;

  display: grid;
  gap: 1px;
  align-content: start;
}

.service-page .svc-li {
  position: relative;
  padding-left: 26px !important;

  color: rgba(15, 23, 42, 0.74);
  font-size: 14.5px;
  line-height: 1.45;
  font-weight: 400;
}

.service-page .svc-strong {
  font-weight: 600;
}

/* domyślnie dot */
.service-page .svc-li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  transform: translateY(-50%);

  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(10, 37, 64, 0.28);
}

/* jawny dot */
.service-page .svc-li--dot::before {
  content: "";
}

/* check subtelny */
.service-page .svc-li--check {
  font-weight: 600 !important;
  color: rgba(15, 23, 42, 0.78) !important;
}
.service-page .svc-li--check::before {
  content: "✓";
  width: 10px;
  height: 10px;
  background: transparent;

  display: grid;
  place-items: center;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  color: #16a34a;
}

.service-page .svc-li::after {
  content: none !important;
}

.service-page .svc-li__end {
  display: none !important;
}

/* extra w complete */
.service-page .svc-card--complete .svc-li--extra::before {
  content: "+";
  width: 16px;
  height: 16px;
  top: 0.22em;
  transform: none;

  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;

  background: rgba(100, 116, 139, 0.16);
  box-shadow: inset 0 0 0 1px rgba(100, 116, 139, 0.38);
  color: rgba(15, 23, 42, 0.85);
}

/* infobox */
.service-page .svc-infobox {
  margin-top: 28px;
  border-radius: 18px;
  padding: 18px;

  background:
    radial-gradient(520px 220px at 20% 0%, rgba(140, 225, 255, 0.2) 0%, rgba(140, 225, 255, 0) 62%),
    linear-gradient(180deg, rgba(10, 37, 64, 0.04), rgba(10, 37, 64, 0.015));
  border: 1px solid rgba(120, 190, 220, 0.18);
}

.service-page .svc-infobox__h {
  margin: 0 0 6px 0;
  font-size: 16px;
  font-weight: 650;
}
.service-page .svc-infobox__p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.72);
}
.service-page .svc-infobox__actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* custom note */
.service-page .svc-custom-note {
  margin-top: 22px;
  margin-bottom: 22px;
}

.service-page .svc-custom-note__inner {
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;

  background:
    radial-gradient(520px 220px at 20% 0%, rgba(140, 225, 255, 0.18) 0%, rgba(140, 225, 255, 0) 62%),
    linear-gradient(180deg, rgba(10, 37, 64, 0.035), rgba(10, 37, 64, 0.012));
  border: 1px solid rgba(120, 190, 220, 0.18);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.service-page .svc-custom-note__title {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 850;
  color: rgba(15, 23, 42, 0.78);
}
.service-page .svc-custom-note__desc {
  max-width: 78ch;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.72);
}
.service-page .svc-custom-note__btn {
  margin-top: 4px;
}

/* ======================================================
   17) B2B PAGE — ONE SOURCE OF TRUTH
   background / hero / solutions / timeline / faq / cta
====================================================== */

.b2b-page {
  --b2b-ink: #ffffff;
  --b2b-ink-strong: rgba(255, 255, 255, 0.98);
  --b2b-ink-muted: rgba(255, 255, 255, 0.82);
  --b2b-ink-soft: rgba(255, 255, 255, 0.68);

  --b2b-dark: #071423;
  --b2b-dark2: #030814;

  --b2b-radius-xl: 28px;
  --b2b-gap: 22px;

  --sol-arrow: 44px;
  --sol-gutter: 84px;
  --sol-peek: 2.5;

  background:
    radial-gradient(1100px 560px at 50% 12%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 58%),
    radial-gradient(820px 520px at 22% 48%, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0) 62%),
    radial-gradient(860px 520px at 78% 55%, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0) 64%),
    linear-gradient(180deg, var(--b2b-dark2) 0%, var(--b2b-dark) 55%, var(--b2b-dark2) 100%);
  color: var(--b2b-ink);
}

.b2b-page section {
  background: transparent !important;
  margin: 0;
  border-top: 0 !important;
  border-bottom: 0 !important;
}

.b2b-page section::before,
.b2b-page section::after {
  border: 0 !important;
  box-shadow: none !important;
}

.b2b-page hr {
  display: none !important;
}

/* =========================
   HERO
========================= */

.b2b-page .b2b-hero {
  position: relative;
  overflow: hidden;
}

.b2b-page .b2b-hero__bg {
  position: absolute;
  inset: 0;
  background: transparent !important;
}

.b2b-page .b2b-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.42),
    rgba(0, 0, 0, 0.10),
    rgba(0, 0, 0, 0.00)
  ) !important;
}

.b2b-page .b2b-hero__content {
  position: relative;
  z-index: 1;
}

/* =========================
   SHARED B2B TITLES / LEADS
========================= */

.b2b-page .b2b-h2 {
  margin: 0;
  color: var(--b2b-ink-strong);
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 650;
}

.b2b-page .b2b-lead {
  margin: 16px auto 0;
  max-width: 920px;
  color: var(--b2b-ink-muted);
  font-size: 18px;
  line-height: 1.75;
  font-weight: 500;
}

/* =========================
   SOLUTIONS
========================= */

.b2b-page .b2b-solutions {
  position: relative;
  overflow: hidden;
  color: var(--b2b-ink);
}

.b2b-page .b2b-solutions__head {
  max-width: 980px;
  margin: 0 auto 12px;
  text-align: center;
}

.b2b-page .sol-wrap {
  position: relative;
  margin-top: 42px;
  padding: 0 var(--sol-gutter) 14px;
}

.b2b-page .sol-track {
  display: grid;
  grid-auto-flow: column;
  gap: var(--b2b-gap);

  grid-auto-columns: calc(
    (100% - (var(--b2b-gap) * (var(--sol-peek) - 1))) / var(--sol-peek)
  );

  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 0 18px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.b2b-page .sol-track::-webkit-scrollbar {
  display: none;
}

.b2b-page .sol-card {
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;

  min-height: 420px;
  border-radius: var(--b2b-radius-xl);
  border: 0 !important;
  background: transparent !important;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);

  display: grid;
  grid-template-rows: 52% 48%;
}

.b2b-page .sol-card::after {
  content: none !important;
}

.b2b-page .sol-media {
  display: block !important;
  width: 100%;
  height: 100%;
  overflow: hidden;

  background:
    radial-gradient(520px 220px at 30% 25%, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0) 62%),
    radial-gradient(520px 220px at 80% 20%, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0) 66%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.18));
}

.b2b-page .sol-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.b2b-page .sol-body {
  position: relative !important;
  inset: auto !important;
  z-index: 2;

  padding: 18px 18px 22px !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  background: linear-gradient(
    180deg,
    rgba(3, 8, 20, 0.00) 0%,
    rgba(3, 8, 20, 0.10) 28%,
    rgba(3, 8, 20, 0.34) 100%
  );
}

.b2b-page .sol-title {
  display: block;
  position: relative;
  z-index: 3;
  margin: 0 0 10px 0;

  font-size: 20px;
  line-height: 1.25;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: var(--b2b-ink-strong);

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.b2b-page .sol-desc {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--b2b-ink-muted);
}

.b2b-page .sol-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;

  width: var(--sol-arrow);
  height: var(--sol-arrow);
  border-radius: 999px;

  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;

  display: grid;
  place-items: center;
  cursor: pointer;
  user-select: none;

  transition: transform 160ms ease, background 160ms ease, opacity 160ms ease;
}

.b2b-page .sol-arrow:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-50%) translateY(-1px);
}

.b2b-page .sol-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  transform: translateY(-50%);
}

.b2b-page .sol-arrow--left {
  left: 22px;
}

.b2b-page .sol-arrow--right {
  right: 22px;
}

.b2b-page .sol-dots {
  display: none !important;
}

/* =========================
   TIMELINE — ONLY VISUALS
   geometria zostaje z .install-page
========================= */

.b2b-page .timeline::before {
  background: rgba(255, 255, 255, 0.18) !important;
}

.b2b-page .tl-dot {
  background: rgba(255, 255, 255, 0.10) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.b2b-page .tl-plus {
  background: rgba(255, 255, 255, 0.10) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.b2b-page .tl-plus:hover {
  background: rgba(255, 255, 255, 0.14) !important;
}

.b2b-page .tl-title {
  color: var(--b2b-ink-strong);
}

.b2b-page .tl-desc {
  color: var(--b2b-ink-soft);
}

.b2b-page .tl-more,
.b2b-page .tl-more p,
.b2b-page .tl-more li {
  color: var(--b2b-ink-soft);
}

.b2b-page .tl-iconimg {
  filter: brightness(0) invert(1) contrast(1.05);
  opacity: 0.98;
}

/* =========================
   CTA / FAQ
========================= */

.b2b-page .faq-section {
  padding: 92px 0 112px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.b2b-page .faq-cat__title {
  color: rgba(255, 255, 255, 0.62);
}

.b2b-page .faq-item {
  border-top-color: rgba(255, 255, 255, 0.10);
  background: transparent !important;
}

.b2b-page .faq-q {
  color: rgba(255, 255, 255, 0.95);
}

.b2b-page .faq-a,
.b2b-page .faq-a p {
  color: rgba(255, 255, 255, 0.78);
}

/* wspólny rozmiar CTA title */
.cta-title-lg,
.b2b-page .b2b-h2.cta-title-lg,
.service-page .svc-h2.cta-title-lg {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 10px 0;
}

.b2b-page .b2b-h2.cta-title-lg {
  color: rgba(255, 255, 255, 0.98);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .b2b-page .px-6 {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  .b2b-page .b2b-faq .faq-q,
  .b2b-page .faq-q {
    padding: 14px 0;
    font-size: 16.5px;
  }
}

@media (max-width: 720px) {
  .b2b-page {
    --sol-gutter: 18px;
    --sol-peek: 1.12;
  }

  .b2b-page .sol-card {
    min-height: 380px;
    grid-template-rows: 50% 50%;
  }

  .b2b-page .sol-title {
    white-space: normal;
    overflow: hidden;
    text-overflow: clip;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .b2b-page .sol-arrow {
    display: none;
  }
}

/* ======================================================
   B2B — SECTION TYPOGRAPHY
====================================================== */

.b2b-page .b2b-h2,
.b2b-page .b2b-processband__h,
.b2b-page .faq-title,
.b2b-page .cta-title-lg {
  margin: 0;
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.98);
}

.b2b-page .b2b-lead,
.b2b-page .b2b-processband__p,
.b2b-page .faq-subtitle {
  margin: 16px auto 0;
  max-width: 920px;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.76);
}

/* ======================================================
   18) BUSINESS IMAGE CARD HELPER
====================================================== */

:root {
  --business-img-maxw: 680px;
  --business-img-h-mobile: 560px;
  --business-img-h-desktop: 800px;
  --business-img-pos-x: 50%;
  --business-img-pos-y: 50%;
}

.business-ac__imgwrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.business-ac__imgcard {
  width: 100%;
  max-width: var(--business-img-maxw);
  height: var(--business-img-h-mobile);

  border-radius: 24px;
  overflow: hidden;

  background: #f8fafc;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.business-ac__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--business-img-pos-x) var(--business-img-pos-y);
}

/* ======================================================
   19) FINAL CLEANUP / SAFE UTILITIES
====================================================== */

/* ======================================================
   20) RESPONSIVE (PART 3 SCOPE)
====================================================== */

@media (min-width: 768px) {
  .business-ac__imgcard {
    height: var(--business-img-h-desktop);
  }
}

@media (max-width: 980px) {
  .service-page .max-w-6xl {
    max-width: 900px;
  }

  .service-page .svc-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .service-page .svc-card--basic {
    margin-top: 0;
    height: auto;
  }
}

@media (max-width: 900px) {
  .b2b-page .px-6 {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  .b2b-page .b2b-faq .faq-q {
    padding: 14px 0;
    font-size: 16.5px;
  }
}

@media (max-width: 720px) {
  .b2b-page {
    --sol-gutter: 18px;
    --sol-peek: 1.12;
  }

  .b2b-page .sol-card {
    min-height: 380px;
    grid-template-rows: 50% 50%;
  }

  .b2b-page .sol-title {
    white-space: normal;
    overflow: hidden;
    text-overflow: clip;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .b2b-page .sol-arrow {
    display: none;
  }
}


/* =========================
   4) Obrazy i stabilność layoutu
========================= */

img {
  display: block;
  max-width: 100%;
}

/* utrzymanie stałej geometrii bloków z obrazami */
.home-ac__imgcard,
.business-ac__imgcard,
.sol-media {
  overflow: hidden;
}

.home-ac__imgcard {
  aspect-ratio: 16 / 11;
}

.business-ac__imgcard {
  aspect-ratio: 16 / 11;
}

.sol-media {
  aspect-ratio: 16 / 10;
}

/* ======================================================
   COOL DREAM — FINAL PATCH (KEEP THIS AS LAST BLOCK)
   - usuwa konflikty font/burger/reveal
   - naprawia "obwódkę" timeline bez zabijania cienia
====================================================== */

/* 1) Font: jedna prawda (Raleway) + lepszy rendering */
:root {
  --font-sans: "Raleway", -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html {
  font-family: var(--font-sans);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
}

body,
button,
input,
textarea,
select {
  font-family: inherit;
}

/* 2) iOS: usuń "tap highlight" który często wygląda jak obwódka */
.header-burger,
.nav-link,
.tl-plus,
.tl-dot {
  -webkit-tap-highlight-color: transparent;
}

/* 3) Reveal-up: zostaw Twój system (.reveal-up + .is-visible),
      tylko dorzuć stabilizację pod Safari */
.reveal-up {
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform, opacity;
}


/* 6) Obrazy – stabilność layoutu (CLS) */
.home-ac__imgcard,
.business-ac__imgcard,
.sol-media {
  overflow: hidden;
}

.home-ac__imgcard,
.business-ac__imgcard {
  aspect-ratio: 16 / 11;
}

.sol-media {
  aspect-ratio: 16 / 10;
}

.faq-cta-block {
  text-align: center;
  padding: 64px 20px 96px;
}

.faq-cta-title {
  font-size: 28px;
  margin-bottom: 24px;
  font-weight: 500;
}

/* /o-nas: tło ice white */
.about-page-light {
  background: #f7f9fc; /* ice white */
}

/* sekcje rozdzielamy oddechem, nie liniami */
.about-section {
  background: transparent;
}

/* final CTA też bez linii */
.about-final-cta {
  background: transparent;
  border: none !important;
}
.about-final-cta::before,
.about-final-cta::after {
  content: none !important;
  display: none !important;
}

/* ======================================================
   ABOUT PAGE — FINAL CLEAN
   tylko /o-nas
====================================================== */

.about-page-light {
  background: var(--bg-ice-main);
}

/* =========================
   WSPÓLNY STANDARD SEKCJI
========================= */

.about-page-light .about-section-title,
.about-page-light .about-final-cta h2 {
  margin: 0;
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #0f172a;
}

.about-page-light .about-section-lead {
  margin: 22px auto 0;
  max-width: 72ch;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.72);
}

.about-page-light .about-brands-grid,
.about-page-light .about-standard-grid,
.about-page-light .about-audience-grid,
.about-page-light .about-cert-grid,
.about-page-light .about-cert-list {
  margin-top: 40px;
}

.about-page-light .about-standard-cta {
  margin-top: 40px;
  text-align: center;
}

/* ======================================================
   ABOUT — PRODUCENCI / AUTORYZOWANE MARKI
====================================================== */

.about-page-light .about-brands-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 40px auto 0;
}

.about-page-light .about-brand-tile {
  min-height: 72px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #0f172a;
  border: none;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.about-page-light .about-brand-tile:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
}

.about-page-light .about-brand-logo {
  max-width: 118px;
  max-height: 28px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.about-page-light .about-brand-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* tablet poziomo / mniejsze laptopy */
@media (max-width: 1100px) {
  .about-page-light .about-brands-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* telefon poziomo i węższy tablet */
@media (max-width: 900px) {
  .about-page-light .about-brands-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}

/* telefon pionowo */
@media (max-width: 640px) {
  .about-page-light .about-brands-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .about-page-light .about-brand-tile {
    min-height: 68px;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .about-page-light .about-brand-logo {
    max-width: 104px;
    max-height: 26px;
  }
}

/* =========================
   RESPONSIVE — PRODUCENCI
========================= */

@media (max-width: 1100px) {
  .about-page-light .about-brands-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .about-page-light .about-brands-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .about-page-light .about-brand-tile {
    min-height: 68px;
    padding: 12px 14px;
  }

  .about-page-light .about-brand-logo {
    max-width: 104px;
    max-height: 24px;
  }
}

@media (max-width: 767px) and (orientation: portrait) {
  .about-page-light .about-brands-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .about-page-light .about-brand-tile {
    min-height: 64px;
    padding: 12px 12px;
    border-radius: 16px;
  }

  .about-page-light .about-brand-logo {
    max-width: 96px;
    max-height: 22px;
  }

  .about-page-light .about-brand-fallback {
    font-size: 11px;
  }
}

@media (min-width: 568px) and (max-width: 932px) and (orientation: landscape) {
  .about-page-light .about-brands-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .about-page-light .about-brand-tile {
    min-height: 60px;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .about-page-light .about-brand-logo {
    max-width: 92px;
    max-height: 20px;
  }

  .about-page-light .about-brand-fallback {
    font-size: 10.5px;
  }
}

/* =========================
   STANDARD PRACY
========================= */

.about-page-light .about-standard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.about-page-light .about-standard-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 176px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(120, 190, 220, 0.18);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(248, 253, 255, 0.92) 100%
  );
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.07);
}

.about-page-light .about-standard-card__iconwrap {
  width: 72px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-page-light .about-standard-card__icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.about-page-light .about-standard-card__title {
  margin: 0 0 6px 0;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 650;
  color: #0f172a;
}

.about-page-light .about-standard-card__desc {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.72);
}

/* =========================
   DLA KOGO PRACUJEMY
========================= */

.about-page-light .about-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}

.about-page-light .about-audience-card.about-audience-card--compact {
  display: grid;
  grid-template-rows: 4fr 1fr; /* 80 / 20 */
  height: 520px;
  min-height: 520px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 252, 255, 0.96) 100%
  );
  border: none;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
}

.about-page-light .about-audience-card__media.about-audience-card__media--large {
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: #eef4f8;
}

.about-page-light .about-audience-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-page-light .about-audience-card__body.about-audience-card__body--ctaonly {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px 14px;
  background: transparent;
}

.about-page-light .about-audience-card__btn.about-audience-card__btn--single {
  min-width: 250px;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  background: #0f172a;
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.about-page-light .about-audience-card__btn.about-audience-card__btn--single:hover {
  background: #020617;
}

/* =========================
   CERTYFIKATY I UPRAWNIENIA
========================= */

.about-page-light .about-cert-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.about-page-light .about-cert-col {
  position: relative;
  padding: 0 24px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.about-page-light .about-cert-col:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 132px;
  transform: translateY(-50%);
  background: rgba(148, 163, 184, 0.28);
}

.about-page-light .about-cert-col__title {
  margin: 0;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  font-size: 18px;
  line-height: 1.3;
  font-weight: 650;
  color: #0f172a;
}

.about-page-light .about-cert-col__desc {
  margin: 12px auto 0;
  max-width: 24ch;
  min-height: 132px;

  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;

  font-size: 15px;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.72);
}

/* fallback dla starej listy certyfikatów */
.about-page-light .about-cert-list {
  display: grid;
  gap: 18px;
}

.about-page-light .about-cert-item {
  padding: 0 0 18px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.about-page-light .about-cert-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.about-page-light .about-cert-item__title {
  margin: 0 0 6px 0;
  font-size: 18px;
  font-weight: 650;
  color: #0f172a;
}

.about-page-light .about-cert-item__desc {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.72);
}

/* =========================
   FINAL CTA
========================= */

.about-page-light .about-final-cta {
  background: transparent;
  border: none;
}

.about-page-light .about-final-cta::before,
.about-page-light .about-final-cta::after {
  content: none;
  display: none;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .about-page-light .about-brands-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 100%;
  }

  .about-page-light .about-cert-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 0;
  }

  .about-page-light .about-cert-col:nth-child(3)::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .about-page-light .about-standard-grid,
  .about-page-light .about-audience-grid {
    grid-template-columns: 1fr;
  }

  .about-page-light .about-brands-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-page-light .about-section-title,
  .about-page-light .about-final-cta h2 {
    font-size: clamp(30px, 6vw, 40px);
  }

  .about-page-light .about-audience-grid {
    max-width: 100%;
  }

  .about-page-light .about-audience-card.about-audience-card--compact {
    height: 460px;
    min-height: 460px;
  }

  .about-page-light .about-audience-card__btn.about-audience-card__btn--single {
    min-width: 230px;
    height: 46px;
    font-size: 14px;
  }
}

@media (max-width: 760px) {
  .about-page-light .about-cert-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-page-light .about-cert-col {
    padding: 0;
  }

  .about-page-light .about-cert-col::after {
    display: none !important;
  }

  .about-page-light .about-cert-col__title {
    min-height: auto;
  }

  .about-page-light .about-cert-col__desc {
    min-height: auto;
    max-width: 42ch;
  }
}

@media (max-width: 640px) {
  .about-page-light .about-brands-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page-light .about-brand-tile {
    min-height: 68px;
    padding: 12px 14px;
  }

  .about-page-light .about-brand-logo {
    max-width: 108px;
    max-height: 24px;
  }

  .about-page-light .about-standard-card {
    grid-template-columns: 56px 1fr;
    gap: 14px;
    padding: 20px 18px;
  }

  .about-page-light .about-standard-card__iconwrap {
    width: 56px;
  }

  .about-page-light .about-standard-card__icon {
    width: 34px;
    height: 34px;
  }

  .about-page-light .about-audience-card.about-audience-card--compact {
    height: 400px;
    min-height: 400px;
  }

  .about-page-light .about-audience-card__btn.about-audience-card__btn--single {
    min-width: 100%;
  }
}

/* ======================================================
   CONTACT PAGE — HERO + PANEL ICONS
   wklej na sam koniec CSS
====================================================== */

.contact-hero__strongline {
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0f172a;
}

.contact-hero__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
  margin-top: 28px;
}

.contact-hero__feature {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-hero__feature-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.contact-hero__feature-text {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 650;
  color: #0f172a;
}

.contact-panel__list {
  display: grid;
  gap: 18px;
}

.contact-panel__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
}

.contact-panel__iconwrap {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-panel__icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.contact-panel__label {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.56);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-panel__value {
  margin-top: 4px;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 600;
  color: #0f172a;
  word-break: break-word;
}

@media (max-width: 900px) {
  .contact-hero__features {
    gap: 14px 18px;
  }

  .contact-hero__feature-text {
    font-size: 15px;
  }

  .contact-panel__value {
    font-size: 16px;
  }
}

/* ======================================================
   CONTACT — FINAL PANEL / HERO PATCH
====================================================== */

.contact-hero__lead {
  max-width: 760px;
}

.contact-hero__strongline {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.contact-hero__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 34px;
  margin-top: 28px;
}

.contact-hero__feature {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-hero__feature-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}

.contact-hero__feature-text {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #0f172a;
}

/* layout kontakt + formularz */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.contact-layout__divider {
  width: 1px;
  min-height: 100%;
  background: rgba(148, 163, 184, 0.22);
}

/* lewy panel */
.contact-panel--plain {
  padding: 8px 0;
}

.contact-panel__title {
  margin: 0 0 28px 0;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #0f172a;
}

.contact-panel__list {
  display: grid;
  gap: 0;
}

.contact-panel__item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
}

.contact-panel__divider {
  width: 100%;
  height: 1px;
  background: rgba(148, 163, 184, 0.22);
}

.contact-panel__iconwrap {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-panel__icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.contact-panel__content {
  min-width: 0;
}

.contact-panel__value {
  font-size: 24px;
  line-height: 1.35;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.01em;
  word-break: break-word;
}

/* formularz zostaje w ramce */
.contact-layout__right > div {
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

/* mobile */
@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-layout__divider {
    display: none;
  }

  .contact-panel__title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .contact-panel__item {
    padding: 16px 0;
  }

  .contact-panel__value {
    font-size: 20px;
  }

  .contact-hero__strongline {
    font-size: 18px;
  }

  .contact-hero__feature-text {
    font-size: 16px;
  }

  .contact-hero__feature-icon {
    width: 22px;
    height: 22px;
  }
}

/* ======================================================
   GLOBAL REVEAL SYSTEM
====================================================== */

.reveal-up {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.reveal-up.is-visible {
  animation: cd-reveal-up 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal-delay-1.is-visible { animation-delay: 80ms; }
.reveal-delay-2.is-visible { animation-delay: 180ms; }
.reveal-delay-3.is-visible { animation-delay: 280ms; }
.reveal-delay-4.is-visible { animation-delay: 380ms; }
.reveal-delay-5.is-visible { animation-delay: 480ms; }
.reveal-delay-6.is-visible { animation-delay: 580ms; }
.reveal-delay-7.is-visible { animation-delay: 680ms; }
.reveal-delay-8.is-visible { animation-delay: 780ms; }

@keyframes cd-reveal-up {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-fade,
  .hero-fade-delay,
  .reveal-up,
  .reveal-up.is-visible {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* ABOUT — producenci: równe rzędy, wejście rząd po rzędzie */
.about-page-light .about-brands-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}

.about-page-light .about-brands-rows .about-brands-grid {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto !important;
}

/* ======================================================
   HOME — BUSINESS SECTION FINAL
====================================================== */

.home-business--soft {
  background:
    radial-gradient(720px 320px at 18% 18%, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0) 62%),
    radial-gradient(640px 280px at 82% 22%, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0) 64%),
    radial-gradient(720px 340px at 50% 100%, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0) 68%),
    linear-gradient(180deg, #eef7fc 0%, #f4faff 52%, #edf6fb 100%);
}

/* zdjęcie trochę mniejsze, ale bez zmiany kadru */
:root {
  --business-img-maxw: 550px;
}

.business-ac__imgwrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.business-ac__imgcard {
  width: 100%;
  max-width: var(--business-img-maxw);
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.business-ac__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* subtelne dopięcie kolumny tekstowej */
.business-ac__text {
  min-width: 0;
}

/* CTA w jednym poziomie na desktopie */
.business-ac__text > .flex.gap-4 {
  align-items: center;
}

/* bezpieczne zachowanie na mobile */
@media (max-width: 900px) {
  .home-business--soft {
    background:
      radial-gradient(520px 240px at 20% 10%, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0) 62%),
      radial-gradient(520px 220px at 80% 22%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 64%),
      linear-gradient(180deg, #eef7fc 0%, #f4faff 52%, #edf6fb 100%);
  }

  :root {
    --business-img-maxw: 560px;
  }

  .business-ac__imgcard {
    aspect-ratio: 16 / 11;
  }
}
/* ======================================================
   HOME — BUSINESS SECTION POINT CARDS
====================================================== */

.business-ac__points {
  display: grid;
  gap: 14px;
}

.business-ac__point {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: transparent;
  box-shadow: none;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

}

.business-ac__point-title {
  margin: 0 0 6px 0;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 650;
  color: #0f172a;
}

.business-ac__point-desc {
  margin: 0;
  max-width: 46ch;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.72);
}

@media (max-width: 900px) {
  .business-ac__point {
    padding: 16px 18px;
    border-radius: 18px;
  }

  .business-ac__point-title {
    font-size: 16px;
  }

  .business-ac__point-desc {
    font-size: 14.5px;
  }
}

/* =========================
   FIX: tytuł w kaflu (Split & Multisplit)
========================= */

.b2b-page .sol-body {
  z-index: 1; /* obniżamy overlay */
}

.b2b-page .sol-title {
  position: relative;
  z-index: 3; /* tytuł zawsze nad wszystkim */

  display: block;
  margin: 0 0 10px 0;

  font-size: 20px;
  line-height: 1.25;
  font-weight: 650;
  letter-spacing: -0.01em;

  color: rgba(255, 255, 255, 0.98);

  /* KLUCZOWE: pozwala się zawijać */
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}

/* ======================================================
   /serwis — custom note pod tabelami
   więcej oddechu, bez CTA, reveal-ready
====================================================== */

.service-page .svc-custom-inline {
  margin-top: 88px;
  text-align: center;
}

.service-page .svc-custom-inline .svc-h2 {
  margin: 0;
  font-family: "Raleway", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 650;
  color: #0f172a;
}

.service-page .svc-custom-inline .svc-sub {
  margin: 22px auto 0;
  max-width: 760px;
  font-family: "Raleway", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.72);
}

/* ======================================================
   /kontakt — FINAL CLEAN
====================================================== */

.contact-page {
  background: #f7f9fc;
  color: #0f172a;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 28px;
  align-items: stretch;
}

.contact-layout__left,
.contact-layout__right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-layout__divider {
  width: 1px;
  min-height: 100%;
  background: rgba(148, 163, 184, 0.18);
}

.contact-layout__left > div,
.contact-layout__right > div {
  width: 100%;
}

/* ======================================================
   FORMULARZ — LEWA STRONA
====================================================== */

.contact-form-card {
  width: 100%;
  padding: 24px 26px;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: none;
}

.contact-form__title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 650;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-field {
  display: grid;
  gap: 6px;
}

/* etykiety jak w footerze / headerowym stylu pomocniczym */
.contact-label {
  color: rgba(15, 23, 42, 0.56);
  font-size: 12.5px;
  line-height: 1.2;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-input,
.contact-select,
.contact-textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.42);
  color: #0f172a;
  outline: none;
  box-shadow: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-input,
.contact-select {
  height: 50px;
  padding: 0 16px;
  font-size: 15px;
}

.contact-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%230f172a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px 14px;
}

.contact-select::-ms-expand {
  display: none;
}

.contact-textarea {
  min-height: 104px;
  padding: 14px 16px;
  border-radius: 24px;
  font-size: 15px;
  resize: none;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: rgba(15, 23, 42, 0.34);
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
  border-color: rgba(10, 37, 64, 0.28);
  background: rgba(255, 255, 255, 0.58);
}

.contact-submit {
  margin-top: 4px;
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: #0a2540;
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 650;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-submit:hover {
  background: #081c33;
}

.contact-submit:active {
  transform: translateY(1px);
}

/* ======================================================
   SZYBKI KONTAKT — PRAWA STRONA
====================================================== */

.contact-panel--plain {
  width: 100%;
  padding: 24px 26px;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: none;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-panel__title {
  margin: 0 0 26px 0;
  color: #0f172a;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 650;
}

.contact-panel__list {
  display: grid;
  gap: 24px;
}

.contact-panel__item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 0;
}

.contact-panel__iconwrap {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  border-radius: 0 !important;
}

.contact-panel__icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

.contact-panel__content {
  min-width: 0;
}

.contact-panel__value,
.contact-panel__value--phone,
.contact-panel__value--address {
  display: block;
  margin: 0;
  color: #0f172a;
  text-decoration: none;
  font-size: clamp(20px, 1.5vw, 24px);
  line-height: 1.24;
  font-weight: 600;
  letter-spacing: -0.02em;
  word-break: normal;
  overflow-wrap: anywhere;
}

.contact-panel__divider {
  display: none !important;
}

/* ======================================================
   DÓŁ
====================================================== */

.contact-bottom-features {
  margin-top: 72px;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: nowrap;
}

.contact-bottom-feature {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: left;
  min-width: 0;
}

.contact-bottom-feature__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.contact-bottom-feature__text {
  color: #0f172a;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 650;
  white-space: nowrap;
}

/* ======================================================
   MOBILE
====================================================== */

@media (max-width: 1100px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-layout__divider {
    display: none;
  }

  .contact-panel--plain {
    padding-top: 0;
  }

  .contact-bottom-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
    justify-items: center;
  }
}

@media (max-width: 760px) {
  .contact-form-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .contact-panel--plain {
    padding-top: 0;
  }

  .contact-panel__title,
  .contact-form__title {
    font-size: 26px;
    text-align: center;
  }

  .contact-panel__title {
    margin-bottom: 22px;
  }

  .contact-form__title {
    margin-bottom: 22px;
  }

  .contact-panel__list {
    gap: 20px;
  }

  .contact-panel__item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
  }

  .contact-panel__iconwrap {
    width: 34px;
    height: 34px;
  }

  .contact-panel__icon {
    width: 24px;
    height: 24px;
  }

  .contact-panel__value,
  .contact-panel__value--phone,
  .contact-panel__value--address {
    font-size: 18px;
    line-height: 1.28;
  }

  .contact-bottom-features {
    margin-top: 36px;
    padding-top: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: center;
  }

  .contact-bottom-feature__text {
    font-size: 17px;
  }
}

/* ======================================================
   /kontakt — SUCCESS MODAL
====================================================== */

.contact-success-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.contact-success-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.contact-success-modal__card {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  padding: 34px 30px 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.10);
  text-align: center;
}

.contact-success-modal__title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 650;
}

.contact-success-modal__text {
  margin: 14px 0 0 0;
  color: rgba(15, 23, 42, 0.72);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
}

.contact-success-modal__actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-success-modal__btn {
  min-width: 220px;
  height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 650;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.contact-success-modal__btn:active {
  transform: translateY(1px);
}

.contact-success-modal__btn--primary {
  border: 0;
  background: #0a2540;
  color: #ffffff;
}

.contact-success-modal__btn--primary:hover {
  background: #081c33;
}

.contact-success-modal__btn--secondary {
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: #ffffff;
  color: #0f172a;
}

.contact-success-modal__btn--secondary:hover {
  background: #f8fafc;
}

@media (max-width: 640px) {
  .contact-success-modal__card {
    padding: 28px 20px 22px;
    border-radius: 24px;
  }

  .contact-success-modal__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-success-modal__btn {
    width: 100%;
    min-width: 0;
  }
}

/* ======================================================
   MOBILE MENU — STEP 1
   pełniejsze tło po rozwinięciu
====================================================== */

@media (max-width: 900px) {
  .glass-header .header-nav {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(148, 163, 184, 0.22) !important;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12) !important;
  }

  .page-dark .glass-header .header-nav,
  .b2b-page .glass-header .header-nav {
    background: rgba(7, 20, 35, 0.98) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34) !important;
  }
}

/* ======================================================
   HOME MOBILE PORTRAIT — SEKCJA
   "Klimatyzacja, która daje więcej komfortu w domu i mieszkaniu"
   tylko telefon pionowo
====================================================== */

@media (max-width: 767px) and (orientation: portrait) {
  .home-ac__text,
  .home-ac__text > div,
  .home-ac__text .reveal-up {
    width: 100%;
    align-items: center !important;
    text-align: center !important;
  }

  .home-ac__text h2 {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 18px !important;
    max-width: 100% !important;
    font-size: clamp(34px, 9vw, 46px) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
    text-align: center !important;
  }

  .home-ac__text p {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 28px !important;
    max-width: 34ch !important;
    font-size: 17px !important;
    line-height: 1.7 !important;
    font-weight: 500 !important;
    text-align: center !important;
  }

  .home-ac__text .flex.gap-4 {
    width: 100%;
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
  }

  .home-ac__text .flex.gap-4 a {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .home-ac__text .flex.gap-4 button {
    width: min(100%, 280px);
    min-height: 48px;
    justify-content: center;
  }

  .home-ac__text + .w-full {
    display: flex;
    justify-content: center;
    margin-top: 18px;
  }

  .home-ac__text + .w-full > div {
    width: 100% !important;
    max-width: 360px !important;
    height: auto !important;
    aspect-ratio: 16 / 11 !important;
    border-radius: 24px !important;
    overflow: hidden;
    background: transparent !important;
  }

  .home-ac__text + .w-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1);
    transform-origin: center center;
  }
}

/* ======================================================
   HOME AC SECTION — TELEFON POZIOMO
   tylko delikatne zwężenie obrazka
====================================================== */

@media (max-width: 932px) and (orientation: landscape) {
  .home-ac__media {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    min-width: 0 !important;
  }

  .home-ac__imgcard {
    width: calc(100% - 12px) !important;
    max-width: calc(100% - 20px) !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    min-width: 0 !important;
  }

  .home-ac__img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
}

/* ======================================================
   HOME — BUSINESS SECTION
   CLEAN RESPONSIVE BLOCK
   mobile + tablet
====================================================== */

/* ---------- WSPÓLNE ZABEZPIECZENIE PRZED UCIEKANIEM SZEROKOŚCI ---------- */
.home-business {
  overflow-x: clip;
}

.home-business .max-w-7xl.mx-auto.px-6,
.home-business .max-w-7xl.mx-auto.px-6 > * ,
.home-business .business-ac__imgwrap,
.home-business .business-ac__imgcard,
.home-business .business-ac__img,
.home-business .business-ac__text,
.home-business .business-ac__points,
.home-business .business-ac__point {
  min-width: 0 !important;
  max-width: 100% !important;
  box-sizing: border-box;
}

/* ---------- TELEFON PIONOWO ---------- */
@media (max-width: 767px) and (orientation: portrait) {
  .home-business .max-w-7xl.mx-auto.px-6 {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    align-items: start !important;
    overflow-x: clip !important;
  }

  .home-business .business-ac__imgwrap {
    display: none !important;
  }

  .home-business .business-ac__text,
  .home-business .business-ac__text > div {
    width: 100%;
    align-items: center !important;
    text-align: center !important;
  }

  .home-business .business-ac__points {
    width: 100%;
    display: grid;
    gap: 14px;
    justify-items: center;
  }

  .home-business .business-ac__point {
    width: 100%;
    text-align: center;
  }

  .home-business .business-ac__text > .mt-4.flex.gap-4.flex-wrap,
  .home-business .business-ac__text > .mt-4.flex.gap-4.flex-wrap.md\:flex-nowrap {
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .home-business .business-ac__text > .mt-4.flex.gap-4.flex-wrap a,
  .home-business .business-ac__text > .mt-4.flex.gap-4.flex-wrap.md\:flex-nowrap a {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .home-business .business-ac__text > .mt-4.flex.gap-4.flex-wrap button,
  .home-business .business-ac__text > .mt-4.flex.gap-4.flex-wrap.md\:flex-nowrap button {
    width: min(100%, 280px) !important;
    min-height: 48px;
    justify-content: center;
  }
}

/* ---------- TELEFON POZIOMO ---------- */
@media (min-width: 568px) and (max-width: 932px) and (orientation: landscape) {
  .home-business .max-w-7xl.mx-auto.px-6 {
    display: grid !important;
    grid-template-columns: minmax(0, 40%) minmax(0, 60%) !important;
    gap: 16px !important;
    align-items: center !important;
    overflow-x: clip !important;
  }

  .home-business .business-ac__imgwrap {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .home-business .business-ac__imgcard {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 16 / 11 !important;
    overflow: hidden !important;
  }

  .home-business .business-ac__img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  .home-business .business-ac__text {
    width: 100%;
    align-items: stretch !important;
    text-align: left !important;
  }

  .home-business .business-ac__points {
    width: 100%;
  }

  .home-business .business-ac__point {
    width: 100%;
    text-align: center;
  }

  .home-business .business-ac__text > .mt-4.flex.gap-4.flex-wrap,
  .home-business .business-ac__text > .mt-4.flex.gap-4.flex-wrap.md\:flex-nowrap {
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  .home-business .business-ac__text > .mt-4.flex.gap-4.flex-wrap a,
  .home-business .business-ac__text > .mt-4.flex.gap-4.flex-wrap.md\:flex-nowrap a {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  .home-business .business-ac__text > .mt-4.flex.gap-4.flex-wrap button,
  .home-business .business-ac__text > .mt-4.flex.gap-4.flex-wrap.md\:flex-nowrap button {
    width: min(100%, 280px) !important;
    min-height: 48px;
    justify-content: center;
  }
}

/* ---------- TABLETY PIONOWO: iPad mini / Air / Pro ---------- */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .home-business .max-w-7xl.mx-auto.px-6 {
    display: grid !important;
    grid-template-columns: minmax(0, 44%) minmax(0, 56%) !important;
    gap: 18px !important;
    align-items: center !important;
    overflow-x: clip !important;
  }

  .home-business .business-ac__imgwrap {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .home-business .business-ac__imgcard {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 16 / 11 !important;
    overflow: hidden !important;
  }

  .home-business .business-ac__text {
    width: 100%;
    align-items: stretch !important;
    text-align: left !important;
  }

  .home-business .business-ac__points {
    width: 100%;
  }

  .home-business .business-ac__point {
    width: 100%;
    text-align: center;
  }

  .home-business .business-ac__text > .mt-4.flex.gap-4.flex-wrap,
  .home-business .business-ac__text > .mt-4.flex.gap-4.flex-wrap.md\:flex-nowrap {
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  .home-business .business-ac__text > .mt-4.flex.gap-4.flex-wrap a,
  .home-business .business-ac__text > .mt-4.flex.gap-4.flex-wrap.md\:flex-nowrap a {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  .home-business .business-ac__text > .mt-4.flex.gap-4.flex-wrap button,
  .home-business .business-ac__text > .mt-4.flex.gap-4.flex-wrap.md\:flex-nowrap button {
    width: min(100%, 280px) !important;
    min-height: 48px;
    justify-content: center;
  }
}

/* ---------- TABLETY POZIOMO: iPad mini / Air / Pro ---------- */
@media (min-width: 933px) and (max-width: 1194px) {
  .home-business .max-w-7xl.mx-auto.px-6 {
    display: grid !important;
    grid-template-columns: minmax(0, 43%) minmax(0, 57%) !important;
    gap: 20px !important;
    align-items: center !important;
    overflow-x: clip !important;
  }

  .home-business .business-ac__imgwrap {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .home-business .business-ac__imgcard {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 16 / 10 !important;
    overflow: hidden !important;
  }

  .home-business .business-ac__text {
    width: 100%;
    align-items: stretch !important;
    text-align: left !important;
  }

  .home-business .business-ac__points {
    width: 100%;
  }

  .home-business .business-ac__point {
    width: 100%;
    text-align: center;
  }

  .home-business .business-ac__text > .mt-4.flex.gap-4.flex-wrap,
  .home-business .business-ac__text > .mt-4.flex.gap-4.flex-wrap.md\:flex-nowrap {
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  .home-business .business-ac__text > .mt-4.flex.gap-4.flex-wrap a,
  .home-business .business-ac__text > .mt-4.flex.gap-4.flex-wrap.md\:flex-nowrap a {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  .home-business .business-ac__text > .mt-4.flex.gap-4.flex-wrap button,
  .home-business .business-ac__text > .mt-4.flex.gap-4.flex-wrap.md\:flex-nowrap button {
    width: min(100%, 280px) !important;
    min-height: 48px;
    justify-content: center;
  }
}

/* ======================================================
   HOME / BUSINESS — MID WIDTH FIX
   zakres: 778px — 1310px
====================================================== */

@media (min-width: 778px) and (max-width: 1310px) {
  /* ---------- wspólne bezpieczeństwo ---------- */
  .bg-white.py-32,
  .home-business {
    overflow-x: clip !important;
  }

  .bg-white.py-32 > .max-w-7xl.mx-auto.px-6.grid,
  .home-business .max-w-7xl.mx-auto.px-6 {
    overflow-x: clip !important;
    align-items: center !important;
    gap: 20px !important;
  }

  .bg-white.py-32 > .max-w-7xl.mx-auto.px-6.grid > *,
  .home-business .max-w-7xl.mx-auto.px-6 > * {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  /* ======================================================
     1) HOME AC
  ====================================================== */
  .bg-white.py-32 > .max-w-7xl.mx-auto.px-6.grid {
    grid-template-columns: minmax(0, 40%) minmax(0, 60%) !important;
  }

  .home-ac__text {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .home-ac__text + .w-full {
    min-width: 0 !important;
    max-width: 100% !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    overflow: hidden !important;
  }

  .home-ac__text + .w-full > div {
    width: calc(100% - 18px) !important;
    max-width: calc(100% - 18px) !important;
    height: auto !important;
    aspect-ratio: 16 / 11 !important;
    overflow: hidden !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  .home-ac__text + .w-full img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  .home-ac__text .flex.gap-4 {
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .home-ac__text .flex.gap-4 a {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .home-ac__text .flex.gap-4 button {
    width: min(100%, 280px) !important;
    min-height: 48px;
    justify-content: center;
  }

  /* ======================================================
     2) BUSINESS
  ====================================================== */
  .home-business .max-w-7xl.mx-auto.px-6 {
    grid-template-columns: minmax(0, 42%) minmax(0, 58%) !important;
  }

  .home-business .business-ac__imgwrap,
  .home-business .business-ac__imgcard,
  .home-business .business-ac__text,
  .home-business .business-ac__points,
  .home-business .business-ac__point {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .home-business .business-ac__imgcard {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .home-business .business-ac__text > .mt-4.flex.gap-4.flex-wrap,
  .home-business .business-ac__text > .mt-4.flex.gap-4.flex-wrap.md\:flex-nowrap {
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .home-business .business-ac__text > .mt-4.flex.gap-4.flex-wrap a,
  .home-business .business-ac__text > .mt-4.flex.gap-4.flex-wrap.md\:flex-nowrap a {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .home-business .business-ac__text > .mt-4.flex.gap-4.flex-wrap button,
  .home-business .business-ac__text > .mt-4.flex.gap-4.flex-wrap.md\:flex-nowrap button {
    width: min(100%, 280px) !important;
    min-height: 48px;
    justify-content: center;
  }
}

/* ======================================================
   HOME — SERWIS KLIMATYZACJI
   mobile: niższe kafle
====================================================== */

@media (max-width: 767px) {
  .max-w-6xl.mx-auto.px-6 .grid.sm\:grid-cols-2.lg\:grid-cols-4.gap-8.max-w-6xl.mx-auto.reveal-up.reveal-delay-2 {
    gap: 16px !important;
  }

  .max-w-6xl.mx-auto.px-6 .grid.sm\:grid-cols-2.lg\:grid-cols-4.gap-8.max-w-6xl.mx-auto.reveal-up.reveal-delay-2 > div {
    min-height: auto !important;
    padding: 24px 20px !important;
  }

  .max-w-6xl.mx-auto.px-6 .grid.sm\:grid-cols-2.lg\:grid-cols-4.gap-8.max-w-6xl.mx-auto.reveal-up.reveal-delay-2 h3 {
    margin-bottom: 8px !important;
  }

  .max-w-6xl.mx-auto.px-6 .grid.sm\:grid-cols-2.lg\:grid-cols-4.gap-8.max-w-6xl.mx-auto.reveal-up.reveal-delay-2 p {
    margin: 0 !important;
    line-height: 1.6 !important;
  }
}

/* ======================================================
   HOME — SERWIS KLIMATYZACJI
   telefon poziomo: niższe kafle
====================================================== */

@media (min-width: 568px) and (max-width: 932px) and (orientation: landscape) {
  .max-w-6xl.mx-auto.px-6 .grid.sm\:grid-cols-2.lg\:grid-cols-4.gap-8.max-w-6xl.mx-auto.reveal-up.reveal-delay-2 {
    gap: 14px !important;
  }

  .max-w-6xl.mx-auto.px-6 .grid.sm\:grid-cols-2.lg\:grid-cols-4.gap-8.max-w-6xl.mx-auto.reveal-up.reveal-delay-2 > div {
    min-height: auto !important;
    padding: 18px 16px !important;
  }

  .max-w-6xl.mx-auto.px-6 .grid.sm\:grid-cols-2.lg\:grid-cols-4.gap-8.max-w-6xl.mx-auto.reveal-up.reveal-delay-2 h3 {
    margin-bottom: 6px !important;
    font-size: 17px !important;
  }

  .max-w-6xl.mx-auto.px-6 .grid.sm\:grid-cols-2.lg\:grid-cols-4.gap-8.max-w-6xl.mx-auto.reveal-up.reveal-delay-2 p {
    margin: 0 !important;
    line-height: 1.5 !important;
    font-size: 14px !important;
  }
}

/* ======================================================
   ABOUT — HAIER PNG LOGO
   biały logotyp na ciemnym kaflu
====================================================== */

.about-page-light .about-brand-tile img[src*="HAIER_logo_BLACK.png"] {
  filter: brightness(0) invert(1) !important;
  max-width: 118px;
  max-height: 26px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ======================================================
   TIMELINE — MOBILE PION
   czysty układ:
   - oś tylko po lewej
   - bez kreski przez środek
   - plus wyśrodkowany względem treści
   - oś kończy się na 8
====================================================== */

@media (max-width: 767px) and (orientation: portrait) {
  .install-page {
    --tlm-axis-col: 34px;
    --tlm-gap: 16px;
    --tlm-icon-size: 34px;
    --tlm-dot-size: 30px;
  }

  .install-page .timeline {
    position: relative;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  /* wyłączamy starą globalną oś */
  .install-page .timeline::before {
    display: none !important;
  }

  .install-page .tl-row {
    position: relative;
    display: grid !important;
    grid-template-columns: var(--tlm-axis-col) minmax(0, 1fr) !important;
    column-gap: var(--tlm-gap) !important;
    align-items: start !important;
  }

  .install-page .tl-col--left {
    display: none !important;
  }

  .install-page .tl-col--right {
    display: block !important;
    min-width: 0 !important;
  }

  /* lewa kolumna: tylko numer + pionowa oś */
  .install-page .tl-axis {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100%;
  }

  .install-page .tl-axis::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(var(--tlm-dot-size) / 2);
    bottom: -24px;
    width: 2px;
    background: rgba(148, 163, 184, 0.34);
    border-radius: 999px;
    z-index: 0;
  }

  .install-page .tl-row:last-child .tl-axis::before {
    bottom: calc(100% - (var(--tlm-dot-size) / 2)) !important;
  }

  .install-page .tl-dot {
    width: var(--tlm-dot-size);
    height: var(--tlm-dot-size);
    margin-top: 0 !important;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 650;
    color: #0f172a;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.42);
    position: relative;
    z-index: 2;
    box-shadow: none;
  }

  /* karta */
  .install-page .tl-card,
  .install-page .tl-card--mirror {
    width: 100% !important;
    min-width: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-areas:
      "main icon"
      "actions actions" !important;
    column-gap: 12px !important;
    row-gap: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    align-items: start !important;
  }

  .install-page .tl-side {
    display: none !important;
  }

  .install-page .tl-main {
    grid-area: main;
    min-width: 0;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .install-page .tl-title {
    margin: 0 !important;
    min-height: var(--tlm-dot-size);
    display: flex;
    align-items: center;
    font-size: 17px !important;
    line-height: 1.25 !important;
    font-weight: 650;
    color: #0f172a;
  }

  .install-page .tl-desc {
    margin: 10px 0 0 0 !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #475569;
  }

  /* SVG przy tytule, nieruchome */
  .install-page .tl-icon {
    grid-area: icon;
    width: 38px;
    height: var(--tlm-dot-size);
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    align-self: start !important;
    background: transparent !important;
    border-radius: 0 !important;
    position: static !important;
    transform: none !important;
  }

  .install-page .tl-iconimg {
    width: var(--tlm-icon-size);
    height: var(--tlm-icon-size);
    display: block;
    flex: 0 0 auto;
  }

 .install-page .tl-actions {
  grid-area: actions;
  display: block;
  margin-top: 18px !important;
}

.install-page .tl-plusrow {
  width: 100%;
  display: flex;
  justify-content: center !important;
}

.install-page .tl-actions {
  padding-left: 0 !important;
  padding-right: 38px !important; /* kompensacja szerokości SVG */
}

  .install-page .tl-plus {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .install-page .tl-more {
    max-width: 100% !important;
    font-size: 14.5px;
    line-height: 1.75;
  }

  .install-page .tl-more.is-open {
    margin-top: 14px;
    padding-top: 14px;
  }
}

/* ======================================================
   TIMELINE — MOBILE POZIOM
   jak pionowo, ale:
   - SVG wyśrodkowane względem całego bloku
     (tytuł + lead)
   - SVG nieruchome po kliknięciu plusa
====================================================== */

@media (min-width: 568px) and (max-width: 932px) and (orientation: landscape) {
  .install-page {
    --tlm-axis-col: 34px;
    --tlm-gap: 16px;
    --tlm-icon-size: 36px;
    --tlm-dot-size: 30px;
  }

  .install-page .timeline {
    position: relative;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  /* wyłączamy starą globalną oś */
  .install-page .timeline::before {
    display: none !important;
  }

  .install-page .tl-row {
    position: relative;
    display: grid !important;
    grid-template-columns: var(--tlm-axis-col) minmax(0, 1fr) !important;
    column-gap: var(--tlm-gap) !important;
    align-items: start !important;
  }

  .install-page .tl-col--left {
    display: none !important;
  }

  .install-page .tl-col--right {
    display: block !important;
    min-width: 0 !important;
  }

  /* lewa kolumna: numer + pionowa oś */
  .install-page .tl-axis {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100%;
  }

  .install-page .tl-axis::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(var(--tlm-dot-size) / 2);
    bottom: -24px;
    width: 2px;
    background: rgba(148, 163, 184, 0.34);
    border-radius: 999px;
    z-index: 0;
  }

  .install-page .tl-row:last-child .tl-axis::before {
    bottom: calc(100% - (var(--tlm-dot-size) / 2)) !important;
  }

  .install-page .tl-dot {
    width: var(--tlm-dot-size);
    height: var(--tlm-dot-size);
    margin-top: 0 !important;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 650;
    color: #0f172a;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.42);
    position: relative;
    z-index: 2;
    box-shadow: none;
  }

  /* karta */
  .install-page .tl-card,
  .install-page .tl-card--mirror {
    width: 100% !important;
    min-width: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-areas:
      "main icon"
      "actions actions" !important;
    column-gap: 16px !important;
    row-gap: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    align-items: start !important;
  }

  .install-page .tl-side {
    display: none !important;
  }

  .install-page .tl-main {
    grid-area: main;
    min-width: 0;
    padding-top: 0 !important;
    margin-top: 0 !important;
    align-self: start !important;
  }

  .install-page .tl-title {
    margin: 0 !important;
    min-height: var(--tlm-dot-size);
    display: flex;
    align-items: center;
    font-size: 17px !important;
    line-height: 1.25 !important;
    font-weight: 650;
    color: #0f172a;
  }

  .install-page .tl-desc {
    margin: 10px 0 0 0 !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #475569;
  }

  /* SVG na środku całego bloku tekstowego, ale nieruchome */
  .install-page .tl-icon {
    grid-area: icon;
    width: 42px;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    align-self: start !important;
    background: transparent !important;
    border-radius: 0 !important;
    position: relative !important;
    top: 45px !important;
    transform: none !important;
  }

  .install-page .tl-iconimg {
    width: var(--tlm-icon-size);
    height: var(--tlm-icon-size);
    display: block;
    flex: 0 0 auto;
  }

  .install-page .tl-actions {
    grid-area: actions;
    display: block;
    margin-top: 18px !important;
    padding-left: 0 !important;
    padding-right: 42px !important; /* kompensacja szerokości SVG */
    position: relative;
    z-index: 1;
  }

  .install-page .tl-plusrow {
    width: 100%;
    display: flex;
    justify-content: center !important;
  }

  .install-page .tl-plus {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .install-page .tl-more {
    max-width: 100% !important;
    font-size: 14.5px;
    line-height: 1.75;
    position: relative;
    z-index: 1;
  }

  .install-page .tl-more.is-open {
    margin-top: 14px;
    padding-top: 14px;
    position: relative;
    z-index: 1;
  }
}

/* ======================================================
   B2B TIMELINE — MOBILE PION + POZIOM
   układ jak w mobile timeline "Montaż klimatyzacji"
   kolorystyka jak w desktopie B2B
   nie rusza desktopu
====================================================== */

/* ======================================================
   B2B TIMELINE — MOBILE PION
====================================================== */

@media (max-width: 767px) and (orientation: portrait) {
  .b2b-page {
    --b2b-tlm-axis-col: 34px;
    --b2b-tlm-gap: 16px;
    --b2b-tlm-icon-size: 34px;
    --b2b-tlm-dot-size: 30px;
  }

  .b2b-page .timeline {
    position: relative;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .b2b-page .timeline::before {
    display: none !important;
  }

  .b2b-page .tl-row {
    position: relative;
    display: grid !important;
    grid-template-columns: var(--b2b-tlm-axis-col) minmax(0, 1fr) !important;
    column-gap: var(--b2b-tlm-gap) !important;
    align-items: start !important;
  }

  .b2b-page .tl-col--left {
    display: none !important;
  }

  .b2b-page .tl-col--right {
    display: block !important;
    min-width: 0 !important;
  }

  .b2b-page .tl-axis {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100%;
  }

  .b2b-page .tl-axis::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(var(--b2b-tlm-dot-size) / 2);
    bottom: -24px;
    width: 2px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    z-index: 0;
  }

  .b2b-page .tl-row:last-child .tl-axis::before {
    bottom: calc(100% - (var(--b2b-tlm-dot-size) / 2)) !important;
  }

  .b2b-page .tl-dot {
    width: var(--b2b-tlm-dot-size);
    height: var(--b2b-tlm-dot-size);
    margin-top: 0 !important;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 650;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.10) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .b2b-page .tl-card,
  .b2b-page .tl-card--mirror {
    width: 100% !important;
    min-width: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-areas:
      "main icon"
      "actions actions" !important;
    column-gap: 12px !important;
    row-gap: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    align-items: start !important;
  }

  .b2b-page .tl-side {
    display: none !important;
  }

  .b2b-page .tl-main {
    grid-area: main;
    min-width: 0;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .b2b-page .tl-title {
    margin: 0 !important;
    min-height: var(--b2b-tlm-dot-size);
    display: flex;
    align-items: center;
    font-size: 17px !important;
    line-height: 1.25 !important;
    font-weight: 650;
    color: rgba(255, 255, 255, 0.98) !important;
  }

  .b2b-page .tl-desc {
    margin: 10px 0 0 0 !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.72) !important;
  }

  .b2b-page .tl-icon {
    grid-area: icon;
    width: 38px;
    height: var(--b2b-tlm-dot-size);
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    align-self: start !important;
    background: transparent !important;
    border-radius: 0 !important;
    position: static !important;
    transform: none !important;
  }

  .b2b-page .tl-iconimg {
    width: var(--b2b-tlm-icon-size);
    height: var(--b2b-tlm-icon-size);
    display: block;
    flex: 0 0 auto;
    filter: brightness(0) invert(1) contrast(1.05);
    opacity: 0.98;
  }

  .b2b-page .tl-actions {
    grid-area: actions;
    display: block;
    margin-top: 18px !important;
    padding-left: 0 !important;
    padding-right: 38px !important;
  }

  .b2b-page .tl-plusrow {
    width: 100%;
    display: flex;
    justify-content: center !important;
  }

  .b2b-page .tl-plus {
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.10) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .b2b-page .tl-plus:hover {
    background: rgba(255, 255, 255, 0.14) !important;
  }

  .b2b-page .tl-more {
    max-width: 100% !important;
    font-size: 14.5px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72) !important;
  }

  .b2b-page .tl-more,
  .b2b-page .tl-more p,
  .b2b-page .tl-more li {
    color: rgba(255, 255, 255, 0.72) !important;
  }

  .b2b-page .tl-more.is-open {
    margin-top: 14px;
    padding-top: 14px;
    border-top-color: rgba(255, 255, 255, 0.12) !important;
  }
}

/* ======================================================
   B2B TIMELINE — MOBILE POZIOM
   jak pionowo, ale SVG na środku całego bloku tekstu
====================================================== */

@media (min-width: 568px) and (max-width: 932px) and (orientation: landscape) {
  .b2b-page {
    --b2b-tlm-axis-col: 34px;
    --b2b-tlm-gap: 16px;
    --b2b-tlm-icon-size: 36px;
    --b2b-tlm-dot-size: 30px;
  }

  .b2b-page .timeline {
    position: relative;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .b2b-page .timeline::before {
    display: none !important;
  }

  .b2b-page .tl-row {
    position: relative;
    display: grid !important;
    grid-template-columns: var(--b2b-tlm-axis-col) minmax(0, 1fr) !important;
    column-gap: var(--b2b-tlm-gap) !important;
    align-items: start !important;
  }

  .b2b-page .tl-col--left {
    display: none !important;
  }

  .b2b-page .tl-col--right {
    display: block !important;
    min-width: 0 !important;
  }

  .b2b-page .tl-axis {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100%;
  }

  .b2b-page .tl-axis::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(var(--b2b-tlm-dot-size) / 2);
    bottom: -24px;
    width: 2px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    z-index: 0;
  }

  .b2b-page .tl-row:last-child .tl-axis::before {
    bottom: calc(100% - (var(--b2b-tlm-dot-size) / 2)) !important;
  }

  .b2b-page .tl-dot {
    width: var(--b2b-tlm-dot-size);
    height: var(--b2b-tlm-dot-size);
    margin-top: 0 !important;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 650;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.10) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .b2b-page .tl-card,
  .b2b-page .tl-card--mirror {
    width: 100% !important;
    min-width: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-areas:
      "main icon"
      "actions actions" !important;
    column-gap: 16px !important;
    row-gap: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    align-items: start !important;
  }

  .b2b-page .tl-side {
    display: none !important;
  }

  .b2b-page .tl-main {
    grid-area: main;
    min-width: 0;
    padding-top: 0 !important;
    margin-top: 0 !important;
    align-self: start !important;
  }

  .b2b-page .tl-title {
    margin: 0 !important;
    min-height: var(--b2b-tlm-dot-size);
    display: flex;
    align-items: center;
    font-size: 17px !important;
    line-height: 1.25 !important;
    font-weight: 650;
    color: rgba(255, 255, 255, 0.98) !important;
  }

  .b2b-page .tl-desc {
    margin: 10px 0 0 0 !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.72) !important;
  }

  /* SVG na środku całego bloku tekstowego */
  .b2b-page .tl-icon {
    grid-area: icon;
    width: 42px;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    align-self: start !important;
    background: transparent !important;
    border-radius: 0 !important;
    position: relative !important;
    top: 45px !important;
    transform: none !important;
  }

  .b2b-page .tl-iconimg {
    width: var(--b2b-tlm-icon-size);
    height: var(--b2b-tlm-icon-size);
    display: block;
    flex: 0 0 auto;
    filter: brightness(0) invert(1) contrast(1.05);
    opacity: 0.98;
  }

  .b2b-page .tl-actions {
    grid-area: actions;
    display: block;
    margin-top: 18px !important;
    padding-left: 0 !important;
    padding-right: 42px !important;
    position: relative;
    z-index: 1;
  }

  .b2b-page .tl-plusrow {
    width: 100%;
    display: flex;
    justify-content: center !important;
  }

  .b2b-page .tl-plus {
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.10) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .b2b-page .tl-plus:hover {
    background: rgba(255, 255, 255, 0.14) !important;
  }

  .b2b-page .tl-more {
    max-width: 100% !important;
    font-size: 14.5px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72) !important;
    position: relative;
    z-index: 1;
  }

  .b2b-page .tl-more,
  .b2b-page .tl-more p,
  .b2b-page .tl-more li {
    color: rgba(255, 255, 255, 0.72) !important;
  }

  .b2b-page .tl-more.is-open {
    margin-top: 14px;
    padding-top: 14px;
    border-top-color: rgba(255, 255, 255, 0.12) !important;
    position: relative;
    z-index: 1;
  }
}

/* ======================================================
   /SERWIS — TYPOGRAFIA JAK NA CAŁEJ STRONIE
   bez własnych override fontu
====================================================== */

.service-page,
.service-page h1,
.service-page h2,
.service-page h3,
.service-page p,
.service-page a,
.service-page button,
.service-page li,
.service-page span {
  font-family: inherit !important;
  letter-spacing: inherit !important;
  text-rendering: inherit !important;
  -webkit-font-smoothing: inherit !important;
  -moz-osx-font-smoothing: inherit !important;
}

/* nagłówki i leady mają nie wyglądać "inaczej" niż reszta strony */
.service-page .svc-h1,
.service-page .svc-h2,
.service-page .svc-lead,
.service-page .svc-sub,
.service-page .cta-title-lg,
.service-page .svc-btn {
  font-family: inherit !important;
}

/* ======================================================
   KONTAKT — FINAL MOBILE / LABEL / PANEL BLOCK
====================================================== */

/* ---------- WSPÓLNY STYL MAŁYCH TYTUŁÓW / ETYKIET ---------- */

.contact-label,
.contact-panel__label,
.site-footer__title {
  font-size: 12.5px !important;
  line-height: 1.2 !important;
  font-weight: 650 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

.contact-label,
.contact-panel__label,
.site-footer__title {
  font-size: 12.5px !important;
  line-height: 1.2 !important;
  font-weight: 650 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #0a2540 !important;
  opacity: 1 !important;
}

/* ---------- UKŁAD KONTAKTU ---------- */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 28px;
  align-items: stretch;
}

.contact-layout__left,
.contact-layout__right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-layout__divider {
  width: 1px;
  min-height: 100%;
  background: rgba(148, 163, 184, 0.18);
}

/* ---------- FORMULARZ ---------- */

.contact-form-card {
  width: 100%;
  padding: 24px 26px;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: none;
}

.contact-form__title {
  margin: 0 0 22px 0;
  color: #0f172a;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 650;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-field {
  display: grid;
  gap: 6px;
}

.contact-input,
.contact-select,
.contact-textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.42);
  color: #0f172a;
  outline: none;
  box-shadow: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-input,
.contact-select {
  height: 50px;
  padding: 0 16px;
  font-size: 15px;
}

.contact-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%230f172a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px 14px;
}

.contact-select::-ms-expand {
  display: none;
}

.contact-textarea {
  min-height: 104px;
  padding: 14px 16px;
  border-radius: 24px;
  font-size: 15px;
  resize: none;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: rgba(15, 23, 42, 0.34);
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
  border-color: rgba(10, 37, 64, 0.28);
  background: rgba(255, 255, 255, 0.58);
}

.contact-submit {
  margin-top: 4px;
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: #0a2540;
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 650;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-submit:hover {
  background: #081c33;
}

.contact-submit:active {
  transform: translateY(1px);
}

/* ---------- SZYBKI KONTAKT ---------- */

.contact-panel--plain {
  width: 100%;
  padding: 22px 24px !important;
  border-radius: 26px !important;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: none;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-panel__title {
  margin: 0 0 22px 0 !important;
  color: #0f172a;
  font-size: clamp(22px, 2vw, 32px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.02em !important;
  font-weight: 650 !important;
  text-align: left;
}

.contact-panel__list {
  display: grid;
  gap: 18px !important;
}

.contact-panel__item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) !important;
  gap: 14px !important;
  align-items: center !important;
  padding: 0;
}

.contact-panel__iconwrap {
  width: 34px !important;
  height: 34px !important;
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  border-radius: 0 !important;
}

.contact-panel__icon {
  width: 22px !important;
  height: 22px !important;
  object-fit: contain !important;
  display: block !important;
}

.contact-panel__content {
  min-width: 0 !important;
  display: flex;
  align-items: center;
}

.contact-panel__value,
.contact-panel__value--phone,
.contact-panel__value--address {
  display: block;
  margin: 0 !important;
  color: #0f172a;
  text-decoration: none;
  font-size: clamp(20px, 1.5vw, 24px);
  line-height: 1.35 !important;
  font-weight: 600;
  letter-spacing: -0.02em;
  word-break: normal;
  overflow-wrap: anywhere;
}

.contact-panel__divider {
  display: none !important;
}

/* ---------- MOBILE: SZYBKI KONTAKT NAD FORMULARZEM ---------- */

@media (max-width: 1100px) {
  .contact-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .contact-layout__divider {
    display: none !important;
  }

  .contact-layout__right {
    order: 1 !important;
  }

  .contact-layout__left {
    order: 2 !important;
  }

  .contact-layout__right > div,
  .contact-layout__left > div {
    width: 100% !important;
  }
}

/* ---------- MOBILE PION ---------- */

@media (max-width: 767px) and (orientation: portrait) {
  .contact-form-card {
    padding: 22px 18px !important;
    border-radius: 24px !important;
  }

  .contact-panel--plain {
    padding: 20px 20px !important;
    border-radius: 24px !important;
  }

  /* wyśrodkowane tytuły boxów */
  .contact-form__title,
  .contact-panel__title {
    text-align: center !important;
    margin-bottom: 18px !important;
  }

  .contact-panel__list {
    gap: 16px !important;
  }

  .contact-panel__item {
    grid-template-columns: 32px minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  .contact-panel__iconwrap {
    width: 32px !important;
    height: 32px !important;
  }

  .contact-panel__icon {
    width: 21px !important;
    height: 21px !important;
  }

  .contact-panel__value,
  .contact-panel__value--phone,
  .contact-panel__value--address {
    font-size: 18px !important;
    line-height: 1.3 !important;
  }
}

/* ---------- MOBILE POZIOM ---------- */

@media (min-width: 568px) and (max-width: 932px) and (orientation: landscape) {
  .contact-form-card {
    padding: 20px 22px !important;
    border-radius: 24px !important;
  }

  .contact-panel--plain {
    padding: 20px 22px !important;
    border-radius: 24px !important;
  }

  .contact-form__title,
  .contact-panel__title {
    margin-bottom: 18px !important;
  }

  .contact-panel__list {
    gap: 16px !important;
  }

  .contact-panel__item {
    grid-template-columns: 32px minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  .contact-panel__iconwrap {
    width: 32px !important;
    height: 32px !important;
  }

  .contact-panel__icon {
    width: 21px !important;
    height: 21px !important;
  }

  /* żeby szybki kontakt nie wyglądał na mniejszy od formularza */
  .contact-panel__value,
  .contact-panel__value--phone,
  .contact-panel__value--address {
    font-size: 18px !important;
    line-height: 1.3 !important;
  }
}

/* ======================================================
   HOME — BUSINESS SECTION
   DESKTOP RESTORE + CLEAN FIX
   pod aktualny JS:
   md:grid-cols-[48%_52%]
====================================================== */

.home-business--soft {
  background:
    radial-gradient(720px 320px at 18% 18%, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0) 62%),
    radial-gradient(640px 280px at 82% 22%, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0) 64%),
    radial-gradient(720px 340px at 50% 100%, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0) 68%),
    linear-gradient(180deg, #eef7fc 0%, #f4faff 52%, #edf6fb 100%);
}

:root {
  --business-img-maxw: 550px;
  --business-img-pos-x: 50%;
  --business-img-pos-y: 32%;
}

.business-ac__imgwrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.business-ac__imgcard {
  width: 100%;
  max-width: var(--business-img-maxw);
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: 24px;
  min-width: 0;
}

.business-ac__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--business-img-pos-x) var(--business-img-pos-y);
}

.business-ac__text {
  min-width: 0;
}

.business-ac__text > .flex.gap-4 {
  align-items: center;
}

/* ---------- DESKTOP ONLY ---------- */
@media (min-width: 1024px) {
  .home-business .max-w-7xl.mx-auto.px-6 {
    grid-template-columns: 46% 54% !important;
    gap: 30px !important;
    align-items: center !important;
  }

  .home-business .business-ac__imgwrap {
    justify-content: center !important;
  }

  .home-business .business-ac__imgcard {
    max-width: 560px !important;
    aspect-ratio: 16 / 11 !important;
  }

  .home-business .business-ac__img {
    object-fit: cover !important;
    object-position: center 30% !important;
  }
}

/* ---------- MOBILE / TABLET zostawiamy spokojne ---------- */
@media (max-width: 900px) {
  .home-business--soft {
    background:
      radial-gradient(520px 240px at 20% 10%, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0) 62%),
      radial-gradient(520px 220px at 80% 22%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 64%),
      linear-gradient(180deg, #eef7fc 0%, #f4faff 52%, #edf6fb 100%);
  }

  :root {
    --business-img-maxw: 560px;
    --business-img-pos-y: 50%;
  }

  .business-ac__imgcard {
    aspect-ratio: 16 / 11;
  }
}

/* ======================================================
   HOME — BUSINESS SECTION
   desktop: ciaśniejszy środek + tekst bardziej w prawo
====================================================== */

@media (min-width: 1024px) {
  .home-business .max-w-7xl.mx-auto.px-6 {
    grid-template-columns: 44% 56% !important;
    gap: 18px !important;
    align-items: center !important;
  }

  .home-business .business-ac__imgwrap {
    justify-content: flex-end !important;
  }

  .home-business .business-ac__text {
    padding-left: 22px !important;
    align-items: flex-start !important;
  }

  .home-business .business-ac__text .reveal-up,
  .home-business .business-ac__text > div {
    width: 100%;
  }

  .home-business .business-ac__text h2,
  .home-business .business-ac__text p,
  .home-business .business-ac__points {
    max-width: 100% !important;
  }
}