@charset "UTF-8";

/* ============================================================
   CASZAP.PL – Design System v5  "Professional Clean"
   DM Sans (nagłówki i tekst) – jasny, profesjonalny wygląd,
   kwadratowe rogi, zielona identyfikacja CASZAP.
   Wspólny arkusz dla wszystkich podstron + strony głównej.
   ============================================================ */

:root {
  --green:        #16a34a;
  --green-dark:   #15803d;
  --green-xdark:  #064e3b;
  --green-light:  #dcfce7;
  --green-xlight: #f0fdf4;
  --green-neon:   #22c55e;
  --ink:          #0b1410;
  --ink-2:        #111d16;
  --dark:         #1c2b22;
  --white:        #ffffff;
  --gray-50:      #f8faf9;
  --gray-100:     #f0f2f1;
  --gray-200:     #dde3e0;
  --gray-300:     #b8c4bc;
  --gray-400:     #8a9e92;
  --gray-500:     #607068;
  --gray-600:     #4a5a52;
  --gray-700:     #384840;
  --gray-900:     #111a14;
  --orange:       #f97316;
  --orange-light: #fff7ed;
  --shadow-sm:    0 1px 2px rgba(11,20,16,.05), 0 4px 14px rgba(11,20,16,.06);
  --shadow-md:    0 10px 32px rgba(11,20,16,.10);
  --shadow-lg:    0 24px 64px rgba(11,20,16,.14);
  --shadow-green: 0 8px 24px rgba(22,163,74,.28);
  --radius:       0px;
  --radius-sm:    0px;
  --radius-lg:    0px;
  --nav-h:        76px;
  --max-w:        1140px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: 'DM Sans', system-ui, sans-serif; letter-spacing: -.02em; line-height: 1.15; font-weight: 700; }
::selection { background: var(--green-light); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(22,163,74,.45); outline-offset: 2px;
}

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  height: var(--nav-h);
  border-bottom: 1px solid var(--gray-100);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 24px; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 24px; font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -.01em;
  display: flex; align-items: center; gap: 2px;
}
.nav-logo span { color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  padding: 9px 14px;
  font-size: 14px; font-weight: 500; color: var(--gray-700);
  transition: color .15s, box-shadow .15s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--green-dark);
  box-shadow: inset 0 -2px 0 var(--green);
}
.nav-cta {
  background: var(--green) !important; color: var(--white) !important;
  padding: 11px 22px !important;
  font-weight: 700 !important; font-size: 14px !important;
  box-shadow: none !important;
  transition: background .15s, box-shadow .15s !important;
}
.nav-cta:hover { background: var(--green-dark) !important; box-shadow: var(--shadow-green) !important; }

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle::after { content: ' ▾'; font-size: 10px; }
/* Przezroczysty mostek wypełnia lukę między linkiem a menu – hover nie urywa się */
.nav-dropdown::after {
  content: ''; position: absolute;
  left: 0; right: 0; top: 100%; height: 8px;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-100);
  min-width: 250px;
  padding: 8px 0;
  list-style: none;
  box-shadow: var(--shadow-lg);
  z-index: 300;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 13px; font-weight: 500;
  color: var(--gray-700);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-dropdown-menu li a:hover { background: var(--green-xlight); color: var(--green-dark); box-shadow: none; }
.nav-dropdown-divider { border: none; border-top: 1px solid var(--gray-100); margin: 6px 0; }

/* ── NAV MOBILE (hamburger) ── */
.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--gray-200);
  font-size: 22px; line-height: 1; padding: 7px 12px;
  color: var(--gray-700); cursor: pointer;
}
@media(max-width: 640px) {
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-lg); padding: 8px 0 16px; z-index: 250;
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav.open .nav-links > li > a { display: block; padding: 12px 24px; font-size: 15px; }
  .nav.open .nav-dropdown::after { display: none; }
  .nav.open .nav-dropdown-menu {
    display: block; position: static;
    box-shadow: none; border: none;
    min-width: 0; padding: 0 0 4px;
  }
  .nav.open .nav-dropdown-menu li a { padding: 10px 40px; color: var(--gray-500); white-space: normal; }
  .nav.open .nav-cta { display: block; margin: 10px 24px 0; text-align: center; }
}

