@charset "UTF-8";

:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-alt: #fdf3ea;
  --panel: rgba(255, 255, 255, 0.78);
  --stroke: rgba(43, 24, 16, 0.10);
  --stroke-2: rgba(43, 24, 16, 0.16);
  --text: #2a1a12;
  --muted: rgba(42, 26, 18, 0.65);
  --muted-2: rgba(42, 26, 18, 0.45);
  --accent: #cf5a14;
  --accent-2: #f39a3d;
  --accent-dark: #a8470c;
  --navy: #2b1810;
  --shadow-sm: 0 2px 12px rgba(43, 24, 16, 0.08);
  --shadow: 0 8px 32px rgba(43, 24, 16, 0.12);
  --shadow-lg: 0 18px 50px rgba(43, 24, 16, 0.18);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1120px;
  --pad: 18px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 15px/1.6 "Montserrat", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  letter-spacing: 0.1px;
}
a { color: inherit; text-decoration: none; }
a:visited { color: inherit; }
img { display: block; max-width: 100%; }

/* ===== LAYOUT ===== */
.container {
  width: min(100% - 2 * var(--pad), var(--container));
  margin-inline: auto;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--stroke);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 12px;
}

.brand { display: inline-flex; align-items: center; padding: 6px 8px; border-radius: 10px; }
.brand__img { display: block; height: 60px; width: auto; }

.nav { display: none; align-items: center; gap: 4px; }
.nav__link {
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: background 140ms, color 140ms;
}
.nav__link:hover { background: rgba(43, 24, 16, 0.05); color: var(--text); }
.nav__link--cta {
  background: rgba(207, 90, 20, 0.10);
  border: 1px solid rgba(207, 90, 20, 0.20);
  color: var(--text);
  font-weight: 600;
}

.header__phone {
  display: none;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #cf5a14, #f39a3d);
  border: 1px solid rgba(207, 90, 20, 0.20);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: transform 120ms, opacity 150ms;
}
.header__phone:visited { color: #fff; }
.header__phone:hover { transform: translateY(-1px); opacity: 0.92; }
.header__phone-icon { width: 15px; height: 15px; flex-shrink: 0; }

.menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--stroke-2);
  background: rgba(255,255,255,0.65);
  cursor: pointer;
}
.menu__bar { display: block; width: 18px; height: 2px; background: rgba(43, 24, 16,0.85); border-radius: 2px; }

.mobile { border-top: 1px solid var(--stroke); }
.mobile__inner { display: grid; padding: 10px 0 16px; gap: 6px; }
.mobile__link {
  padding: 12px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--stroke);
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile__link--cta {
  background: rgba(207, 90, 20,0.10);
  border-color: rgba(207, 90, 20,0.22);
  font-weight: 700;
}
.mobile__link--phone {
  background: linear-gradient(135deg, rgba(207, 90, 20,0.12), rgba(243, 154, 61,0.08));
  border-color: rgba(207, 90, 20,0.28);
  font-weight: 700;
  color: var(--accent-dark);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: clip;
  padding: 72px 0 32px;
  background: linear-gradient(155deg, #140a05 0%, #2a1409 45%, #4a230f 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -260px -40vw -260px;
  pointer-events: none;
  background:
    radial-gradient(1100px 640px at 70%  0%,   rgba(207, 90, 20,0.42), transparent 60%),
    radial-gradient(820px  520px at 15%  30%,  rgba(243, 154, 61,0.26), transparent 62%),
    radial-gradient(900px  580px at 55%  120%, rgba(207, 90, 20,0.20), transparent 64%);
}

.hero > .container { position: relative; z-index: 1; }

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  font-weight: 500;
}

.live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.30);
  flex-shrink: 0;
  animation: pulse-dot 2.2s ease infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.30); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0.10); }
}

.hero__title {
  margin: 14px 0 0;
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -0.8px;
  color: #fff;
}
.hero__accent { color: var(--accent-2); }

