/* DEPLOY-TEST-DEAL-20260603-A */
/* ═══════════════════════════════════════════════════════════
   DealHunters Landing Page
   ═══════════════════════════════════════════════════════════
   dhn-*  →  Nav (white theme)
   hero / pipeline / pipe-* → Hero section
   dh-*  →  Sections below (dark theme)
   ══════════════════════════════════════════════════════════ */

/* ── Reset ──────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Geist",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #ffffff;
  color: #111;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family:
    "Geist",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
img {
  display: block;
  max-width: 100%;
}
button {
  cursor: pointer;
  font-family: inherit;
}
ul {
  list-style: none;
}

/* ══════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════ */
/* Promo bar nad navem — „7 dni free", zawsze widoczny, cały klikalny (→ rejestracja) */
:root { --promo-h: 42px; }
.landing-promo {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: var(--promo-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: #e11d2a;
  color: #fff;
  text-decoration: none;
  padding: 0 16px;
  font-size: 0.95rem;
  line-height: 1.15;
  transition: background 0.15s ease;
}
.landing-promo:hover { background: #c81824; }
.landing-promo__text strong { font-weight: 800; }
.landing-promo__btn {
  background: #fff;
  color: #e11d2a;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
@media (max-width: 640px) {
  :root { --promo-h: 56px; }
  .landing-promo { gap: 0; font-size: 0.9rem; line-height: 1.2; padding: 0 12px; text-align: center; }
  .landing-promo__btn { display: none; }
}

.dhn-nav {
  position: fixed;
  top: var(--promo-h, 42px);
  left: 0;
  right: 0;
  z-index: 200;
  height: 58px;
  background: #ffffff;
  border-bottom: 1px solid #e8eaed;
  transition: box-shadow 0.2s ease;
}
.dhn-nav-shadow {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.dhn-nav-wrap {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 28px;
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
}

/* Logo */
.dhn-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
/* Pełny logotyp Car-Hunters (nav + stopka) */
.dhn-logo-full {
  height: 40px;
  width: auto;
  display: block;
}
.dh-logo-ft-full {
  height: 46px;
  width: auto;
  display: block;
}
@media (max-width: 600px) {
  .dhn-logo-full { height: 48px; }
}
.dhn-logo-box {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.dhn-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dhn-logo-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #111;
  letter-spacing: -0.2px;
}

/* Nav links */
.dhn-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0 auto;
}
.dhn-links a {
  color: #555;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s;
  white-space: nowrap;
}
.dhn-links a:hover {
  color: #111;
}

/* Nav end */
.dhn-nav-end {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.dhn-skan {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.6px;
  white-space: nowrap;
}
.dhn-skan-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  animation: fnPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes fnPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.75);
  }
}

.dhn-login-btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border: 1.5px solid #d0d5dd;
  border-radius: 7px;
  color: #111;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  background: #fff;
  transition: all 0.15s;
  white-space: nowrap;
}
.dhn-login-btn:hover {
  border-color: #999;
  background: #f5f5f5;
}

/* Wyróżniony CTA rejestracji w nawigacji */
.dhn-register-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 18px;
  border: 1.5px solid var(--amber);
  border-radius: 7px;
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  background: var(--amber);
  box-shadow: 0 2px 12px rgba(245, 130, 17, 0.4);
  transition: all 0.15s;
  white-space: nowrap;
}
.dhn-register-btn:hover {
  background: var(--amber-lt);
  border-color: var(--amber-lt);
  box-shadow: 0 5px 18px rgba(245, 130, 17, 0.5);
  transform: translateY(-1px);
}

/* Burger */
/* Hamburger button */
.dhn-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid #e4e4e0;
  border-radius: 8px;
  padding: 8px 10px;
  margin-left: auto;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.dhn-burger:hover {
  border-color: #ccc;
  background: #f8f8f6;
}
.dhn-burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #333;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Mobile overlay — not used (menu is full-screen glass) */
.dhn-overlay { display: none; }

/* Mobile menu — full-screen glass (iOS style) */
.dhn-mobile {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  background: rgba(250, 250, 249, 0.55);
  backdrop-filter: saturate(200%) blur(40px);
  -webkit-backdrop-filter: saturate(200%) blur(40px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0s linear 0.22s;
}
.dhn-mobile.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.22s ease, visibility 0s linear 0s;
}

/* Top bar */
.dhn-mobile-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.dhn-mobile-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #999;
}
.dhn-mobile-close {
  background: rgba(0, 0, 0, 0.07);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 13px;
  color: #444;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.dhn-mobile-close:hover {
  background: rgba(0, 0, 0, 0.13);
}

/* Nav links */
.dhn-mobile a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #0a0a0a;
  text-decoration: none;
  font-family: "Geist", -apple-system, sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  transition: color 0.12s;
}
.dhn-mobile a:active {
  color: #f58211;
}
.dhn-m-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
  color: #333;
}
.dhn-m-icon svg {
  width: 20px;
  height: 20px;
}

/* Login button */
.dhn-m-login {
  margin: 24px 20px 0 !important;
  display: block !important;
  font-family: "Geist", -apple-system, sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  background: rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 12px !important;
  text-align: center !important;
  padding: 14px 20px !important;
  color: #333 !important;
  letter-spacing: 0.01em !important;
  transition: color 0.15s, background 0.15s !important;
}
.dhn-m-login:hover {
  color: #f58211 !important;
  background: rgba(255, 255, 255, 0.88) !important;
}
.dhn-m-register {
  margin-top: 12px !important;
  background: var(--amber) !important;
  border-color: var(--amber) !important;
  color: #fff !important;
  font-weight: 700 !important;
  box-shadow: 0 3px 14px rgba(245, 130, 17, 0.4) !important;
}
.dhn-m-register:hover {
  background: var(--amber-lt) !important;
  color: #fff !important;
}

/* ══════════════════════════════════════════════════════════
   HERO  — white left + dark pipeline right
══════════════════════════════════════════════════════════ */

/* Section wrapper */
.hero {
  padding-top: calc(58px + var(--promo-h, 42px));
  background: #fafaf9;
  min-height: 100vh;
}

/* Container */
.wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Two-column grid */
.hero-grid {
  display: grid;
  grid-template-columns: 44fr 56fr;
  min-height: calc(100vh - 58px - var(--promo-h, 42px));
  align-items: center;
}

/* ── Left column ────────────────────────── */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 56px 72px 0;
}

/* ── Right column: dashboard screenshot ── */
.hero-dashboard {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0 32px 20px;
}
.hero-dashboard-window {
  width: 100%;
  max-width: 680px;
  aspect-ratio: 920 / 690;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.14),
    0 4px 16px rgba(0, 0, 0, 0.07);
  border: 1px solid #e4e4e0;
}
.hero-dashboard-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #f58211;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.tick {
  flex-shrink: 0;
  color: #f58211;
  font-size: 0.6rem;
}

/* Headline */
.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  color: #0a0a0a;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.hero h1 .em {
  font-style: normal;
  font-weight: 800;
  color: #f58211;
  letter-spacing: -0.03em;
}

/* Lead paragraph */
.lede {
  font-size: 0.925rem;
  color: #555;
  line-height: 1.78;
  max-width: 440px;
  margin-bottom: 28px;
}

/* Hero — CarHunters: subtitle, audience line, disclaimer note */
.hero-sub {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 26px;
}
.hero-audience {
  font-size: 0.82rem;
  font-weight: 600;
  color: #444;
  line-height: 1.5;
  max-width: 540px;
  margin-top: 18px;
}
.hero-note {
  font-size: 0.72rem;
  color: #8a8a87;
  line-height: 1.55;
  max-width: 540px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e8e8e4;
}