/* ── HERO (strona główna – pełnoekranowy slider) ── */
.hero {
  padding: 0;
  background: var(--white);
  position: relative;
}

/* ── HERO SLIDER – główny baner na całą szerokość strony ── */
.hero-slider {
  position: relative;
  width: 100%;
  height: clamp(460px, 74vh, 700px);
  overflow: hidden;
  background: var(--ink);
}
.hero-slider-track {
  display: flex; height: 100%;
  transition: transform .65s cubic-bezier(.77, 0, .18, 1);
}
.hero-slide {
  position: relative; flex: 0 0 100%; height: 100%; overflow: hidden;
}
.hero-slide img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-slide::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg,
    rgba(11,20,16,.88) 0%,
    rgba(11,20,16,.60) 45%,
    rgba(11,20,16,.15) 100%
  );
}
.hero-slide-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto;
  height: 100%; padding: 0 24px;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
}
.hero-slide-tag {
  background: var(--green); color: var(--white);
  padding: 6px 16px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
}
.hero-slide-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(32px, 4.5vw, 58px); font-weight: 800;
  line-height: 1.1; letter-spacing: -.02em;
  color: var(--white); margin: 18px 0 12px;
}
.hero-slide-desc {
  font-size: 16px; color: rgba(255,255,255,.88);
  max-width: 540px; line-height: 1.65; margin-bottom: 26px;
}
.hero-slide-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 50px; height: 50px; padding: 0;
  background: rgba(11,20,16,.45); color: var(--white);
  border: 1px solid rgba(255,255,255,.28);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .15s, border-color .15s;
}
.hero-slider-arrow:hover { background: var(--green); border-color: var(--green); }
.hero-slider-arrow.prev { left: 24px; }
.hero-slider-arrow.next { right: 24px; }
.hero-slider-arrow svg { width: 20px; height: 20px; display: block; }
.hero-slider-dots {
  position: absolute; bottom: 22px; left: 0; right: 0; z-index: 3;
  display: flex; gap: 8px; justify-content: center;
}
.hero-slider-dot {
  width: 28px; height: 4px; padding: 0;
  background: rgba(255,255,255,.35); border: none;
  cursor: pointer; transition: background .2s;
}
.hero-slider-dot.active { background: var(--green-neon); }

/* ── HERO – elementy pomocnicze (podstrony) ── */
.hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,.25); border: 1px solid rgba(255,255,255,.2);
  padding: 6px 14px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px;
}
.hero-badge::before { content: '●'; color: var(--green-neon); font-size: 8px; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero h1 {
  font-size: clamp(38px, 5.5vw, 68px); font-weight: 800;
  color: var(--white);
  line-height: 1.05; margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--green-neon); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,.88); max-width: 540px; margin-bottom: 28px; line-height: 1.65; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

/* ── KEYWORD PILLS ── */
.kw-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.kw-pill {
  background: rgba(0,0,0,.2); border: 1px solid rgba(255,255,255,.15);
  padding: 5px 14px;
  font-size: 11px; font-weight: 600; color: var(--white);
  letter-spacing: .05em; text-transform: uppercase;
  transition: background .15s, border-color .15s;
  cursor: default;
}
.kw-pill:hover { background: rgba(0,0,0,.3); border-color: rgba(255,255,255,.3); }

/* ── HERO PHOTO BANNER (podstrony) ── */
.hero-banner {
  width: calc(100% + 48px); margin: 0 -24px;
  position: relative; height: 340px; overflow: hidden;
}
.hero-banner img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
}
.hero-banner::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom,
    rgba(6,78,59,.55) 0%,
    rgba(6,78,59,.15) 30%,
    rgba(6,78,59,.15) 65%,
    rgba(11,20,16,.72) 100%
  );
}
.hero-banner-labels {
  position: absolute; bottom: 20px; left: 24px; right: 24px;
  display: flex; gap: 10px; z-index: 2; flex-wrap: wrap;
}
.hero-label {
  background: rgba(0,0,0,.62); backdrop-filter: blur(6px);
  border: 1px solid rgba(34,197,94,.4);
  padding: 4px 12px; font-size: 10px; font-weight: 700;
  color: var(--green-neon); letter-spacing: .1em; text-transform: uppercase;
}