.hero__lead {
  margin: 14px 0 0;
  font-size: 16px;
  color: rgba(255,255,255,0.70);
  max-width: 58ch;
}

.hero__actions {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.hero__stat-value {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.5px;
}
.hero__stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.48);
  margin-top: 4px;
}

/* Hero video panel */
.hero__panel { position: relative; }
.panel {
  border-radius: var(--radius);
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(43, 24, 16,0.12);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.panel__top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(43, 24, 16,0.10);
  background: rgba(43, 24, 16,0.04);
}
.dot { width: 10px; height: 10px; border-radius: 999px; opacity: 0.9; }
.dot--r { background: #ff5f56; }
.dot--y { background: #ffbd2e; }
.dot--g { background: #27c93f; }
.panel__title { margin-left: 6px; color: var(--muted-2); font-size: 12px; }
.panel__body { padding: 14px; }
.embed { border-radius: 12px; overflow: hidden; aspect-ratio: 16/9; background: rgba(43, 24, 16,0.06); }
.embed__iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ===== BUTTONS ===== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 12px;
  border: 1px solid var(--stroke-2);
  background: rgba(255,255,255,0.75);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1px;
  cursor: pointer;
  transition: transform 120ms ease, background 150ms ease, box-shadow 150ms ease;
}
.button:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.button:visited { color: var(--text); }

.button--primary {
  background: linear-gradient(135deg, #cf5a14, #f39a3d);
  border-color: rgba(207, 90, 20,0.20);
  color: #fff;
}
.button--primary:visited { color: #fff; }
.button--primary:hover { background: linear-gradient(135deg, #b44d0e, #e2741f); }

.button--ghost {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}
.button--ghost:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.35); color: #fff; }
.button--ghost:visited { color: #fff; }

.button--outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent-dark);
}
.button--outline:hover { background: rgba(207, 90, 20,0.06); }
.button--outline:visited { color: var(--accent-dark); }

.button--white {
  background: #fff;
  border-color: rgba(255,255,255,0.30);
  color: var(--navy);
}
.button--white:hover { background: rgba(255,255,255,0.92); }
.button--white:visited { color: var(--navy); }

/* ===== SECTIONS ===== */
.section { padding: 64px 0; }
.section--bg { background: var(--bg-alt); }

.section__head { margin-bottom: 32px; }
.section__head--center { text-align: center; }
.section__head--center .section__lead { margin-left: auto; margin-right: auto; }

.section__title {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--navy);
}
.section__lead {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 64ch;
  line-height: 1.65;
}

/* ===== BENEFITS (O nas) ===== */
.benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.benefit {
  display: flex;
  flex-direction: column;
  padding: 20px 20px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-sm);
  transition: transform 140ms, box-shadow 140ms;
}
.benefit:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.benefit__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(207, 90, 20,0.12), rgba(243, 154, 61,0.08));
  border: 1px solid rgba(207, 90, 20,0.18);
  color: var(--accent);
  margin-bottom: 14px;
  flex-shrink: 0;
}

.benefit__title { font-size: 15px; font-weight: 700; margin: 0 0 6px; color: var(--navy); }
.benefit__desc { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }

/* Insurance callout */
.insurance-callout {
  margin-top: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 24px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #2b1810, #4a230f);
  color: #fff;
}
.insurance-callout__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
  color: #fff;
}
.insurance-callout__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}
.insurance-callout__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  margin: 0;
  line-height: 1.65;
}

/* ===== PRICING ===== */
.pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 24px 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-sm);
}
.price-card--featured {
  border-color: rgba(207, 90, 20,0.35);
  box-shadow: 0 4px 24px rgba(207, 90, 20,0.14);
  position: relative;
}
.price-card--featured::before {
  content: "Najcz\000119\00015Bciej wybierane";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #cf5a14, #f39a3d);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.price-card__tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--accent);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.price-card__desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.6;
}
.price-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 8px;
  flex: 1;
}
.price-card__list li {
  font-size: 14px;
  color: var(--text);
  padding-left: 22px;
  position: relative;
}
.price-card__list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.price-card .button { margin-top: auto; width: 100%; }