/* Hero description block */
.hero-desc {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-desc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.hero-desc-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(245, 130, 17, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-top: 1px;
}
.hero-desc-item p {
  font-size: 0.8rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* CTA row */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: all 0.15s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: #f58211;
  color: #fff;
  padding: 12px 22px;
}
.btn-primary:hover {
  background: #d9740f;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 130, 17, 0.25);
}
.btn-ghost {
  background: transparent;
  color: #333;
  border: 1.5px solid #d0d5dd;
  padding: 11px 20px;
}
.btn-ghost:hover {
  border-color: #999;
  color: #111;
  background: #f5f5f5;
}
/* ghost button on dark backgrounds */
.demo-foot .btn-ghost {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.22);
}
.demo-foot .btn-ghost:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}
.btn-link {
  display: inline-flex;
  align-items: center;
  background: none;
  color: #f58211;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0;
  margin-bottom: 22px;
  text-decoration: none;
  transition: color 0.15s;
}
.btn-link:hover {
  color: #d9740f;
  text-decoration: underline;
}

/* Checkmarks */
.hero-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-checks li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.875rem;
  color: #333;
  line-height: 1.4;
}
.hero-checks li svg {
  color: #f58211;
  flex-shrink: 0;
}

/* Feature row */
.hero-features {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e8e8e4;
}
.hero-feat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #444;
  white-space: nowrap;
  flex-shrink: 0;
}
.hero-feat svg {
  color: #f58211;
  flex-shrink: 0;
  width: 13px;
  height: 13px;
}

/* Stats bar */
.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: #666;
  border-top: 1px solid #e4e6e8;
  padding-top: 18px;
  margin-top: 4px;
}
.hero-meta strong {
  font-weight: 700;
  color: #111;
}
.hero-meta-sep {
  color: #ccc;
}

/* Image wrapper + floating elements */
.hero-img-wrap {
  position: relative;
  width: 100%;
}

/* Floating toast notification */
.hero-toast {
  position: absolute;
  bottom: 28px;
  left: -20px;
  background: #0f1218;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  min-width: 260px;
  animation: toastIn 0.5s ease 0.8s both;
}
@keyframes toastIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-toast-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(245,130,17,0.15);
  border: 1px solid rgba(245,130,17,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f58211;
  flex-shrink: 0;
}
.hero-toast-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.hero-toast-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: #e4e8f0;
  white-space: nowrap;
}
.hero-toast-sub {
  font-size: 0.7rem;
  color: #8b95a8;
}
.hero-toast-live {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #4ade80;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 4px;
  padding: 2px 6px;
}

/* SKAN badge — top right corner */
.hero-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(15,18,24,0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #e4e8f0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ── Right column: Pipeline LIGHT card (design: cream theme) ──── */
.pipeline {
  background: #f8f8f6;
  border-radius: 14px;
  border: 1px solid #e4e4e0;
  overflow: visible;
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.05);
  margin: 48px 0 64px 40px;
  position: relative;
}

/* Pipeline header */
.pipeline-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: #f8f8f6;
  border-bottom: 1px solid #eceae6;
  border-radius: 14px 14px 0 0;
  gap: 12px;
}
.pipeline-title {
  font-size: 0.66rem;
  font-weight: 700;
  color: #aaa;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
}
.pipeline-tabs {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
}
.pipeline-tabs span {
  padding: 4px 11px;
  border-radius: 5px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #999;
  background: transparent;
  letter-spacing: 0.3px;
  cursor: default;
  pointer-events: none;
}
.pipeline-tabs span.active {
  background: #111;
  color: #fff;
}

/* Pipe rows */
.pipe-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 18px;
  border-bottom: 1px solid #f0eee9;
  transition: background 0.15s;
  position: relative;
}
.pipe-row:last-of-type {
  border-bottom: none;
}
.pipe-row:hover {
  background: rgba(0, 0, 0, 0.02);
}

.pipe-row.active {
  background: rgba(200, 106, 11, 0.04);
  border-left: 2px solid #c86a0b;
  padding-left: 16px;
}
.pipe-row.dim {
  opacity: 0.45;
}

/* Row elements */
.num {
  font-size: 0.72rem;
  font-weight: 700;
  color: #ccc;
  flex-shrink: 0;
  width: 18px;
  padding-top: 3px;
  font-variant-numeric: tabular-nums;
}
.pipe-row.active .num {
  color: #c86a0b;
}
.label {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.k {
  font-size: 0.56rem;
  font-weight: 700;
  color: #bbb;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}
.v {
  font-size: 0.78rem;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.accent {
  color: #c86a0b;
  font-weight: 600;
}

/* Badges */
.pipe-tag {
  flex-shrink: 0;
  align-self: center;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.pipe-tag.go {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
}
.pipe-tag.warn {
  background: rgba(200, 106, 11, 0.1);
  color: #c86a0b;
}
.pipe-tag.pend {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
}

/* Pipeline footer */
.pipeline-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 18px;
  background: #f8f8f6;
  border-top: 1px solid #eceae6;
  border-radius: 0 0 14px 14px;
}
.pipeline-foot > span:first-child {
  font-size: 0.62rem;
  color: #bbb;
}
.pipeline-foot > span:last-child {
  font-size: 0.62rem;
  font-weight: 700;
  color: #22c55e;
  letter-spacing: 0.5px;
}

/* Floating SMS card — stays dark */
.float-card {
  position: absolute;
  z-index: 10;
  border-radius: 10px;
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 2px 8px rgba(0, 0, 0, 0.2);
}
.float-sms {
  bottom: -24px;
  right: -28px;
  width: 258px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 11px 14px;
}
.float-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.58rem;
  font-weight: 700;
  color: #666;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════
   SHARED DARK SECTION VARS + CONTAINER
══════════════════════════════════════════════════════════ */
:root {
  --accent: #f58211;
  --bg: #0b0d11;
  --bg2: #0f1218;
  --bg3: #13171e;
  --surf: #181c24;
  --bdr: rgba(34, 40, 51, 0.8);
  --bdr2: #2a3040;
  --red: #c91e1e;
  --amber: #f58211;
  --amber-lt: #ffad4d;
  --amber-lo: rgba(245, 130, 17, 0.12);
  --green: #22c55e;
  --txt: #eef1f6;
  --txt2: #a3adbf;
  --txt3: #707a8e;
  --r: 12px;
  --r-lg: 20px;
  --dur: 0.25s;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --font-d: "Geist", sans-serif;
  --font-b: "Geist", sans-serif;
  --accent-2: #c86a0b;
}

.dh-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ══════════════════════════════════════════════════════════
   DEMO SECTION
══════════════════════════════════════════════════════════ */
.demo {
  padding: 72px 0 80px;
  background: var(--bg);
  border-top: 1px solid var(--bdr);
}

/* Section header */
.section-head {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--amber);
  padding: 4px 14px;
  background: var(--amber-lo);
  border: 1px solid rgba(245, 130, 17, 0.2);
  border-radius: 100px;
  margin-bottom: 18px;
}
.section-head h2 {
  font-family: "Geist", "DM Sans", var(--font-d), sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 700;
  color: var(--txt);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}
.section-head h2 .em {
  font-family: "Geist", "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  color: var(--amber);
}
.demo-lede {
  font-size: 0.95rem !important;
  color: var(--txt2) !important;
  line-height: 1.78;
  max-width: none !important;
}

/* Two-column grid */
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.demo-video-col,
.demo-right-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.demo-right-col {
  justify-content: center;
  gap: 24px;
  text-align: center;
  align-items: center;
}
.demo-right-h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--txt);
  margin: 0;
  text-align: center;
}
.demo-right-h2 .em {
  color: var(--amber);
  font-style: normal;
}
.demo-right-p {
  font-size: 1rem;
  color: var(--txt2);
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* Video card */
.video-card {
  background: var(--surf);
  border: 1px solid var(--bdr);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  margin-bottom: 16px;
}

/* Browser chrome */
.video-frame {
  background: #0d1117;
}
.vf-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #0f141b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot:nth-child(1) {
  background: #ff5f57;
}
.dot:nth-child(2) {
  background: #febc2e;
}
.dot:nth-child(3) {
  background: #28c840;
}
.url {
  flex: 1;
  font-size: 0.68rem;
  color: #4a5568;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 5px;
  padding: 3px 10px;
  margin: 0 8px;
}
.vf-rec {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Browser body */
.vf-body {
  display: flex;
  min-height: 280px;
}
.vf-side {
  width: 136px;
  flex-shrink: 0;
  background: #0f141b;
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  padding: 12px 0;
}
.vf-item {
  font-size: 0.72rem;
  color: #3d4a5a;
  padding: 8px 16px;
  cursor: default;
  transition: all 0.15s;
  font-weight: 500;
}
.vf-item.on {
  color: var(--amber);
  background: rgba(245, 130, 17, 0.07);
  border-left: 2px solid var(--amber);
  padding-left: 14px;
}
.vf-item:hover:not(.on) {
  color: #6b7786;
  background: rgba(255, 255, 255, 0.02);
}
.vf-main {
  flex: 1;
  background: #0b0d11;
  background-image:
    linear-gradient(rgba(245, 130, 17, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 130, 17, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* YouTube embed */
.tutorial-video-wrapper {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--bdr);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.4),
    0 4px 16px rgba(0, 0, 0, 0.3);
  margin-bottom: 16px;
  background: #000;
}
.tutorial-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 (poziomy) */
  height: 0;
  overflow: hidden;
}
.tutorial-video iframe,
.tutorial-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Play button overlay */
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(245, 130, 17, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 8px 32px rgba(245, 130, 17, 0.35);
  z-index: 5;
}
.video-play:hover {
  background: #f58211;
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 12px 40px rgba(245, 130, 17, 0.5);
}
.video-play svg {
  width: 26px;
  height: 26px;
  fill: #fff;
  margin-left: 3px;
}

/* Time badge */
.video-time {
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(0, 0, 0, 0.55);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.video-caption {
  font-size: 0.82rem;
  color: #ffffff;
  line-height: 1.65;
  text-align: center;
  padding: 0 8px;
  margin-bottom: 0;
}

/* Chapters panel */
.chapters {
  background: var(--surf);
  border: 1px solid var(--bdr);
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 18px;
}
.chapters h3 {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--txt3);
  margin-bottom: 14px;
}
.chap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
  margin-bottom: 2px;
}
.chap:last-child {
  margin-bottom: 0;
}
.chap:hover {
  background: rgba(255, 255, 255, 0.03);
}
.chap.active {
  background: rgba(245, 130, 17, 0.07);
}
.ch-num {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--txt3);
  width: 20px;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.chap.active .ch-num {
  color: var(--amber);
}
.ch-t {
  flex: 1;
  font-size: 0.82rem;
  color: var(--txt2);
  font-weight: 500;
  line-height: 1.3;
}
.chap.active .ch-t {
  color: var(--txt);
  font-weight: 600;
}
.ch-d {
  font-size: 0.68rem;
  color: var(--txt3);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}