/* ── PAGE HERO (podstrony) ── */
.page-hero {
  background: linear-gradient(135deg, var(--green-xdark) 0%, var(--green-dark) 100%);
  padding: 72px 24px 64px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 100% at 100% 0%, rgba(34,197,94,.25) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(32px, 4.5vw, 54px); font-weight: 800;
  color: var(--white); margin-bottom: 14px;
  letter-spacing: -.02em; line-height: 1.1;
}
.page-hero p { font-size: 17px; color: rgba(255,255,255,.85); max-width: 580px; line-height: 1.65; }
.page-hero-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-neon); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.page-hero-eyebrow::before { content: ''; display: inline-block; width: 20px; height: 2px; background: var(--green-neon); }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--gray-50); border-bottom: 1px solid var(--gray-100);
}
.breadcrumb-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 12px 24px;
  font-size: 12px; color: var(--gray-500);
  display: flex; gap: 8px; align-items: center;
  font-weight: 500;
}
.breadcrumb-inner a { color: var(--green-dark); transition: color .15s; }
.breadcrumb-inner a:hover { color: var(--green); }

/* ── STATS BAR (podstrony) ── */
.stats { background: var(--white); border-bottom: 1px solid var(--gray-100); }
.stats-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr));
}
.stat-item {
  padding: 30px 20px; text-align: center;
  border-right: 1px solid var(--gray-100);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 38px; font-weight: 800; color: var(--ink);
  letter-spacing: -.02em; line-height: 1.1; margin-bottom: 4px;
}
.stat-label { font-size: 13px; color: var(--gray-500); font-weight: 500; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 600; cursor: pointer; border: none;
  letter-spacing: 0;
  transition: transform .15s, box-shadow .15s, background .15s, border-color .15s, color .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-white:hover { box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.45); padding: 12px 24px; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-green { background: var(--green); color: var(--white); box-shadow: var(--shadow-green); }
.btn-green:hover { background: var(--green-dark); }
.btn-ghost { background: var(--white); color: var(--gray-700); border: 1px solid var(--gray-200); }
.btn-ghost:hover { border-color: var(--green); color: var(--green-dark); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--dark); }

/* ── SECTIONS ── */
.section { padding: 96px 24px; }
.section-alt { background: var(--gray-50); }
.section-dark { background: linear-gradient(135deg, var(--green-xdark) 0%, var(--ink-2) 100%); color: var(--white); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; color: var(--green); margin-bottom: 10px;
}
.section-title {
  font-size: clamp(28px, 3.2vw, 40px); font-weight: 800;
  line-height: 1.15; letter-spacing: -.02em; margin-bottom: 14px;
}
.section-sub { font-size: 16px; color: var(--gray-500); max-width: 620px; line-height: 1.7; }
.section-header { margin-bottom: 56px; }
.section-dark .section-eyebrow { color: var(--green-neon); }
.section-dark .section-title { color: var(--white); }
.section-dark .section-sub { color: var(--gray-300); }