.pricing-note {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(207, 90, 20,0.06);
  border: 1px solid rgba(207, 90, 20,0.14);
  color: var(--muted);
  font-size: 14px;
}
.pricing-note svg { color: var(--accent); flex-shrink: 0; }

/* ===== STEPS (Jak działamy) ===== */
.steps--4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.step {
  display: flex;
  gap: 16px;
  padding: 18px 18px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-sm);
}
.step__num {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
  background: linear-gradient(135deg, #cf5a14, #f39a3d);
  color: #fff;
}
.step__title { font-weight: 700; font-size: 15px; color: var(--navy); }
.step__desc { margin-top: 4px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.step__actions { margin-top: 12px; }
.step__actions .button { padding: 8px 14px; font-size: 13px; }

/* ===== METHOD CARDS (image bg) ===== */
.methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.method-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-image: var(--m-img);
  background-size: cover;
  background-position: center;
  background-color: #2b1810;
  cursor: default;
  transition: transform 150ms, box-shadow 150ms;
}
.method-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.method-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 10, 5, 0.92) 0%,
    rgba(20, 10, 5, 0.60) 50%,
    rgba(20, 10, 5, 0.20) 100%
  );
  pointer-events: none;
}

.method-card__content {
  position: relative;
  z-index: 1;
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.method-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #cf5a14, #f39a3d);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  align-self: flex-start;
}

.method-card__title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.method-card__desc {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.method-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-start;
  transition: background 140ms;
}
.method-card__btn:hover { background: rgba(255,255,255,0.20); }

@media (min-width: 820px) {
  .methods { grid-template-columns: repeat(3, 1fr); }
  .method-card { min-height: 260px; }
}

/* Callout (dark variant) */
.callout--dark {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #2b1810, #4a230f);
  color: #fff;
}
.callout--dark .callout__title { margin: 0; font-size: 17px; font-weight: 700; color: #fff; }
.callout--dark .callout__desc { margin: 6px 0 0; color: rgba(255,255,255,0.68); font-size: 14px; max-width: 56ch; }

/* ===== REALIZATIONS ===== */
.realizations {
  display: grid;
  gap: 16px;
  align-items: start;
}
.map {
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--stroke);
  overflow: hidden;
  position: relative;
  aspect-ratio: 861 / 837;
  --pin-offset-y: -8px;
  background-image: url("images/poland-map.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.map__pins { position: absolute; inset: 0; }
.map__pin {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--accent);
  border: 2px solid rgba(255,255,255,0.95);
  box-shadow: 0 4px 12px rgba(43, 24, 16,0.22);
  transform: translate(-50%, calc(-50% + var(--pin-offset-y)));
}
.list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.list__item {
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--stroke);
  overflow: hidden;
  transition: transform 140ms, box-shadow 140ms;
}
.list__item:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.list__img { width: 100%; height: 140px; object-fit: cover; }
.list__place { padding: 10px 12px; font-weight: 700; font-size: 14px; color: var(--navy); }