.chap.active .ch-d {
  color: var(--amber);
}

/* Demo right-col copy text */
.demo-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.demo-copy-line {
  font-family: "Geist", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin: 0;
}
.demo-copy-accent {
  color: #f58211;
}
.demo-copy-sub {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  letter-spacing: 0;
  margin: 4px 0 0;
}

/* Demo footer buttons */
.demo-foot {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}
.demo-foot .btn {
  justify-content: center;
  font-size: 0.9rem;
  padding: 12px 20px;
}
.demo-foot .btn-primary {
  padding: 13px 20px;
}

/* ══════════════════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════════════════ */
.dh-stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
  padding: 36px 0;
}
.dh-stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.dh-stat-item {
  text-align: center;
  padding: 0 56px;
  flex: 1;
  min-width: 160px;
}
.dh-stat-big {
  font-family: var(--font-d);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--txt);
  line-height: 1;
  margin-bottom: 6px;
}
.dh-stat-unit {
  font-family: var(--font-b);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--amber);
  margin-left: 2px;
}
.dh-stat-desc {
  font-size: 0.83rem;
  color: var(--txt3);
}
.dh-stat-sep {
  width: 1px;
  height: 48px;
  background: var(--bdr2);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   SECTION HEAD (shared)
══════════════════════════════════════════════════════════ */
.dh-section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 80px;
}
.dh-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--amber);
  padding: 4px 14px;
  background: var(--amber-lo);
  border: 1px solid rgba(245, 130, 17, 0.2);
  border-radius: 100px;
  margin-bottom: 18px;
}
.dh-label.dh-label-dim {
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}
.dh-section-head h2 {
  font-family: var(--font-d);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 800;
  color: var(--txt);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.dh-section-head h2 em {
  font-style: normal;
  color: var(--amber);
}
.dh-section-head p {
  font-size: 1rem;
  color: var(--txt2);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════
   ADVANTAGES (Features — design v2)
══════════════════════════════════════════════════════════ */
.dh-feat-section {
  padding: 72px 0 80px;
  background: #ffffff;
  border-top: 1px solid #e8e8e4;
  border-bottom: 1px solid #e8e8e4;
}

/* Geist font for whole section */
.dh-feat-section {
  font-family:
    "Geist",
    "DM Sans",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

/* Section head override — dark text on light bg */
.dh-feat-section .section-head h2 {
  color: #0a0a0a;
  font-family: "Geist", "DM Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.dh-feat-section .section-tag {
  background: rgba(200, 106, 11, 0.08);
  border-color: rgba(200, 106, 11, 0.18);
}
.dh-feat-lede {
  font-size: 0.95rem !important;
  color: #555 !important;
  max-width: none !important;
  margin-bottom: 0 !important;
}

/* 3-column grid; feat-hero cards span full width */
.dh-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* ── Base card (LIGHT — white) ─── */
.feat {
  background: #ffffff;
  border: 1px solid #e0e0db;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition:
    border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
.feat:hover {
  border-color: #c8c8c2;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
}

/* ── Dark card modifier (feat-1 SMS + feat-4 Follow-up) ─── */
.feat-dark {
  background: #0f1117;
  border-color: rgba(255, 255, 255, 0.07);
}
.feat-dark:hover {
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.feat.feat-dark h3,
.feat-dark h3 {
  color: #ffffff;
}
.feat-dark p {
  color: #ffffff !important;
}
.feat-dark .feat-num {
  color: var(--accent);
}
.feat-dark .feat-tag-badge {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}
.feat-dark .feat-visual {
  border-top-color: rgba(255, 255, 255, 0.06);
}

/* Card header row */
.feat-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.feat-num {
  font-size: 0.62rem;
  font-weight: 800;
  color: #888;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.feat-num-dim {
  color: #8a8a87;
}
.feat-tag-badge {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(200, 106, 11, 0.08);
  border: 1px solid rgba(200, 106, 11, 0.16);
  padding: 2px 8px;
  border-radius: 4px;
}
.feat-tag-dark {
  color: #000;
  background: rgba(0, 0, 0, 0.07);
  border-color: rgba(0, 0, 0, 0.12);
}

/* Card text (light cards) */
.feat h3 {
  font-family: "Geist", "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}
.feat p {
  font-family: "Geist", "DM Sans", sans-serif;
  font-size: 0.875rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 0;
}
.h3-dark {
  color: #000 !important;
}
.p-dark {
  color: #383a3d !important;
}

/* Visual block at bottom of card */
.feat-visual {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #e8e8e4;
}

/* ── SMS mock (dark widget, works in any card) ─── */
.sms-mock {
  background: #111318;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
.who {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--txt3);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.sms-body {
  font-size: 0.8rem;
  color: var(--txt2);
  line-height: 1.6;
  margin-bottom: 8px;
}
.sms-hl {
  color: var(--accent);
  font-weight: 700;
}
/* Zmienna w szablonie SMS (placeholder {{...}}) */
.tpl-var {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  color: var(--amber-lt);
  background: rgba(245, 130, 17, 0.12);
  border: 1px solid rgba(245, 130, 17, 0.3);
  border-radius: 5px;
  padding: 1px 5px;
  white-space: nowrap;
}
.sms-trail {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.58rem;
  color: var(--txt3);
}

/* ── Discount table (light card) ─── */
.disc-tbl {
  display: grid;
  grid-template-columns: 1fr auto;
  row-gap: 8px;
  column-gap: 16px;
}
.dt-k {
  font-size: 0.8rem;
  color: #444;
  display: flex;
  align-items: center;
}
.dt-v {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-align: right;
  white-space: nowrap;
}

/* ── Renovation classifier (light card) ─── */
.reno {
  background: #f0f0eb;
  border: 1px solid #e0e0db;
  border-radius: 10px;
  padding: 14px;
}
.reno-line {
  font-size: 0.78rem;
  color: #555;
  line-height: 1.7;
  font-style: normal;
}
.reno-flag {
  background: rgba(200, 106, 11, 0.1);
  color: var(--accent);
  padding: 1px 5px;
  border-radius: 3px;
  font-style: normal;
  font-weight: 600;
}
.verdict {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #e0e0db;
}
.verdict-label {
  font-size: 0.62rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.v-tag {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--accent);
  background: rgba(200, 106, 11, 0.1);
  padding: 3px 9px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

/* ── Full-width hero cards ─── */
.feat-hero {
  grid-column: 1 / -1;
  padding: 40px;
}
.feat-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.feat-hero-text {
  display: flex;
  flex-direction: column;
}
.feat-hero-text h3 {
  font-family: "Geist", "DM Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}
.feat-hero-text p {
  margin-bottom: 0;
}
.quot {
  font-style: normal;
}
.quot-accent {
  font-style: normal;
  color: var(--accent);
}

.feat-bullets {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.feat-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.875rem;
  color: #555;
  line-height: 1.5;
}
.feat-dark .feat-bullets li {
  color: rgba(255, 255, 255, 0.8);
}
.bull {
  color: var(--accent);
  flex-shrink: 0;
  font-size: 0.55rem;
  margin-top: 5px;
}
.feat-dark .bull {
  color: var(--accent);
}
.feat-bullets-dark li {
  color: #383a3d;
}
.bull-dark {
  color: #000;
  flex-shrink: 0;
  font-size: 0.55rem;
  margin-top: 5px;
}

/* ── Follow-up timeline (inside dark hero card) ─── */
.fup {
  background: #0b0d11;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
}
.fup-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
}
.fup-row:last-child {
  border-bottom: none;
}
.fup-now {
  background: rgba(200, 106, 11, 0.08);
  border-left: 2px solid var(--accent);
  padding-left: 14px;
}
.fup-when {
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--txt3);
  width: 76px;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.fup-now .fup-when {
  color: var(--accent);
}
.fup-what {
  flex: 1;
  color: var(--txt2);
  font-size: 0.78rem;
}
.fup-now .fup-what {
  color: var(--txt);
  font-weight: 600;
}
.fup-by {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--txt3);
  background: rgba(255, 255, 255, 0.04);
  padding: 2px 7px;
  border-radius: 4px;
  flex-shrink: 0;
  white-space: nowrap;
}
.fup-now .fup-by {
  background: rgba(200, 106, 11, 0.12);
  color: var(--accent);
}

/* ── Light hero card (feat-5 Mediana) ─── */
.feat-light {
  background: #f7f7f5;
  border-color: #e0e0dc;
}
.feat-light:hover {
  border-color: #c4c4be;
}

/* ── Median chart ─── */
.median-card {
  padding: 22px;
  border: 1px solid #e0e0dc;
  border-radius: 12px;
  background: #fff;
}
.mrow {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.mrow:last-of-type {
  margin-bottom: 14px;
}
.mk {
  font-size: 0.72rem;
  color: #383a3d;
  font-weight: 500;
}
.mbar {
  height: 6px;
  background: #e4e4e0;
  border-radius: 3px;
  overflow: hidden;
}
.mbar i {
  display: block;
  height: 100%;
  background: #111;
  border-radius: 3px;
}
.mbar-mine i {
  background: var(--accent);
}
.mv {
  font-size: 0.72rem;
  font-weight: 700;
  color: #000;
  white-space: nowrap;
  min-width: 80px;
  text-align: right;
}
.mdelta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #e0e0dc;
  font-size: 0.72rem;
  gap: 8px;
}
.mdelta span:first-child {
  color: #555;
}
.mdelta-val {
  font-weight: 800;
  color: var(--accent);
  white-space: nowrap;
}
.mnote {
  margin-top: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
}

/* ══════════════════════════════════════════════════════════
   FEATURES (old — kept for compat)
══════════════════════════════════════════════════════════ */
.dh-features {
  padding: 120px 0;
  background: var(--bg);
}
.dh-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.dh-feat {
  background: var(--surf);
  border: 1px solid var(--bdr);
  border-radius: var(--r-lg);
  padding: 34px;
  position: relative;
  overflow: hidden;
  transition:
    border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
.dh-feat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(245, 130, 17, 0.03) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  pointer-events: none;
}
.dh-feat:hover {
  border-color: var(--bdr2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.dh-feat:hover::after {
  opacity: 1;
}
.dh-feat-span2 {
  grid-column: span 2;
}
.dh-feat-icon {
  width: 50px;
  height: 50px;
  background: var(--amber-lo);
  border: 1px solid rgba(245, 130, 17, 0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 18px;
}
.dh-feat h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.dh-feat p {
  font-size: 0.92rem;
  color: var(--txt2);
  line-height: 1.75;
}

/* Scan demo */
.dh-feat-demo {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--bdr);
}
.dh-scan-bar {
  background: var(--bg3);
  border: 1px solid var(--bdr);
  border-radius: 10px;
  height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  position: relative;
  overflow: hidden;
}
.dh-scan-beam {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--amber),
    transparent
  );
  animation: fhBeam 2.8s ease-in-out infinite;
}
@keyframes fhBeam {
  0% {
    left: 0;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
.dh-scan-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}
.dh-scan-new {
  background: rgba(255, 255, 255, 0.04);
  color: var(--txt3);
}
.dh-scan-ok {
  background: var(--amber-lo);
  color: var(--amber);
}
.dh-scan-match {
  background: rgba(34, 197, 94, 0.1);
  color: var(--green);
  animation: fhMatchPulse 2s ease infinite;
}
@keyframes fhMatchPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

/* ══════════════════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════════════════ */
.dh-process {
  padding: 64px 0 72px;
  background: var(--bg2);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
}

/* Process section head — left-aligned, compact */
.dh-process .dh-section-head {
  text-align: left;
  max-width: none;
  margin: 0 0 48px;
}
.dh-process .dh-label {
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  margin-bottom: 10px;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
}
.dh-process .dh-label::before {
  content: "// ";
  opacity: 0.55;
}
.dh-process .dh-section-head h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  max-width: 560px;
}
.dh-process .dh-section-head p {
  max-width: 520px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.dh-proc-wrap {
  position: relative;
}
.dh-proc-line {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 1px;
  border-top: 1px dashed #35353a;
}
.dh-proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 28px;
  position: relative;
  z-index: 1;
}
.dh-proc-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.dh-proc-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid #35353a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 18px;
  flex-shrink: 0;
  transition: all var(--dur) var(--ease);
}
.dh-proc-step:hover .dh-proc-num {
  background: var(--amber-lo);
  border-color: rgba(245, 130, 17, 0.35);
}
.dh-proc-step h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.dh-proc-step p {
  font-size: 0.78rem;
  color: var(--txt2);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════
   RESULTS
══════════════════════════════════════════════════════════ */
.dh-results {
  padding: 72px 0 80px;
  background: var(--bg);
}
.dh-results-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: start;
}
.dh-results-left {
  position: sticky;
  top: 100px;
}
.dh-results-left h2 {
  font-family: var(--font-d);
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  font-weight: 800;
  color: var(--txt);
  line-height: 1.15;
  margin: 14px 0;
  letter-spacing: -0.5px;
}
.dh-results-left h2 em {
  font-style: normal;
  color: var(--amber);
}
.dh-results-left p {
  color: var(--txt2);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 26px;
}

.dh-results-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.dh-result-card {
  background: var(--surf);
  border: 1px solid var(--bdr);
  border-radius: var(--r-lg);
  padding: 32px;
  transition:
    border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
.dh-result-card:hover {
  border-color: rgba(245, 130, 17, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.dh-result-top {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 10px;
}
.dh-result-num {
  font-family: var(--font-d);
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--txt);
  line-height: 1;
}
.dh-result-suf {
  font-family: var(--font-d);
  font-size: 1.8rem;
  color: var(--amber);
  line-height: 1;
}
.dh-result-lbl {
  font-size: 0.87rem;
  color: var(--txt2);
  line-height: 1.5;
  margin-bottom: 14px;
}

.dh-result-bar {
  height: 3px;
  background: var(--bdr);
  border-radius: 2px;
  overflow: hidden;
}
.dh-result-fill {
  height: 100%;
  width: var(--w, 0%);
  background: linear-gradient(90deg, var(--red), var(--amber));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dh-result-special {
  border-color: rgba(245, 130, 17, 0.14);
  background: rgba(245, 130, 17, 0.03);
}
.dh-result-note {
  font-size: 0.75rem;
  color: var(--txt3);
  font-style: normal;
  margin-top: 4px;
}

/* Buttons reused in dark sections */
.dh-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: var(--r);
  transition: all var(--dur) var(--ease);
}
.dh-btn-primary:hover {
  background: var(--amber-lt);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--amber-lo);
}
.dh-btn-primary.dh-btn-sm {
  font-size: 0.9rem;
  padding: 11px 20px;
}
.dh-btn-primary.dh-btn-lg {
  font-size: 1.1rem;
  padding: 17px 34px;
}
/* Jasny button z pomarańczową obramówką (np. "Zadzwoń" przy Karolinie) */
.dh-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--amber);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 26px;
  border: 2px solid var(--amber);
  border-radius: var(--r);
  transition: all var(--dur) var(--ease);
}
.dh-btn-outline:hover {
  background: var(--amber-lo);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--amber-lo);
}
.dh-btn-outline.dh-btn-sm {
  font-size: 0.9rem;
  padding: 9px 18px;
}

/* ══════════════════════════════════════════════════════════
   MODAL: Sprawdź dostępność miasta
══════════════════════════════════════════════════════════ */
.city-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 13, 17, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.city-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.city-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 460px;
  width: 100%;
  padding: 32px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  transform: translateY(12px);
  transition: transform 0.2s ease;
}
.city-modal-overlay.open .city-modal {
  transform: translateY(0);
}
.city-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #94a3b8;
  line-height: 1;
  padding: 4px;
}
.city-modal-close:hover {
  color: #0b0d11;
}
.city-modal-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.city-modal-head h3 {
  font-size: 1.4rem;
  margin: 0 0 8px;
  color: #0b0d11;
}
.city-modal-head p {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0 0 22px;
  line-height: 1.5;
}
.city-modal-field {
  margin-bottom: 16px;
}
.city-modal-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}
.city-modal-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.95rem;
  color: #0b0d11;
  background: #fff;
  cursor: pointer;
}
.city-modal-field select:disabled {
  background: #f8fafc;
  color: #94a3b8;
  cursor: not-allowed;
}
.city-modal-field select:focus {
  outline: none;
  border-color: var(--amber);
}
.city-modal-result {
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 4px;
}
.city-modal-result.is-free {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}
.city-modal-result.is-taken {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.city-modal-result.is-soon {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}
.city-modal-foot {
  margin-top: 22px;
  display: flex;
  justify-content: flex-end;
}
.dh-btn-ghost-white {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--dur);
}
.dh-btn-ghost-white:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* ══════════════════════════════════════════════════════════
   CTA