/* ── CARDS GRID ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.card {
  background: var(--gray-50); border: 1px solid var(--gray-100);
  padding: 30px 28px;
  transition: box-shadow .25s, transform .25s, background .25s, border-color .25s;
}
.card:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--green-light); }
.section-alt .card { background: var(--white); }
.card-icon {
  font-size: 26px; margin-bottom: 16px;
  width: 54px; height: 54px;
  background: var(--white); border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, border-color .25s;
}
.card:hover .card-icon { background: var(--green-xlight); border-color: var(--green-light); }
.section-alt .card .card-icon { background: var(--gray-50); }
.card h3 {
  font-size: 18px; font-weight: 700;
  margin-bottom: 8px; color: var(--gray-900);
}
.card p { font-size: 14px; color: var(--gray-500); line-height: 1.65; }
.card > span, .card a {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 14px;
  font-size: 13px; font-weight: 700; color: var(--green-dark);
}

/* ── SERVICE CARD ── */
.service-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-left: 3px solid var(--green);
  padding: 32px; display: flex; gap: 24px; align-items: flex-start;
  margin-bottom: 16px;
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.service-icon {
  font-size: 34px; flex-shrink: 0; width: 72px; height: 72px;
  background: var(--green-xlight); border: 1px solid var(--green-light);
  display: flex; align-items: center; justify-content: center;
}
.service-body h2 { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.service-body .service-tag {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .09em; color: var(--green); margin-bottom: 10px; display: block;
}
.service-body p { font-size: 15px; color: var(--gray-700); margin-bottom: 12px; }
.service-body ul { padding-left: 18px; font-size: 14px; color: var(--gray-500); }
.service-body ul li { margin-bottom: 5px; }

/* ── STEP CARDS ── */
.step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; }
.step-card {
  background: var(--gray-50); border: 1px solid var(--gray-100);
  padding: 28px; position: relative; overflow: hidden;
}
.step-card::after {
  content: attr(data-step);
  position: absolute; top: -14px; right: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 100px; font-weight: 800; color: rgba(22,163,74,.08);
  line-height: 1; pointer-events: none; z-index: 0;
}
.step-card > * { position: relative; z-index: 1; }
.step-num { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--green); margin-bottom: 4px; }
.step-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-400); margin-bottom: 10px; }
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--gray-500); margin-bottom: 14px; }
.step-details { display: flex; flex-direction: column; gap: 6px; }
.step-detail { display: flex; gap: 10px; font-size: 13px; color: var(--gray-700); }
.step-detail strong { min-width: 120px; font-weight: 600; }

/* ── FEATURE LIST (O nas) ── */
.feature-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; }
.feature-card {
  background: var(--gray-50); border: 1px solid var(--gray-100);
  padding: 28px; border-bottom: 3px solid var(--green);
}
.feature-num { font-family: 'DM Sans', sans-serif; font-size: 48px; font-weight: 800; color: var(--green-light); line-height: 1; margin-bottom: 6px; }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--gray-500); }

/* ── VALUE CARDS ── */
.value-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; }
.value-card { background: var(--gray-50); border: 1px solid var(--gray-100); padding: 26px; text-align: center; }
.value-card .v-icon { font-size: 34px; margin-bottom: 12px; }
.value-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.value-card p { font-size: 14px; color: var(--gray-500); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--gray-100); background: var(--white); overflow: hidden; }
.faq-q {
  width: 100%; padding: 20px 22px; background: var(--white); border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 600;
  text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  color: var(--gray-900); transition: background .15s;
}
.faq-q:hover { background: var(--gray-50); }
.faq-icon { font-size: 22px; color: var(--green); flex-shrink: 0; transition: transform .25s; font-style: normal; }
.faq-a { padding: 0 22px; max-height: 0; overflow: hidden; font-size: 14px; color: var(--gray-700); line-height: 1.7; transition: max-height .3s ease, padding .3s; background: var(--gray-50); }
.faq-item.open .faq-a { max-height: 240px; padding: 16px 22px 20px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 24px; align-items: start; }
.price-card { background: var(--white); border: 1px solid var(--gray-200); padding: 30px; position: relative; transition: box-shadow .2s, border-color .2s; }
.price-card:hover { box-shadow: var(--shadow-md); }
.price-card.featured { border: 2px solid var(--green); box-shadow: 0 0 0 4px rgba(22,163,74,.08); }
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: var(--white);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  padding: 5px 16px; white-space: nowrap;
}
.price-name { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--green); margin-bottom: 8px; }
.price-num { font-family: 'DM Sans', sans-serif; font-size: 40px; font-weight: 800; letter-spacing: -.02em; color: var(--gray-900); line-height: 1; }
.price-per { font-size: 13px; color: var(--gray-400); margin-bottom: 20px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.price-features li { font-size: 14px; color: var(--gray-700); display: flex; gap: 8px; align-items: flex-start; }
.price-features li::before { content: "✓"; color: var(--green); font-weight: 800; flex-shrink: 0; }
.extra-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--gray-100); font-size: 14px; }
.extra-row:last-child { border-bottom: none; }
.extra-price { font-weight: 700; color: var(--green-dark); }