/* ===== REVIEWS ===== */
.section__head-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.rating-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-sm);
}
.rating-bar__score { font-size: 22px; font-weight: 800; color: var(--navy); line-height: 1; }
.rating-bar__stars { color: #f59e0b; font-size: 16px; letter-spacing: 1px; }
.rating-bar__meta { font-size: 13px; color: var(--muted-2); display: flex; align-items: center; gap: 6px; }

.g-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 4px;
  background: #4285f4;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

.reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.review {
  padding: 20px 20px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-sm);
  transition: transform 140ms, box-shadow 140ms;
}
.review:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.review__top { display: flex; align-items: center; gap: 12px; }
.review__avatar {
  width: 44px; height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  flex-shrink: 0;
}
.review__meta { flex: 1; }
.review__name { font-weight: 700; font-size: 14px; color: var(--navy); }
.review__date { color: var(--muted-2); font-size: 12px; margin-top: 2px; }
.review__stars { color: #f59e0b; font-size: 15px; letter-spacing: 1px; margin-top: 12px; }
.review__text { margin-top: 8px; color: var(--muted); font-size: 14px; line-height: 1.65; }

/* ===== CONTACT ===== */
.contact-layout {
  display: grid;
  gap: 24px;
  align-items: start;
}
.form {
  padding: 20px 20px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-sm);
  width: 100%;
  max-width: 640px;
}
.field { display: grid; gap: 6px; margin-bottom: 14px; }
.field__label { color: var(--muted-2); font-size: 13px; font-weight: 600; }
.field__input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--stroke-2);
  background: rgba(255,255,255,0.95);
  color: var(--text);
  padding: 10px 12px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 140ms, box-shadow 140ms;
}
.field__input:focus {
  border-color: rgba(207, 90, 20,0.55);
  box-shadow: 0 0 0 3px rgba(207, 90, 20,0.14);
}
.field__input--area { resize: vertical; }
.field__input--file { padding: 8px 10px; }
.field--check {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  margin-top: 4px;
}
.field__checkbox { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--accent); }
.field__check-text { color: var(--muted-2); font-size: 13px; line-height: 1.4; }
.field__check-text a { color: var(--accent); }
.form__actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.form__hint { color: var(--muted-2); font-size: 13px; }

.contact { display: flex; flex-direction: column; gap: 20px; }
.contact__items { display: grid; gap: 14px; }
.contact__item { display: grid; gap: 3px; }
.contact__label { color: var(--muted-2); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.contact__value { font-weight: 700; font-size: 15px; color: var(--navy); }
.contact__value--big { font-size: 20px; color: var(--accent-dark); }
.contact__cta { width: fit-content; }

/* Lead form grid */
.grid--form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.grid--span-2 { grid-column: 1 / -1; }

/* ===== MODALS ===== */
.modal-backdrop[hidden] { display: none; }
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(42, 26, 18,0.55);
  backdrop-filter: blur(3px);
  z-index: 999;
}
.modal {
  width: min(92vw, 920px);
  position: fixed;
  inset: 0;
  margin: auto;
  max-height: 90vh;
  overflow: auto;
  z-index: 1000;
  border: 0;
  padding: 0;
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow-lg);
}
.modal--lead {
  width: min(96vw, 700px);
  inset: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 94vh;
  overflow-y: auto;
}
.modal--lead .modal__body { display: block; padding: 24px 28px 28px; }
.modal--lead .form { margin-inline: 0; }
.modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--stroke);
}

.modal__head--accent {
  background: linear-gradient(135deg, #cf5a14, #f39a3d);
  border-bottom: none;
  padding: 20px 22px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.modal__head--accent .modal__title {
  color: #fff;
  font-size: 18px;
}

.modal__sub {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  margin-top: 3px;
}

.modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.12);
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 140ms;
}
.modal__close:hover { background: rgba(255,255,255,0.22); }

.modal__title { font-weight: 800; font-size: 16px; }
.modal__body { padding: 20px 22px; }

.form--lead {
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background: none !important;
  max-width: none !important;
  width: 100% !important;
  overflow: visible !important;
}