══════════════════════════════════════════════════════════ */
.dh-cta {
  padding: 80px 0;
  background: var(--bg2);
  border-top: 1px solid var(--bdr);
  text-align: center;
}
.dh-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.dh-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 320px;
  background: radial-gradient(
    ellipse,
    rgba(201, 30, 30, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.dh-cta-inner h2 {
  font-family: var(--font-d);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  color: var(--txt);
  line-height: 1.1;
  margin: 16px 0 18px;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}
.dh-cta-inner h2 em {
  font-style: normal;
  color: var(--amber);
}
.dh-cta-inner p {
  color: var(--txt2);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 38px;
  position: relative;
  z-index: 1;
}
.dh-cta-sub {
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: var(--txt) !important;
  margin-bottom: 10px !important;
  letter-spacing: -0.02em;
}
.dh-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-top: 28px;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.dh-footer {
  background: var(--bg);
  border-top: 1px solid var(--bdr);
  padding: 56px 0 32px;
}
.dh-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 60px;
}
.dh-logo-ft {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 14px;
}
.dhn-logo-ft-img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
}
.dh-logo-ft span {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--txt);
}
.dh-footer-brand p {
  color: var(--txt3);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}
.dh-footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--amber-lt);
  margin-bottom: 18px;
}
.dh-footer-col a,
.dh-footer-col p {
  display: block;
  color: var(--txt3);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 10px;
  line-height: 1;
  transition: color var(--dur) var(--ease);
}
.dh-footer-col a:hover {
  color: var(--txt2);
}
.dh-footer-bottom {
  border-top: 1px solid var(--bdr);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.dh-footer-bottom p {
  color: var(--txt3);
  font-size: 0.83rem;
}
.dh-footer-links {
  display: flex;
  gap: 24px;
}
.dh-footer-links a {
  color: var(--txt3);
  text-decoration: none;
  font-size: 0.83rem;
  transition: color var(--dur) var(--ease);
}
.dh-footer-links a:hover {
  color: var(--txt2);
}

/* ══════════════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════════════ */
.dh-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.58s var(--ease),
    transform 0.58s var(--ease);
}
.dh-reveal.dh-in {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-left {
    padding: 64px 40px 48px;
  }
  .hero-dashboard {
    justify-content: center;
    padding: 0 20px 48px;
  }
  .hero-dashboard-window {
    max-width: 100%;
  }
  .pipeline {
    margin: 0 0 80px;
  }
  .float-sms {
    right: 8px;
  }

  .demo-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .dh-results-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .dh-results-left {
    position: static;
  }
  .dh-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .dh-proc-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .dhn-links,
  .dhn-nav-end {
    display: none;
  }
  .dhn-burger {
    display: flex;
  }
  .dhn-nav-wrap {
    gap: 0;
  }

  .dh-features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .dh-feat-span2 {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .dh-container {
    padding: 0 20px;
  }
  .wrap {
    padding: 0 20px;
  }
  .hero-left {
    padding: 48px 0 32px;
  }
  .hero-dashboard {
    padding: 0 0 32px;
  }
  .hero-features {
    flex-wrap: wrap;
    gap: 12px;
  }

  .demo {
    padding: 72px 0 80px;
  }
  .demo-grid {
    gap: 28px;
  }

  .dh-feat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feat-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .dh-stats-row {
    flex-wrap: wrap;
  }
  .dh-stat-item {
    padding: 18px 28px;
    min-width: 40%;
  }
  .dh-stat-sep {
    height: 28px;
  }
  .dh-stat-big {
    font-size: 2rem;
  }

  .dh-features-grid {
    grid-template-columns: 1fr;
  }
  .dh-feat-span2 {
    grid-column: span 1;
  }
  .dh-feat-grid {
    grid-template-columns: 1fr;
  }
  .feat-hero {
    padding: 28px;
  }

  .dh-proc-line {
    display: none;
  }
  /* Mobile: 1 krok na rząd = numer | nagłówek | opis (równe kolumny) */
  .dh-proc-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .dh-proc-step {
    display: grid;
    grid-template-columns: 32px 34% 1fr;
    align-items: start;
    column-gap: 12px;
    row-gap: 0;
  }
  .dh-proc-num {
    width: 32px;
    height: 32px;
    font-size: 0.65rem;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .dh-proc-step h3 {
    font-size: 0.85rem;
    margin-bottom: 0;
  }
  .dh-proc-step p {
    font-size: 0.78rem;
  }

  .dh-results-right {
    grid-template-columns: 1fr;
  }
  .dh-footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .dh-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .float-sms {
    display: none;
  }
}

@media (max-width: 520px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }
  .hero h1 {
    font-size: 2.4rem;
    letter-spacing: -1px;
  }
  .dh-stat-sep {
    display: none;
  }
  .dh-stat-item {
    min-width: 45%;
  }
  .dh-cta-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .dh-btn-primary.dh-btn-lg {
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════════════════
   FOOTER IMAGE FIX
══════════════════════════════════════════════════════════ */
.dh-ft-img,
.dh-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   LABEL LIGHT (plain text // prefix, light bg sections)
══════════════════════════════════════════════════════════ */
.dh-label-light {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  color: var(--accent) !important;
  font-size: 0.65rem !important;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.dh-label-light::before {
  content: "// ";
  opacity: 0.55;
}

/* ══════════════════════════════════════════════════════════
   KAROLINA / ROZMOWA
══════════════════════════════════════════════════════════ */
.dh-karolina {
  padding: 72px 0 80px;
  background: #ffffff;
}
.dh-karolina-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: center;
}
.dh-karol-portrait {
  background: #f8f5f2;
  border: 1px solid #ede8e3;
  border-radius: 16px;
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background-image: radial-gradient(
    circle at 50% 38%,
    rgba(200, 106, 11, 0.22) 0%,
    rgba(200, 106, 11, 0.06) 45%,
    transparent 70%
  );
}
.dh-karol-portrait::before {
  content: "";
  position: absolute;
  top: 14%;
  left: 50%;
  transform: translateX(-50%);
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #ffcfb3, #f4a07a 60%, #ea7a4a);
  box-shadow: 0 8px 32px rgba(200, 106, 11, 0.18);
}
.dh-karol-portrait::after {
  content: "ZDJĘCIE OPIEKUNA";
  position: absolute;
  top: 14%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.88);
  padding-top: 22%;
}
.dh-karol-portrait--photo {
  background-image: none;
}
.dh-karol-portrait--photo::before,
.dh-karol-portrait--photo::after {
  display: none;
}
.dh-karol-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.dh-karol-card {
  position: relative;
  z-index: 2;
  background: #fff;
  border: 1px solid #e0e0db;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
}
.dh-karol-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #111;
}
.dh-karol-role {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #aaa;
  margin-top: 3px;
}
.dh-karol-avail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
  white-space: nowrap;
}
.dh-karol-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
  flex-shrink: 0;
}
.dh-karol-content {
  display: flex;
  flex-direction: column;
}
.dh-karol-content h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #0a0a0a;
  margin: 16px 0 20px;
}
.dh-karol-content h2 em {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
}
.dh-karol-content > p {
  font-size: 0.94rem;
  color: #555;
  line-height: 1.78;
  margin-bottom: 24px;
  max-width: 520px;
}
.dh-karol-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
.dh-karol-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: #111;
  line-height: 1.5;
}
.dh-karol-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 5px;
}
.dh-karol-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
/* Telefon: na desktopie plain text, na mobile przycisk tel: */
.dh-call-mobile {
  display: none;
}
.dh-call-desktop {
  font-size: 0.95rem;
  color: #64748b;
}
.dh-call-desktop strong {
  color: #0b0d11;
  font-weight: 700;
}
@media (max-width: 768px) {
  .dh-call-mobile {
    display: inline-flex;
  }
  .dh-call-desktop {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════
   CITIES / WYŁĄCZNOŚĆ MIAST
══════════════════════════════════════════════════════════ */
.dh-cities {
  padding: 64px 0 80px;
  background: #ffffff;
}
.dh-city-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.dh-city-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.dh-city-text h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #0a0a0a;
  margin: 12px 0 18px;
}
.dh-city-text h2 em,
.dh-city-text h2 .em {
  font-style: normal;
  color: var(--accent);
  font-weight: 800;
}
.dh-city-text > p {
  font-size: 0.94rem;
  color: #555;
  line-height: 1.78;
  margin-bottom: 18px;
  max-width: 420px;
}
.dh-city-text .feat-bullets {
  max-width: 420px;
}
.dh-city-cta {
  margin-top: 26px;
}
.dh-city-list {
  background: #fff;
  border: 1px solid #e0e0db;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}
.dh-city-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 13px 18px;
  border-bottom: 1px solid #f0efeb;
  transition: background 0.15s;
}
.dh-city-row:last-child {
  border-bottom: none;
}
.dh-city-row:hover {
  background: #fafaf8;
}
.dh-city-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: #111;
  display: flex;
  align-items: center;
  gap: 7px;
}
.dh-city-code {
  font-size: 0.66rem;
  font-weight: 600;
  color: #ccc;
  letter-spacing: 0.03em;
}
.dh-city-stat {
  font-size: 0.7rem;
  color: #bbb;
  font-weight: 500;
  white-space: nowrap;
}
.dh-city-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.dh-city-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dh-pill-free {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
}
.dh-pill-free .dh-city-dot {
  background: #16a34a;
}
.dh-pill-taken {
  background: rgba(0, 0, 0, 0.05);
  color: #999;
}
.dh-pill-taken .dh-city-dot {
  background: #bbb;
}
.dh-pill-last {
  background: rgba(200, 106, 11, 0.1);
  color: #c86a0b;
}
.dh-pill-last .dh-city-dot {
  background: #c86a0b;
}