/* ── REVIEWS ── */
.rating-bar {
  background: var(--gray-50); padding: 32px 36px;
  display: flex; gap: 36px; align-items: center; margin-bottom: 28px;
  border: 1px solid var(--gray-100);
}
.rating-big { text-align: center; }
.rating-big .num { font-family: 'DM Sans', sans-serif; font-size: 60px; font-weight: 800; letter-spacing: -.02em; color: var(--gray-900); line-height: 1; }
.rating-big .stars { font-size: 24px; color: #f59e0b; }
.rating-big .sub { font-size: 12px; color: var(--gray-500); margin-top: 4px; }
.rating-rows { flex: 1; }
.rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 13px; color: var(--gray-600); }
.rating-row .bar { flex: 1; height: 6px; background: var(--gray-200); overflow: hidden; }
.rating-row .fill { height: 100%; background: #f59e0b; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 20px; }
.review-card { background: var(--white); border: 1px solid var(--gray-100); padding: 26px; border-top: 3px solid #f59e0b; }
.review-stars { color: #f59e0b; font-size: 18px; margin-bottom: 12px; }
.review-text { font-size: 15px; color: var(--gray-700); font-style: italic; margin-bottom: 16px; line-height: 1.65; }
.review-author strong { font-size: 15px; font-weight: 700; }
.review-author span { font-size: 12px; color: var(--gray-400); display: block; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 32px; }
@media(max-width: 720px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-card { background: var(--white); border: 1px solid var(--gray-100); padding: 20px 22px; display: flex; gap: 14px; align-items: flex-start; transition: box-shadow .2s, border-color .2s; }
.contact-card:hover { box-shadow: var(--shadow-sm); border-color: var(--green); }
.contact-card a { color: var(--green-dark); font-weight: 700; font-size: 16px; }
.contact-card-icon { font-size: 22px; flex-shrink: 0; }
.contact-card-body strong { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-400); display: block; margin-bottom: 4px; }
.hours-table { width: 100%; font-size: 14px; }
.hours-table tr td { padding: 5px 0; }
.hours-table tr td:last-child { text-align: right; font-weight: 600; }

/* ── FORM ── */
.form-card { background: var(--gray-50); border: 1px solid var(--gray-100); padding: 34px 32px; }
.form-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; margin-bottom: 6px; color: var(--gray-700); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--gray-200);
  font-size: 14px; font-family: 'DM Sans', sans-serif;
  background: var(--white); color: var(--gray-900);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22,163,74,.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; padding: 15px;
  background: var(--green); color: var(--white);
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 700;
  cursor: pointer; box-shadow: var(--shadow-green);
  transition: background .15s, box-shadow .15s, transform .15s;
}
.form-submit:hover { background: var(--green-dark); transform: translateY(-1px); }
#form-ok {
  background: var(--green-xlight); border: 1px solid var(--green-light);
  padding: 16px;
  font-size: 14px; font-weight: 600; color: var(--green-dark);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-xdark) 0%, var(--green-dark) 100%);
  color: var(--white); text-align: center; padding: 88px 24px;
  position: relative; overflow: hidden;
}
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 90% at 80% 10%, rgba(34,197,94,.30) 0%, transparent 60%); pointer-events: none; }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(28px, 3.8vw, 46px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px; color: var(--white); }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,.88); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── HAZMAT ── */
.hazmat {
  background: var(--orange-light); border: 1px solid #fed7aa;
  padding: 32px; display: flex; gap: 20px; align-items: flex-start; margin-top: 32px;
}
.hazmat-icon { font-size: 44px; flex-shrink: 0; }
.hazmat h3 { font-size: 20px; font-weight: 700; color: #c2410c; margin-bottom: 6px; }
.hazmat p { font-size: 14px; color: var(--gray-700); margin-bottom: 10px; }
.hazmat-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.hazmat-tag { background: var(--white); border: 1px solid #fed7aa; padding: 4px 12px; font-size: 11px; font-weight: 700; color: #c2410c; text-transform: uppercase; letter-spacing: .05em; }
.hazmat-badge { display: inline-flex; align-items: center; gap: 6px; background: #c2410c; color: var(--white); padding: 5px 14px; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }

/* ── AREA GRID ── */
.area-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.area-tag {
  background: var(--white); border: 1px solid var(--gray-200); color: var(--gray-700);
  padding: 7px 16px; font-size: 13px; font-weight: 500;
  transition: border-color .15s, color .15s, background .15s;
}
.area-tag:hover { border-color: var(--green); color: var(--green-dark); background: var(--green-xlight); }

/* ── EMERGENCY ── */
.emergency { background: var(--green-xlight); border: 1px solid var(--green-light); padding: 24px 26px; display: flex; gap: 14px; align-items: flex-start; margin-top: 14px; }
.emergency .e-icon { font-size: 28px; }
.emergency h3 { font-size: 18px; font-weight: 700; color: var(--green-dark); margin-bottom: 4px; }
.emergency p { font-size: 14px; color: var(--gray-700); }

/* ── USŁUGI + FORMULARZ WYCENY (strona główna) ── */
.uslugi-layout {
  display: grid; grid-template-columns: minmax(0,1fr) 380px;
  gap: 32px; align-items: start;
}
.uslugi-layout .cards-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.trust-grid { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.trust-grid .card { padding: 20px 18px; }
.trust-grid .card h3 { font-size: 15px; margin-bottom: 6px; }
.trust-grid .card p { font-size: 13px; line-height: 1.5; }
@media(max-width: 900px) { .trust-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media(max-width: 640px) { .trust-grid { grid-template-columns: 1fr; } }
.quote-card {
  position: sticky; top: calc(var(--nav-h) + 24px);
  background: #f2f7f3; border: 1px solid var(--gray-100);
  padding: 34px 30px;
  scroll-margin-top: calc(var(--nav-h) + 24px);
}
.quote-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.quote-sub { font-size: 14px; color: var(--gray-500); margin-bottom: 24px; }
.quote-alt { font-size: 13px; color: var(--gray-500); text-align: center; margin-top: 16px; }
.quote-alt a { color: var(--green-dark); font-weight: 700; }

/* ── DLACZEGO CASZAP – zdjęcie + statystyki (strona główna) ── */
.why-grid {
  display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
  gap: 64px; align-items: center; margin-bottom: 64px;
}
.why-media { position: relative; }
.why-img { width: 100%; height: auto; box-shadow: var(--shadow-lg); }
.why-check { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--gray-700); margin-bottom: 12px; }
.why-list { margin: 0 0 8px; padding-left: 20px; font-size: 15px; color: var(--gray-700); line-height: 1.7; }
.why-list li { margin-bottom: 10px; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.stat-tile {
  background: var(--white); border: 1px solid var(--gray-100);
  padding: 22px 24px;
  transition: transform .25s, box-shadow .25s;
}
.stat-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-tile .stat-num { font-size: 34px; }

/* ── REALIZACJE ── */
.realizacje-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.realizacje-img { width: 100%; height: auto; box-shadow: var(--shadow-md); }
.realizacje-check { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--gray-700); margin-bottom: 10px; }
@media(max-width: 720px) { .realizacje-grid { grid-template-columns: 1fr; } }

/* ── FOOTER ── */
.footer { background: var(--ink); color: var(--gray-400); padding: 64px 24px 32px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; margin-bottom: 44px; }
@media(max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { font-family: 'DM Sans', sans-serif; font-size: 24px; font-weight: 800; letter-spacing: -.01em; color: var(--white); margin-bottom: 10px; }
.footer-logo span { color: var(--green-neon); }
.footer-desc { font-size: 14px; line-height: 1.65; }
.footer h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .11em; color: var(--white); margin-bottom: 16px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer ul li a { font-size: 14px; transition: color .15s; }
.footer ul li a:hover { color: var(--green-neon); }
.footer ul li a[href^="tel"] { color: var(--green-neon); font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; font-size: 13px; text-align: center; line-height: 1.8; }

/* ── FLOATING CALL BUTTON (mobile) ── */
.float-call {
  display: none;
  position: fixed; bottom: 20px; right: 20px; z-index: 999;
  background: var(--green); color: var(--white) !important;
  padding: 14px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 700;
  box-shadow: 0 4px 20px rgba(22,163,74,.45);
  transition: transform .15s, box-shadow .15s;
  text-decoration: none; align-items: center; gap: 8px;
}
.float-call:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(22,163,74,.55); }
@media(max-width: 640px) { .float-call { display: flex; } }

/* ── CTA GRID ── */
.cta-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
@media(max-width: 720px) { .cta-grid { grid-template-columns: 1fr !important; } }

/* ── PRICE NOTE ── */
.price-note { font-size: 13px; color: var(--gray-500); text-align: center; margin-top: 12px; }

/* ── FADE-IN SEKCJI PRZY SCROLLU ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media(max-width: 1024px) {
  .uslugi-layout { grid-template-columns: 1fr; }
  .quote-card { position: static; max-width: 620px; }
}
@media(max-width: 900px) {
  .service-card { flex-direction: column; }
  .rating-bar { flex-direction: column; }
  .hazmat { flex-direction: column; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media(max-width: 640px) {
  .nav-links { display: none; }
  .section { padding: 60px 20px; }
  .page-hero { padding: 52px 20px 48px; }
  .hero-slider { height: 440px; }
  .hero-slide-content { padding: 0 20px 76px; justify-content: flex-end; }
  .hero-slide-title { font-size: 28px; }
  .hero-slide-desc { font-size: 13px; margin-bottom: 16px; }
  .hero-slider-arrow { width: 42px; height: 42px; top: auto; bottom: 14px; transform: none; }
  .hero-slider-arrow.prev { left: auto; right: 64px; }
  .hero-slider-arrow.next { right: 14px; }
  .hero-slider-dots { justify-content: flex-start; padding-left: 20px; bottom: 26px; }
  .hero-banner { height: 200px; }
  .stat-num { font-size: 30px; }
  .uslugi-layout .cards-grid { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* ── WIADOMOŚCI / BLOG ── */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.news-card {
  background: var(--white); border: 1px solid var(--gray-100);
  display: flex; flex-direction: column; overflow: hidden;
  transition: box-shadow .3s, transform .3s, border-color .3s;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green-light); }
.news-thumb { position: relative; overflow: hidden; aspect-ratio: 16 / 10; background: var(--gray-100); }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.news-card:hover .news-thumb img { transform: scale(1.06); }
.news-tag {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  background: var(--green); color: #fff;
  font-size: 12px; font-weight: 700; padding: 5px 12px;
  text-transform: uppercase; letter-spacing: .05em;
}
.news-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.news-meta { font-size: 13px; color: var(--gray-500); margin-bottom: 10px; display: flex; gap: 8px; align-items: center; }
.news-card h3 { font-size: 19px; font-weight: 700; color: var(--gray-900); line-height: 1.35; margin-bottom: 10px; transition: color .25s; }
.news-card:hover h3 { color: var(--green-dark); }
.news-excerpt { font-size: 14px; color: var(--gray-500); line-height: 1.65; margin-bottom: 16px; flex: 1; }
.news-more { font-size: 14px; font-weight: 700; color: var(--green-dark); display: inline-flex; align-items: center; gap: 6px; transition: gap .25s; }
.news-card:hover .news-more { gap: 12px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:none; } }
.hero-slider { animation: fadeUp .6s .05s ease both; }
.hero-inner > *:nth-child(1) { animation: fadeUp .55s .05s ease both; }
.hero-inner > *:nth-child(2) { animation: fadeUp .55s .15s ease both; }
.hero-inner > *:nth-child(3) { animation: fadeUp .55s .25s ease both; }
.hero-inner > *:nth-child(4) { animation: fadeUp .55s .35s ease both; }
.hero-inner > *:nth-child(5) { animation: fadeUp .55s .45s ease both; }
.hero-banner { animation: fadeUp .7s .52s ease both; }
.page-hero-inner > * { animation: fadeUp .55s .1s ease both; }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