.button--lg { padding: 13px 24px; font-size: 15px; gap: 8px; }
.modal__img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--stroke);
}
.modal__empty {
  padding: 24px;
  border-radius: 12px;
  border: 1px dashed rgba(207, 90, 20,0.30);
  background: rgba(207, 90, 20,0.05);
  color: var(--muted);
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--stroke);
  background: #fffaf5;
}
.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__logo { display: block; height: 44px; width: auto; }
.footer__note { margin-top: 6px; color: var(--muted-2); font-size: 13px; }
.footer__center { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.footer__right { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.footer__link {
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  transition: background 140ms, color 140ms;
}
.footer__link:hover { background: rgba(43, 24, 16,0.05); color: var(--text); }

/* ===== COOKIE ===== */
.cookie[hidden] { display: none; }
.cookie {
  position: fixed;
  inset: auto 0 0;
  z-index: 1200;
  background: rgba(255,255,255,0.96);
  border-top: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
}
.cookie__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}
.cookie__text { color: var(--muted); font-size: 13px; line-height: 1.4; }
.cookie__text a, .cookie__text a:visited { color: var(--accent); }
.cookie__button { flex-shrink: 0; white-space: nowrap; }

/* ===== RESPONSIVE ===== */
@media (min-width: 600px) {
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: repeat(2, 1fr); }
  .methods { grid-template-columns: repeat(2, 1fr); }
  .steps--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 820px) {
  .brand__img { height: 72px; }
  .nav { display: inline-flex; }
  .menu { display: none; }
  .mobile { display: none; }
  .header__phone { display: inline-flex; }

  .hero { padding: 88px 0 36px; }
  .hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
  }
  .hero__title { font-size: 50px; }

  .section__title { font-size: 36px; }
  .benefits { grid-template-columns: repeat(3, 1fr); }
  .pricing { grid-template-columns: repeat(3, 1fr); }
  .methods { grid-template-columns: repeat(2, 1fr); }
  .steps--4 { grid-template-columns: repeat(2, 1fr); }

  .realizations {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .list { grid-template-columns: repeat(2, 1fr); }

  .reviews { grid-template-columns: repeat(2, 1fr); }

  .contact-layout {
    grid-template-columns: minmax(0, 640px) minmax(0, 1fr);
    gap: 32px;
  }
  .grid--form { grid-template-columns: repeat(2, 1fr); }
}

/* ===== WATER DROPS ===== */
.drops {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.drop {
  position: absolute;
  top: -20px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: linear-gradient(180deg, rgba(243, 154, 61,0.55), rgba(207, 90, 20,0.25));
  animation: fall-drop linear infinite;
}

.drop::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 200%;
  height: 6px;
  border-radius: 50%;
  background: rgba(243, 154, 61,0.25);
  animation: ripple-splash linear infinite;
  animation-duration: inherit;
  animation-delay: inherit;
}

@keyframes fall-drop {
  0%   { top: -20px; opacity: 0; }
  5%   { opacity: 1; }
  85%  { opacity: 0.7; }
  95%  { top: 100%; opacity: 0; }
  100% { top: 100%; opacity: 0; }
}

@keyframes ripple-splash {
  0%,84% { transform: translateX(-50%) scaleX(0); opacity: 0; }
  86%    { transform: translateX(-50%) scaleX(0); opacity: 0.6; }
  100%   { transform: translateX(-50%) scaleX(3); opacity: 0; }
}

/* ===== PRICING PRICES ===== */
.price-card__price {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  line-height: 1.1;
}

.price-card__unit {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted-2);
  vertical-align: middle;
}

/* 4-column pricing — zawsze w jednej linii na desktopie */
@media (min-width: 600px) {
  .pricing { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .pricing { grid-template-columns: repeat(4, 1fr); }
}
/* Wyrównaj wysokość kart */
.pricing { align-items: stretch; }
.price-card { display: flex; flex-direction: column; }

/* ===== DARK SECTION ===== */
.section--dark {
  background: linear-gradient(155deg, #2a1409 0%, #40200d 50%, #56290f 100%);
  border-top: none;
  border-bottom: none;
}
.section__title--light { color: #fff; }
.section__lead--light { color: rgba(255,255,255,0.60); }

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  margin-bottom: 40px;
}

.timeline__steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 1;
}

/* Pionowa linia na mobile */
.timeline__track {
  display: none;
}

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

.timeline__circle {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: linear-gradient(135deg, #cf5a14, #f39a3d);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 3px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 0 8px rgba(243, 154, 61,0.15);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.timeline__title {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 8px;
}

.timeline__desc {
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
  max-width: 22ch;
}

.timeline__link {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-2);
  transition: opacity 140ms;
}
.timeline__link:hover { opacity: 0.80; }
.timeline__link:visited { color: var(--accent-2); }

.timeline__cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (min-width: 820px) {
  .timeline__steps {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
  }

  .timeline__step { flex: 1; padding: 0 12px; }

  /* Pozioma linia łącząca kółka */
  .timeline__track {
    display: block;
    position: absolute;
    top: 29px; /* połowa wysokości kółka 58px */
    left: calc(100% / 8);
    right: calc(100% / 8);
    height: 2px;
    background: linear-gradient(90deg, rgba(243, 154, 61,0.15), rgba(243, 154, 61,0.55), rgba(243, 154, 61,0.15));
    z-index: 0;
  }
}

/* ===== HOW FLOW ===== */
.how-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.how-card {
  padding: 24px 20px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 140ms, box-shadow 140ms;
}
.how-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.how-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(207, 90, 20,0.12), rgba(243, 154, 61,0.08));
  border: 1px solid rgba(207, 90, 20,0.18);
  color: var(--accent);
  margin: 0 auto 12px;
}