/* ── Responsive additions for new sections ─── */
@media (max-width: 1100px) {
  .dh-karolina-grid {
    grid-template-columns: 280px 1fr;
    gap: 48px;
  }
  .dh-city-grid {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .dh-karolina {
    padding: 64px 0 80px;
  }
  .dh-karolina-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .dh-karol-portrait {
    display: flex;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    order: -1;
  }

  .dh-cities {
    padding: 56px 0 72px;
  }
  .dh-city-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ══════════════════════════════════════════════════════════
   MOBILE RESPONSIVENESS — comprehensive fixes
══════════════════════════════════════════════════════════ */

/* Prevent horizontal scroll */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

@media (max-width: 768px) {
  /* Pipeline — remove left margin when stacked below hero */
  .pipeline {
    margin: 32px 0 48px 0;
  }

  /* Section padding reductions */
  .dh-feat-section {
    padding: 48px 0 56px;
  }
  .dh-process {
    padding: 40px 0 52px;
  }
  .dh-cta {
    padding: 56px 0;
  }

  /* Karolina CTA — stack buttons full-width */
  .dh-karol-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .dh-karol-ctas .dh-btn-primary,
  .dh-karol-ctas .dh-btn-outline,
  .dh-karol-ctas .btn-ghost {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  /* Demo foot — full-width buttons */
  .demo-foot .btn {
    width: 100%;
    justify-content: center;
  }

  /* City list — smaller row padding */
  .dh-city-row {
    padding: 11px 14px;
    gap: 10px;
  }

  /* Pipeline — fit inside viewport */
  .pipeline {
    max-width: 100%;
  }
  .pipe-row {
    padding: 8px 12px;
    gap: 8px;
  }
  .pipe-row.active {
    padding-left: 10px;
  }
  /* Allow text to wrap on narrow screens */
  .v {
    white-space: normal;
    font-size: 0.73rem;
    line-height: 1.4;
  }
  .k {
    font-size: 0.5rem;
  }
  .pipe-tag {
    font-size: 0.52rem;
    padding: 2px 6px;
  }
  .pipeline-title {
    font-size: 0.58rem;
    letter-spacing: 0.8px;
  }
  .pipeline-tabs span {
    font-size: 0.6rem;
    padding: 3px 8px;
  }
  .pipeline-foot {
    padding: 8px 12px;
  }
}

@media (max-width: 520px) {
  /* Hero headline — smaller on small phones */
  .hero h1 {
    font-size: 1.85rem;
    letter-spacing: -0.03em;
    overflow-wrap: break-word;
  }
  .hero-sub,
  .hero-audience,
  .hero-note {
    max-width: 100%;
  }

  /* Process — 1 krok na rząd (numer | nagłówek | opis) */
  .dh-proc-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Section paddings — further reduction */
  .dh-feat-section {
    padding: 36px 0 44px;
  }
  .dh-process {
    padding: 32px 0 40px;
  }
  .dh-karolina {
    padding: 40px 0 48px;
  }
  .dh-cities {
    padding: 36px 0 48px;
  }
  .dh-cta {
    padding: 48px 0;
  }
  .demo {
    padding: 48px 0 56px;
  }

  /* Cards inner padding */
  .feat-hero {
    padding: 20px;
  }
  .feat {
    padding: 20px;
  }

  /* Cities headline */
  .dh-city-text h2 {
    font-size: 1.75rem;
  }

  /* CTA headline */
  .dh-cta-inner h2 {
    font-size: 1.8rem;
  }

  /* Hero meta — smaller */
  .hero-meta {
    font-size: 0.72rem;
  }

  /* City row — hide stat on tiny screens */
  .dh-city-stat {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════
   SCROLL TO TOP BUTTON
══════════════════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 900;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #111;
  color: #fff;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, visibility 0s linear 0.2s, transform 0.2s ease, background 0.15s;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.2s ease, visibility 0s linear 0s, transform 0.2s ease, background 0.15s;
}
.scroll-top:hover {
  background: #f58211;
}

/* ══════════════════════════════════════════════════════════
   REZULTATY
══════════════════════════════════════════════════════════ */
.dh-rezultaty {
  padding: 72px 0 80px;
  background: #fafaf9;
  border-top: 1px solid #e8e8e4;
}
.dh-rez-head {
  margin-bottom: 40px;
}
.dh-rez-head h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #0a0a0a;
  margin-top: 10px;
}
.dh-rez-head h2 em {
  font-style: normal;
  color: var(--accent);
}
.dh-rez-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.dh-rez-card {
  background: #ffffff;
  border: 1px solid #e8e8e4;
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dh-rez-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(245, 130, 17, 0.08);
  border: 1px solid rgba(245, 130, 17, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.dh-rez-card p {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.72;
  margin: 0;
}

/* Social proof / opinie */
.dh-social-proof {
  border-top: 1px solid #e8e8e4;
  padding-top: 52px;
}
.dh-sp-label-wrap {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dh-sp-label {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 800;
  color: #0a0a0a;
  letter-spacing: -0.03em;
  margin: 0;
}
.dh-sp-label em {
  font-style: normal;
  color: var(--accent);
}
.dh-sp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
/* Speech bubble card */
.dh-sp-bubble {
  background: #0f1218;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s;
}
.dh-sp-bubble:hover {
  border-color: rgba(245, 130, 17, 0.25);
}
.dh-sp-qmark {
  color: var(--amber);
  opacity: 0.7;
  flex-shrink: 0;
}
.dh-sp-quote {
  font-size: 0.92rem;
  font-weight: 500;
  color: #e4e8f0;
  line-height: 1.65;
  margin: 0;
  flex-grow: 1;
}
.dh-sp-author {
  font-size: 0.75rem;
  color: #8b95a8;
  font-weight: 500;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* ══════════════════════════════════════════════════════════
   DLACZEGO TO DZIAŁA
══════════════════════════════════════════════════════════ */
.dh-why {
  padding: 72px 0 80px;
  background: #0f1117;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.dh-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.dh-why-left .dh-label {
  color: var(--accent);
  opacity: 0.85;
  margin-bottom: 16px;
  display: block;
}
.dh-why-left h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 32px;
}
.dh-why-left h2 em {
  font-style: normal;
  color: var(--accent);
}
.dh-why-closing {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin: 0;
}
.dh-why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dh-why-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.dh-why-list li:last-child {
  border-bottom: none;
}
.dh-why-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  width: 24px;
}

/* Responsive */
@media (max-width: 768px) {
  .dh-rez-grid,
  .dh-sp-grid {
    grid-template-columns: 1fr;
  }
  .dh-why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 520px) {
  .dh-rezultaty {
    padding: 48px 0 56px;
  }
  .dh-why {
    padding: 48px 0 56px;
  }
}

em, .em { font-style: normal; }

/* ══════════════════════════════════════════════════════════
   CO ZYSKUJESZ — intro + efekt
══════════════════════════════════════════════════════════ */
.dh-rez-intro {
  font-size: 1rem;
  color: #444;
  line-height: 1.75;
  max-width: 760px;
  margin: 0 0 34px;
}
.dh-rez-effect {
  margin-top: 8px;
  background: rgba(245, 130, 17, 0.06);
  border: 1px solid rgba(245, 130, 17, 0.18);
  border-radius: 14px;
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dh-rez-effect-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.dh-rez-effect p {
  font-size: 1.02rem;
  font-weight: 500;
  color: #0a0a0a;
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════
   DLA KOGO
══════════════════════════════════════════════════════════ */
.dh-audience {
  padding: 72px 0 80px;
  background: #ffffff;
  border-top: 1px solid #e8e8e4;
}
.dh-aud-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.dh-aud-card {
  grid-column: span 2;
  background: #fafaf9;
  border: 1px solid #e8e8e4;
  border-radius: 14px;
  padding: 26px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
/* 5 kafelków: 3 w górnym rzędzie, 2 rozciągnięte na pół szerokości w dolnym */
.dh-aud-card:nth-child(4) { grid-column: 1 / span 3; }
.dh-aud-card:nth-child(5) { grid-column: 4 / span 3; }
.dh-aud-card:hover {
  border-color: #d0d0c8;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}
.dh-aud-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.dh-aud-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 900px) {
  .dh-aud-grid {
    grid-template-columns: 1fr 1fr;
  }
  .dh-aud-card,
  .dh-aud-card:nth-child(4),
  .dh-aud-card:nth-child(5) {
    grid-column: auto;
  }
}
@media (max-width: 600px) {
  .dh-aud-grid {
    grid-template-columns: 1fr;
  }
  .dh-audience {
    padding: 48px 0 56px;
  }
}

/* ══════════════════════════════════════════════════════════
   SCENARIUSZE UŻYCIA
══════════════════════════════════════════════════════════ */
.dh-scenarios {
  padding: 72px 0 80px;
  background: #fafaf9;
  border-top: 1px solid #e8e8e4;
}
.dh-scen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.dh-scen-card {
  background: #ffffff;
  border: 1px solid #e8e8e4;
  border-radius: 16px;
  padding: 30px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.dh-scen-card:hover {
  border-color: #d0d0c8;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}
.dh-scen-num {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.dh-scen-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 10px;
}
.dh-scen-card p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 768px) {
  .dh-scen-grid {
    grid-template-columns: 1fr;
  }
  .dh-scenarios {
    padding: 48px 0 56px;
  }
}

/* Dlaczego to działa — tekst narracyjny (prawa kolumna) */
.dh-why-text p {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  margin-bottom: 18px;
}
.dh-why-text p:last-child {
  margin-bottom: 0;
}
.dh-why-text strong {
  color: #ffffff;
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════
   THEME TOGGLE (button)
══════════════════════════════════════════════════════════ */
.ch-theme-toggle {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e0e0db;
  color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.15s ease, background 0.15s, border-color 0.15s, color 0.15s;
}
.ch-theme-toggle:hover {
  transform: translateY(-2px);
}
.ch-theme-toggle .ch-sun { display: none; }
.ch-theme-toggle .ch-moon { display: block; }
html[data-theme="dark"] .ch-theme-toggle {
  background: #22222e;
  border-color: #3e3e4e;
  color: #ffad4d;
}
html[data-theme="dark"] .ch-theme-toggle .ch-moon { display: none; }
html[data-theme="dark"] .ch-theme-toggle .ch-sun { display: block; }

/* ══════════════════════════════════════════════════════════
   DARK MODE — przemalowanie jasnych sekcji
   (sekcje już ciemne: demo, why, process, cta, footer — bez zmian)
══════════════════════════════════════════════════════════ */
html[data-theme="dark"] body { background: #191921; color: #ebeced; }

/* NAV */
html[data-theme="dark"] .dhn-nav { background: #191921; border-bottom-color: #2c2c3a; }
html[data-theme="dark"] .dhn-nav-shadow { box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5); }
html[data-theme="dark"] .dhn-logo-name { color: #ebeced; }
html[data-theme="dark"] .dhn-links a { color: #b8b9c0; }
html[data-theme="dark"] .dhn-links a:hover { color: #ffffff; }
html[data-theme="dark"] .dhn-skan { color: #dddee2; }
html[data-theme="dark"] .dhn-login-btn { background: #22222e; color: #ebeced; border-color: #3e3e4e; }
html[data-theme="dark"] .dhn-login-btn:hover { background: #2c2c3a; border-color: #8b8c96; }
html[data-theme="dark"] .dhn-burger { border-color: #2c2c3a; background: transparent; }
html[data-theme="dark"] .dhn-burger:hover { background: rgba(255, 255, 255, 0.05); border-color: #3e3e4e; }
html[data-theme="dark"] .dhn-burger span { background: #dddee2; }

/* Mobile menu */
html[data-theme="dark"] .dhn-mobile { background: rgba(18, 18, 24, 0.75); }
html[data-theme="dark"] .dhn-mobile-bar { border-bottom-color: rgba(255, 255, 255, 0.08); }
html[data-theme="dark"] .dhn-mobile a { color: #ececef; border-bottom-color: rgba(255, 255, 255, 0.08); }
html[data-theme="dark"] .dhn-m-icon { background: rgba(255, 255, 255, 0.07); color: #dddee2; }
html[data-theme="dark"] .dhn-mobile-close { background: rgba(255, 255, 255, 0.1); color: #dddee2; }

/* HERO */
html[data-theme="dark"] .hero { background: #141419; }
html[data-theme="dark"] .hero h1 { color: #f4f5f7; }
html[data-theme="dark"] .hero-sub { color: #b8b9c0; }
html[data-theme="dark"] .hero-audience { color: #dddee2; }
html[data-theme="dark"] .hero-note { color: #8b8c96; border-top-color: #2c2c3a; }
html[data-theme="dark"] .hero-dashboard-window { border-color: #2c2c3a; }
html[data-theme="dark"] .btn-ghost { color: #dddee2; border-color: #3e3e4e; background: transparent; }
html[data-theme="dark"] .btn-ghost:hover { color: #ffffff; border-color: #8b8c96; background: rgba(255, 255, 255, 0.05); }

/* FEATURES */
html[data-theme="dark"] .dh-feat-section { background: #191921; border-top-color: #2c2c3a; border-bottom-color: #2c2c3a; }
html[data-theme="dark"] .dh-feat-section .section-head h2 { color: #ebeced; }
html[data-theme="dark"] .dh-feat-lede { color: #b8b9c0 !important; }
html[data-theme="dark"] .feat { background: #22222e; border-color: #2c2c3a; }
html[data-theme="dark"] .feat:hover { border-color: #3e3e4e; box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45); }
html[data-theme="dark"] .feat h3 { color: #ebeced; }
html[data-theme="dark"] .feat p { color: #b8b9c0; }
html[data-theme="dark"] .feat-num { color: #8b8c96; }
html[data-theme="dark"] .feat-bullets li { color: #b8b9c0; }

/* CITIES */
html[data-theme="dark"] .dh-cities { background: #191921; }
html[data-theme="dark"] .dh-city-text h2 { color: #ebeced; }
html[data-theme="dark"] .dh-city-text > p { color: #b8b9c0; }
html[data-theme="dark"] .dh-city-list { background: #22222e; border-color: #2c2c3a; box-shadow: none; }
html[data-theme="dark"] .dh-city-row { border-bottom-color: #2c2c3a; }
html[data-theme="dark"] .dh-city-row:hover { background: rgba(255, 255, 255, 0.03); }
html[data-theme="dark"] .dh-city-name { color: #ebeced; }
html[data-theme="dark"] .dh-city-code { color: #8b8c96; }
html[data-theme="dark"] .dh-city-stat { color: #8b8c96; }
html[data-theme="dark"] .dh-pill-taken { background: rgba(255, 255, 255, 0.07); color: #b8b9c0; }
html[data-theme="dark"] .dh-pill-taken .dh-city-dot { background: #8b8c96; }

/* REZULTATY */
html[data-theme="dark"] .dh-rezultaty { background: #141419; border-top-color: #2c2c3a; }
html[data-theme="dark"] .dh-rez-head h2 { color: #ebeced; }
html[data-theme="dark"] .dh-rez-intro { color: #b8b9c0; }
html[data-theme="dark"] .dh-rez-card { background: #22222e; border-color: #2c2c3a; }
html[data-theme="dark"] .dh-rez-card p { color: #dddee2; }
html[data-theme="dark"] .dh-rez-effect p { color: #ebeced; }

/* DLA KOGO */
html[data-theme="dark"] .dh-audience { background: #191921; border-top-color: #2c2c3a; }
html[data-theme="dark"] .dh-aud-card { background: #22222e; border-color: #2c2c3a; }
html[data-theme="dark"] .dh-aud-card:hover { border-color: #3e3e4e; box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45); }
html[data-theme="dark"] .dh-aud-card h3 { color: #ebeced; }
html[data-theme="dark"] .dh-aud-card p { color: #b8b9c0; }

/* SCENARIUSZE */
html[data-theme="dark"] .dh-scenarios { background: #141419; border-top-color: #2c2c3a; }
html[data-theme="dark"] .dh-scen-card { background: #22222e; border-color: #2c2c3a; }
html[data-theme="dark"] .dh-scen-card:hover { border-color: #3e3e4e; box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45); }
html[data-theme="dark"] .dh-scen-card h3 { color: #ebeced; }
html[data-theme="dark"] .dh-scen-card p { color: #b8b9c0; }

/* KAROLINA */
html[data-theme="dark"] .dh-karolina { background: #191921; }
html[data-theme="dark"] .dh-karol-content h2 { color: #ebeced; }
html[data-theme="dark"] .dh-karol-content > p { color: #b8b9c0; }
html[data-theme="dark"] .dh-karol-points li { color: #dddee2; }
html[data-theme="dark"] .dh-karol-card { background: #22222e; border-color: #2c2c3a; }
html[data-theme="dark"] .dh-karol-name { color: #ebeced; }
html[data-theme="dark"] .dh-call-desktop { color: #b8b9c0; }
html[data-theme="dark"] .dh-call-desktop strong { color: #ebeced; }
html[data-theme="dark"] .dh-btn-outline { background: #22222e; }

/* CITY MODAL */
html[data-theme="dark"] .city-modal { background: #22222e; }
html[data-theme="dark"] .city-modal-head h3 { color: #ebeced; }
html[data-theme="dark"] .city-modal-head p { color: #b8b9c0; }
html[data-theme="dark"] .city-modal-field label { color: #dddee2; }
html[data-theme="dark"] .city-modal-field select { background: #191921; border-color: #3e3e4e; color: #ebeced; }
html[data-theme="dark"] .city-modal-field select:disabled { background: #1c1c25; color: #8b8c96; }
html[data-theme="dark"] .city-modal-close { color: #8b8c96; }
html[data-theme="dark"] .city-modal-close:hover { color: #ebeced; }

/* ══════════════════════════════════════════════════════════
   Chipy pakietów (modal — na jasnym boksie wyniku)
══════════════════════════════════════════════════════════ */
.cm-pkgs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}
.cm-pkg {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 2px 8px;
  border-radius: 999px;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.06);
  color: #334155;
}
.cm-pkg-free {
  background: rgba(22, 163, 74, 0.14);
  color: #15803d;
}
.cm-pkg-taken {
  color: #94a3b8;
  text-decoration: line-through;
}

/* Dark mode — chip „zajęte" na liście miast */
html[data-theme="dark"] .dh-pkg-taken {
  background: rgba(255, 255, 255, 0.06);
  color: #6b6c75;
}