.how-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #cf5a14, #f39a3d);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 10px;
}

.how-card__title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.how-card__desc {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.how-card__btn {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  transition: color 140ms;
}
.how-card__btn:hover { color: var(--accent-dark); }

/* Strzałka — ukryta domyślnie na mobile */
.how-connector { display: none; }

@media (min-width: 820px) {
  .how-flow {
    /* karta | strzałka | karta | strzałka | karta | strzałka | karta */
    grid-template-columns: 1fr 36px 1fr 36px 1fr 36px 1fr;
    align-items: center;
    gap: 0;
  }
  .how-card { text-align: left; }
  .how-card__icon { margin: 0 0 12px; }
  .how-card__num { margin-bottom: 10px; }

  .how-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    opacity: 0.55;
  }
}

/* ===== MAP (modernized) ===== */
.map {
  border-radius: var(--radius);
  background: linear-gradient(135deg, #2a1a12 0%, #3d1d0c 100%);
  border: 1px solid rgba(207, 90, 20,0.20);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  aspect-ratio: 861 / 837;
  --pin-offset-y: -8px;
  background-image: url("images/poland-map.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 92%;
}

.map::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(207, 90, 20,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.map__pins { position: absolute; inset: 0; z-index: 2; }

.map__pin {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent-2);
  border: 2px solid rgba(255,255,255,0.95);
  box-shadow: 0 0 0 4px rgba(243, 154, 61,0.25), 0 4px 12px rgba(43, 24, 16,0.35);
  transform: translate(-50%, calc(-50% + var(--pin-offset-y)));
  animation: pin-pulse 2.5s ease infinite;
}

@keyframes pin-pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(243, 154, 61,0.25), 0 4px 12px rgba(43, 24, 16,0.35); }
  50%      { box-shadow: 0 0 0 8px rgba(243, 154, 61,0.10), 0 4px 12px rgba(43, 24, 16,0.35); }
}

/* ===== FORM (modernized) ===== */
.contact-layout {
  display: grid;
  gap: 24px;
  align-items: start;
}

.form {
  padding: 0;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 640px;
  overflow: hidden;
}

.form-header {
  padding: 18px 24px;
  background: linear-gradient(135deg, #cf5a14, #f39a3d);
  color: #fff;
}

.form-header__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 2px;
}

.form-header__sub {
  font-size: 13px;
  opacity: 0.80;
  margin: 0;
}

.form-body {
  padding: 22px 24px;
}

.field { display: grid; gap: 6px; margin-bottom: 14px; }
.field__label { color: var(--muted-2); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.field__input {
  width: 100%;
  border-radius: 10px;
  border: 1.5px solid rgba(43, 24, 16,0.14);
  background: #fffaf5;
  color: var(--text);
  padding: 11px 14px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 150ms, background 150ms, box-shadow 150ms;
}
.field__input:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(207, 90, 20,0.12);
}
.field__input--area { resize: vertical; }
.field__input--file { padding: 9px 12px; background: #fffaf5; cursor: pointer; }
.field--check {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  margin-top: 4px;
}
.field__checkbox { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--accent); }
.field__check-text { color: var(--muted-2); font-size: 13px; line-height: 1.4; }
.field__check-text a { color: var(--accent); }
.form__actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.form__hint { color: var(--muted-2); font-size: 13px; }

@media (min-width: 820px) {
  .contact-layout {
    grid-template-columns: minmax(0, 640px) minmax(0, 1fr);
    gap: 32px;
  }
  .grid--form { grid-template-columns: repeat(2, 1fr); }
}

/* ===== MAP FULL SECTION ===== */
.section-map {
  padding: 0;
  overflow: hidden;
}

.map-full {
  position: relative;
  height: 780px;
}

.map-full #pl-map-leaflet {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  filter: brightness(1.15) saturate(0.55) contrast(0.9);
}

/* biały welon na mapie */
.map-full::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.20);
  z-index: 2;
  pointer-events: none;
}

/* Tytuł — czarny, wyśrodkowany, bez tła */
.map-full__caption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  padding: 28px 16px 0;
  text-align: center;
  background: none;
  pointer-events: none;
}

.map-full__title {
  margin: 0 0 6px;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.4px;
  text-shadow: 0 1px 12px rgba(255,255,255,0.9), 0 0 30px rgba(255,255,255,0.7);
}

.map-full__sub {
  margin: 0;
  font-size: 15px;
  color: var(--text);
  text-shadow: 0 1px 8px rgba(255,255,255,0.9);
}

/* Karuzela na mapie — bez ciemnego tła */
.car-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: none;
  padding: 0 0 18px;
  overflow: hidden;
}

/* Leaflet pin */
.lf-pin {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lf-pin__dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  border: 2.5px solid #fff;
  box-shadow: 0 0 0 4px rgba(207, 90, 20,0.25), 0 2px 8px rgba(43, 24, 16,0.30);
  animation: pin-pulse 2.5s ease infinite;
}

/* ===== CAROUSEL ===== */
.car {
  overflow: hidden;
  cursor: grab;
}

.car__track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: car-scroll 30s linear infinite;
}

.car-wrap:hover .car__track {
  animation-play-state: paused;
}

@keyframes car-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.car__item {
  position: relative;
  flex-shrink: 0;
  width: 280px;
  height: 190px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.car__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.car__item:hover img {
  transform: scale(1.05);
}

.car__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(20, 10, 5,0.88), transparent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

@media (min-width: 820px) {
  .map-full { height: 820px; }
  .map-full__caption { padding: 32px 0 0; }
  .map-full__title { font-size: 36px; }
  .car__item { width: 300px; height: 180px; }
}

/* ===== YOUTUBE ===== */
.yt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

@media (min-width: 600px) { .yt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .yt-grid { grid-template-columns: repeat(3, 1fr); } }

.yt-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-sm);
  transition: transform 150ms, box-shadow 150ms;
  color: var(--text);
}
.yt-card:visited { color: var(--text); }
.yt-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.yt-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
}

.yt-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease, opacity 200ms;
}

.yt-card:hover .yt-card__thumb img {
  transform: scale(1.04);
  opacity: 0.85;
}

.yt-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  background: rgba(0,0,0,0.25);
  transition: opacity 200ms;
}
.yt-card:hover .yt-card__play { opacity: 1; }

.yt-card__body { padding: 14px 16px 16px; flex: 1; }

.yt-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 6px;
}

.yt-card__channel {
  font-size: 12px;
  color: var(--muted-2);
  display: flex;
  align-items: center;
  gap: 5px;
}

.yt-cta {
  display: flex;
  justify-content: center;
}

.button--yt {
  background: #ff0000;
  border-color: rgba(255,0,0,0.25);
  color: #fff;
  gap: 10px;
  padding: 12px 24px;
  font-size: 15px;
}
.button--yt:visited { color: #fff; }
.button--yt:hover { background: #cc0000; }

/* ===== PAGE HERO (polityki) ===== */
.page-hero {
  background: linear-gradient(155deg, #140a05 0%, #2a1409 45%, #4a230f 100%);
  padding: 48px 0 40px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: -200px -40vw;
  pointer-events: none;
  background:
    radial-gradient(800px 400px at 70% 0%, rgba(207, 90, 20,0.35), transparent 60%),
    radial-gradient(600px 300px at 15% 60%, rgba(243, 154, 61,0.20), transparent 62%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.60);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
  transition: color 140ms;
}
.page-hero__back:hover { color: rgba(255,255,255,0.90); }
.page-hero__back:visited { color: rgba(255,255,255,0.60); }

.page-hero__title {
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.page-hero__sub {
  margin: 0;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
}

/* ===== POLICY LAYOUT ===== */
.policy-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

@media (min-width: 820px) {
  .policy-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 40px;
  }
  .page-hero__title { font-size: 40px; }
}

/* FAQ accordion */
.faq { display: grid; gap: 10px; }

.faq__item {
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  gap: 12px;
  user-select: none;
}
.faq__q::-webkit-details-marker { display: none; }

.faq__q::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 200ms ease;
}

details[open] .faq__q::after {
  content: '−';
}

.faq__a {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid var(--stroke);
}

.faq__a ul {
  margin: 10px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 6px;
}

.faq__a a {
  color: var(--accent);
  font-weight: 500;
}

.faq__a strong { color: var(--text); }

/* Policy aside */
.policy-aside { display: flex; flex-direction: column; gap: 0; }

.policy-card {
  padding: 20px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.policy-card__desc {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.policy-card .button { width: 100%; justify-content: center; }

.policy-link {
  display: block;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid var(--stroke);
  transition: color 140ms;
}
.policy-link:last-child { border-bottom: none; }
.policy-link:hover { color: var(--accent-dark); }
.policy-link:visited { color: var(--accent); }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .benefit, .review, .list__item, .how-card { transition: none; }
  .live-dot, .drop, .drop::after, .map__pin { animation: none; }
}

/* Pływający przycisk WhatsApp */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 950;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.3);
}
.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
@media (max-width: 700px) {
  .wa-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}

/* Mobile: CTA hero — "Zadzwoń teraz" na całą szerokość, kolor alertowy; "Umów wizytę" pod spodem */
@media (max-width: 700px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .button--phone {
    width: 100%;
    background: #d62828;
    border-color: #d62828;
    font-size: 17px;
    padding: 15px 18px;
    box-shadow: 0 6px 18px rgba(214, 40, 40, 0.4);
  }
  .hero__actions .button--phone:hover,
  .hero__actions .button--phone:active {
    background: #b51f1f;
    border-color: #b51f1f;
  }
  .hero__actions .button--ghost {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* Cookie: ikona + dymek (prawy dolny róg, nad WhatsApp) */
.cookie-fab {
  position: fixed;
  right: 24px;
  bottom: 86px;
  z-index: 950;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cookie-fab:hover { transform: scale(1.08); box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24); }
.cookie-fab svg { width: 22px; height: 22px; }
.cookie-pop {
  position: fixed;
  right: 18px;
  bottom: 140px;
  z-index: 960;
  width: min(340px, calc(100vw - 36px));
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--stroke);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}
.cookie-pop[hidden] { display: none; }
.cookie-pop__text { color: var(--muted); font-size: 13px; line-height: 1.5; margin-bottom: 12px; }
.cookie-pop__text a, .cookie-pop__text a:visited { color: var(--accent); font-weight: 600; }
.cookie-pop__ok { width: 100%; }
@media (max-width: 700px) {
  .cookie-fab { right: 18px; bottom: 78px; width: 40px; height: 40px; }
  .cookie-pop { right: 14px; bottom: 128px; }
}

/* Osuszanie: karty metod bez zdjęć — ikona zamiast fotografii */
.method-card--icon { min-height: 190px; }
.method-card__icon {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f39a3d;
  display: flex;
  align-items: center;
  justify-content: center;
}
.method-card__icon svg { width: 24px; height: 24px; }
