/* ============================================================
   Bingo — design system (spójny z portalem oferty.bingo.pl)
   Mobile-first. Bez zewnętrznych zależności.
   ============================================================ */

/* ── Fonty lokalne (bez Google Fonts = brak blokera i third-party) ──
   Dwa zakresy: latin + latin-ext (polskie znaki diakrytyczne).        */
@font-face {
  font-family: 'Inter'; font-weight: 400; font-style: normal; font-display: swap;
  src: url('/assets/fonts/inter-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2074, U+20AC, U+2122, U+2212;
}
@font-face {
  font-family: 'Inter'; font-weight: 400; font-style: normal; font-display: swap;
  src: url('/assets/fonts/inter-ext-400.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter'; font-weight: 600; font-style: normal; font-display: swap;
  src: url('/assets/fonts/inter-600.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2074, U+20AC, U+2122, U+2212;
}
@font-face {
  font-family: 'Inter'; font-weight: 600; font-style: normal; font-display: swap;
  src: url('/assets/fonts/inter-ext-600.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter'; font-weight: 700; font-style: normal; font-display: swap;
  src: url('/assets/fonts/inter-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2074, U+20AC, U+2122, U+2212;
}
@font-face {
  font-family: 'Inter'; font-weight: 700; font-style: normal; font-display: swap;
  src: url('/assets/fonts/inter-ext-700.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  /* marka */
  --acc:      #1a3b5c;   /* granat Bingo */
  --acc-d:    #0f2540;
  --acc-mid:  #2d5a8e;
  --acc-l:    #e8f0f8;
  --gold:     #b8892a;   /* akcent premium */
  --gold-l:   #fdf7ec;
  --green:    #1b6b40;   /* potwierdzenia, korzyści */
  --green-l:  #e6f4ec;

  /* neutralne */
  --text:     #111827;
  --muted:    #5b6472;
  --light:    #9ca3af;
  --border:   #e4e3df;
  --bg:       #ffffff;
  --bg-alt:   #f6f5f2;
  --card:     #ffffff;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --r:      10px;
  --r-lg:   16px;
  --shadow:   0 1px 3px rgba(15,37,64,.05), 0 4px 16px rgba(15,37,64,.07);
  --shadow-h: 0 8px 32px rgba(15,37,64,.15);
  --wrap:  1180px;
  --gap:   clamp(2.5rem, 6vw, 5rem);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--acc); text-decoration: none; }
a:hover { color: var(--acc-mid); }

/* Widoczny focus — dostępność klawiaturowa */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--acc-mid);
  outline-offset: 2px;
  border-radius: 4px;
}

h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; letter-spacing: -.02em; color: var(--text); }
h1 { font-size: clamp(2rem, 5.2vw, 3.35rem); }
h2 { font-size: clamp(1.6rem, 3.8vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.4rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.section { padding-block: var(--gap); }
.section--alt { background: var(--bg-alt); }
.section--acc { background: var(--acc); color: #fff; }
.section--acc h2, .section--acc h3 { color: #fff; }

.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700;
  /* ciemniejszy zloty niz --gold: #b8892a mial ~3:1 na jasnych tlach, #7d5c12 daje 5.8:1 */
  letter-spacing: .09em; text-transform: uppercase; color: #7d5c12;
  margin-bottom: .75rem;
}
.section-head { max-width: 720px; margin-bottom: 2.75rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.06rem; margin-top: .9rem; }

/* ── Przyciski (min. 44px wysokości klikalnej) ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px; padding: .75rem 1.6rem;
  font-family: inherit; font-size: 1rem; font-weight: 600; line-height: 1.2;
  border: 2px solid transparent; border-radius: var(--r); cursor: pointer;
  transition: background .16s, color .16s, border-color .16s, transform .12s;
  text-align: center; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--acc); color: #fff; }
.btn--primary:hover { background: var(--acc-d); color: #fff; }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: #9c7423; color: #fff; }
.btn--ghost { background: transparent; color: var(--acc); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--acc); background: var(--acc-l); }
.btn--light { background: #fff; color: var(--acc); }
.btn--light:hover { background: var(--acc-l); color: var(--acc-d); }
.btn--wide { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ── Nagłówek ── */
.hdr {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.hdr .wrap { max-width: 1280px; }
.hdr-inner { display: flex; align-items: center; gap: 1rem; height: 68px; }
.hdr-logo { flex-shrink: 0; display: flex; align-items: center; min-height: 44px; }
.hdr-logo img { height: 26px; width: auto; }
.hdr-nav { display: none; }
.hdr-right { margin-left: auto; display: flex; align-items: center; gap: .6rem; }
.hdr-right .btn { display: none; }
@media (min-width: 1000px) { .hdr-right .btn { display: inline-flex; } }
.hdr-phone { display: none; font-weight: 700; color: var(--acc); white-space: nowrap; align-items: center; min-height: 44px; }

.burger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px; border: 0; background: none; cursor: pointer;
  -webkit-tap-highlight-color: transparent; border-radius: 10px;
}
.burger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s, opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; border-top: 1px solid var(--border); background: #fff;
  padding: 1rem 0 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: .85rem 0; font-size: 1.05rem; font-weight: 600;
  color: var(--text); border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { margin-top: 1.1rem; }

@media (min-width: 1000px) {
  .hdr-inner { height: 76px; }
  .hdr-logo img { height: 30px; width: auto; }
  .hdr-nav { display: flex; align-items: center; gap: .15rem; margin-left: 1.75rem; }
  .hdr-nav a {
    padding: .5rem .85rem; font-size: .95rem; font-weight: 500; color: #414b59;
    border-radius: 6px; white-space: nowrap;
  }
  .hdr-nav a:hover { background: #f0f1f3; color: var(--text); }
  .hdr-nav a.active { color: var(--acc); font-weight: 600; }
  .hdr-phone { display: flex; padding-right: 1rem; border-right: 1px solid var(--border); }
  .burger, .mobile-menu { display: none !important; }
}

/* ── Hero ── */
.hero { padding-block: clamp(3rem, 7vw, 5.5rem); background: linear-gradient(180deg, var(--acc-l) 0%, #fff 100%); }
.hero h1 { margin-bottom: 1.15rem; }
.hero-lead { font-size: clamp(1.05rem, 2.2vw, 1.25rem); color: var(--muted); max-width: 620px; margin-bottom: 1.9rem; }
.hero-grid { display: grid; gap: 2.5rem; }
.hero-media img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  border-radius: var(--r-lg); box-shadow: var(--shadow-h);
}
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 2.25rem; }
.hero-trust div { min-width: 90px; }
.hero-trust b { display: block; font-size: 1.6rem; color: var(--acc); line-height: 1.1; }
.hero-trust span { font-size: .87rem; color: var(--muted); }
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 3.5rem; }
}

/* ── Karty ścieżek (właściciel / najemca) ── */
.paths { display: grid; gap: 1.25rem; }
@media (min-width: 800px) { .paths { grid-template-columns: 1fr 1fr; } }
.path-card {
  display: flex; flex-direction: column; gap: .85rem;
  padding: 2rem 1.75rem; background: var(--card);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow); transition: box-shadow .2s, transform .2s, border-color .2s;
}
.path-card:hover { box-shadow: var(--shadow-h); transform: translateY(-2px); border-color: var(--acc-mid); }
.path-card h3 { font-size: 1.35rem; }
.path-card p { color: var(--muted); flex: 1; }
.path-card .btn { align-self: flex-start; }
.path-icon {
  width: 48px; height: 48px; display: grid; place-items: center;
  background: var(--acc-l); color: var(--acc); border-radius: 12px;
}

/* ── Siatka kart ── */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 700px)  { .grid--2, .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  padding: 1.75rem; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--shadow);
}
.card h3 { margin-bottom: .6rem; }
.card p { color: var(--muted); font-size: .97rem; }
.card-icon {
  width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 1.1rem;
  background: var(--green-l); color: var(--green); border-radius: 10px;
}

/* ── Kroki ── */
.steps { display: grid; gap: 1.75rem; counter-reset: step; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; padding-top: 3.25rem; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: 0; left: 0;
  width: 44px; height: 44px; display: grid; place-items: center;
  background: var(--acc); color: #fff; border-radius: 50%;
  font-weight: 700; font-size: 1.05rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.step p { color: var(--muted); font-size: .95rem; }

/* ── Cennik ── */
.price-cards { display: grid; gap: 1.5rem; }
@media (min-width: 800px) { .price-cards { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  padding: 2rem 1.75rem; background: var(--card);
  border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.price-card--featured { border: 2px solid var(--gold); position: relative; }
.price-card--featured::after {
  content: 'Najczęściej wybierane'; position: absolute; top: -13px; left: 50%;
  transform: translateX(-50%); background: var(--gold); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: .3rem .85rem; border-radius: 20px; white-space: nowrap;
}
.price-card h3 { font-size: 1.2rem; }
.price-val { font-size: 2.5rem; font-weight: 700; color: var(--acc); line-height: 1.1; margin: .75rem 0 .25rem; }
.price-val small { font-size: .95rem; font-weight: 500; color: var(--muted); }
.price-note { font-size: .88rem; color: var(--muted); margin-bottom: 1.25rem; }
.price-card ul { list-style: none; margin-bottom: 1.5rem; flex: 1; }
.price-card li { position: relative; padding-left: 1.75rem; margin-bottom: .6rem; font-size: .96rem; }
.price-card li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--green); font-weight: 700;
}

/* ── Opinie ── */
.quote {
  padding: 1.75rem; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--shadow);
}
.quote p { font-size: 1rem; font-style: italic; color: #2b3442; }
.quote footer { margin-top: 1rem; font-size: .9rem; font-weight: 600; color: var(--muted); font-style: normal; }
.stars { color: var(--gold); letter-spacing: .1em; margin-bottom: .75rem; }

/* ── Blog ── */
.post-card {
  display: flex; flex-direction: column; background: var(--card);
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: box-shadow .2s, transform .2s;
}
.post-card:hover { box-shadow: var(--shadow-h); transform: translateY(-2px); }
.post-card img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.post-card-body { padding: 1.4rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.post-card h3 { font-size: 1.12rem; }
.post-card h3 a { color: var(--text); }
.post-card h3 a:hover { color: var(--acc); }
.post-card p { font-size: .94rem; color: var(--muted); flex: 1; }
.post-meta { font-size: .82rem; color: var(--light); display: flex; gap: .6rem; flex-wrap: wrap; }
.badge {
  display: inline-block; padding: .22rem .7rem; font-size: max(.74rem, 12.5px); font-weight: 600;
  background: var(--acc-l); color: var(--acc); border-radius: 20px;
}

/* ── Treść artykułu / strony ── */
.prose { max-width: 760px; font-size: 1.08rem; }
.prose h2 { margin: 2.5rem 0 1rem; font-size: clamp(1.45rem, 3vw, 1.85rem); }
.prose h3 { margin: 2rem 0 .75rem; }
.prose p, .prose ul, .prose ol { margin-bottom: 1.25rem; }
.prose ul, .prose ol { padding-left: 1.4rem; }
.prose li { margin-bottom: .5rem; }
.prose img { border-radius: var(--r); margin: 1.75rem 0; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote {
  margin: 1.75rem 0; padding: 1.1rem 1.5rem;
  border-left: 4px solid var(--gold); background: var(--gold-l); border-radius: 0 var(--r) var(--r) 0;
}
.prose table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .96rem; }
.prose th, .prose td { padding: .7rem .9rem; border: 1px solid var(--border); text-align: left; }
.prose th { background: var(--bg-alt); font-weight: 600; }
.table-scroll { overflow-x: auto; }

/* ── FAQ (natywny accordion) ── */
.faq details {
  border: 1px solid var(--border); border-radius: var(--r);
  background: var(--card); margin-bottom: .75rem;
}
.faq summary {
  padding: 1.1rem 1.35rem; font-weight: 600; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; gap: 1rem;
  min-height: 44px; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.5rem; color: var(--acc); line-height: 1; }
.faq details[open] summary::after { content: '−'; }
.faq details[open] summary { border-bottom: 1px solid var(--border); }
.faq-body { padding: 1.1rem 1.35rem; color: var(--muted); }

/* ── Formularze ── */
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-weight: 600; font-size: .94rem; margin-bottom: .4rem; }
.field input, .field textarea, .field select {
  width: 100%; min-height: 48px; padding: .7rem .9rem;
  font-family: inherit; font-size: 1rem; color: var(--text);
  border: 1px solid var(--border); border-radius: var(--r); background: #fff;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--acc-mid); }
.field .err { display: block; margin-top: .35rem; font-size: .86rem; color: #b42318; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #b42318; }
.hint { font-size: .86rem; color: var(--muted); margin-top: .3rem; }
.alert { padding: 1rem 1.25rem; border-radius: var(--r); margin-bottom: 1.5rem; font-size: .96rem; }
.alert--ok  { background: var(--green-l); color: #14532d; border: 1px solid #bbe0c9; }
.alert--err { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ── CTA ── */
.cta { background: var(--acc); color: #fff; border-radius: var(--r-lg); padding: clamp(2rem, 5vw, 3.5rem); text-align: center; }
.cta h2 { color: #fff; margin-bottom: .9rem; }
.cta p { color: #c7d6e6; max-width: 560px; margin: 0 auto 1.75rem; }
.cta .btn-row { justify-content: center; }

/* ── Stopka ── */
.ftr { background: var(--acc-d); color: #b9c6d6; padding-block: 3.5rem 2rem; font-size: .94rem; }
.ftr a { color: #dbe5ef; }
.ftr a:hover { color: #fff; }
.ftr-grid { display: grid; gap: 2.25rem; margin-bottom: 2.5rem; }
@media (min-width: 700px)  { .ftr-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .ftr-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.ftr .ftr-h { color: #fff; font-size: .95rem; margin-bottom: .9rem; letter-spacing: .02em; }
.ftr ul { list-style: none; }
.ftr li { margin-bottom: .1rem; }
/* Cel dotykowy min. 44px — linki stopki mają własny obszar klikalny */
.ftr li a,
.ftr-bottom a,
.ftr p a { display: inline-flex; align-items: center; min-height: 44px; }
@media (min-width: 1000px) {
  .ftr li a, .ftr-bottom a { min-height: 38px; }
}
.ftr-logo img { height: 26px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.ftr-bottom {
  border-top: 1px solid rgba(255,255,255,.13); padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: .87rem;
}
.ftr-bottom > span { display: inline-flex; align-items: center; flex-wrap: wrap; gap: .25rem; }

/* ── Okruszki ── */
.crumbs { font-size: .87rem; color: var(--muted); padding-block: 1.25rem; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--acc); }
.crumbs span { margin-inline: .4rem; color: var(--light); }

/* ── Paginacja ── */
.pager { display: flex; gap: .5rem; justify-content: center; margin-top: 3rem; flex-wrap: wrap; }
.pager a, .pager strong {
  min-width: 44px; min-height: 44px; display: grid; place-items: center;
  padding: 0 .75rem; border: 1px solid var(--border); border-radius: var(--r);
  font-weight: 600; font-size: .95rem;
}
.pager strong { background: var(--acc); color: #fff; border-color: var(--acc); }

/* ── Pomocnicze ── */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--acc); color: #fff; padding: .8rem 1.25rem; border-radius: 0 0 var(--r) 0;
}
.skip-link:focus { left: 0; color: #fff; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.text-center { text-align: center; }
.mt-lg { margin-top: 2.5rem; }

/* ── Karty ofert z portalu ── */
.offer-card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.offer-price { font-size: 1.3rem; font-weight: 700; color: var(--acc); margin-top: auto; }
.offer-price span { font-size: .85rem; font-weight: 500; color: var(--muted); }
.btn--sm { min-height: 40px; padding: .45rem .9rem; font-size: .88rem; }

/* ── Banner zgody na cookies ── */
.cookie-banner {
  position: fixed; inset: auto 0 0 0; z-index: 200;
  background: #fff; border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(15,37,64,.12);
  padding: .9rem 0 max(.9rem, env(safe-area-inset-bottom));
}
.cookie-inner { max-width: var(--wrap); margin-inline: auto; padding-inline: 16px; }
.cookie-banner h2 { font-size: 1rem; margin-bottom: .25rem; }
.cookie-banner p { font-size: .88rem; color: var(--muted); }
/* Mobile: kompaktowo — akceptacja pełnej szerokości, drugorzędne w jednym rzędzie */
.cookie-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-top: .85rem; }
.cookie-actions .btn { min-height: 46px; padding: .55rem .6rem; font-size: .92rem; min-width: 0; }
.cookie-actions [data-consent="accept"] { grid-column: 1 / -1; order: -1; }
.cookie-settings { margin-top: 1.25rem; border-top: 1px solid var(--border); padding-top: 1.25rem; }
.cookie-settings label {
  display: flex; gap: .7rem; align-items: flex-start;
  padding: .6rem 0; font-size: .93rem; min-height: 44px;
}
.cookie-settings input { width: 20px; height: 20px; margin-top: .15rem; flex-shrink: 0; }
@media (min-width: 800px) {
  .cookie-inner { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: center; }
  .cookie-actions { margin-top: 0; display: flex; flex-wrap: nowrap; }
  .cookie-actions .btn { flex: 0 0 auto; }
  .cookie-actions [data-consent="accept"] { grid-column: auto; order: 0; }
  .cookie-settings { grid-column: 1 / -1; }
}
.link-btn {
  background: none; border: 0; padding: 0; font: inherit; color: #dbe5ef;
  text-decoration: underline; cursor: pointer; min-height: 44px;
}
.link-btn:hover { color: #fff; }
/* Tytuł karty wpisu jest H2 (poprawna hierarchia na liście bloga), ale wizualnie mniejszy */
.post-card-title { font-size: 1.12rem; line-height: 1.3; letter-spacing: -.01em; }
.post-card-title a { color: var(--text); }
.post-card-title a:hover { color: var(--acc); }

/* ── Ekran wyboru intencji („Zostań klientem") ── */
.start-grid { align-items: stretch; }
.start-card {
  display: flex; flex-direction: column; gap: .7rem;
  padding: 2rem 1.75rem; background: var(--card); color: var(--text);
  border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s, border-color .2s;
  min-height: 100%;
}
.start-card:hover { box-shadow: var(--shadow-h); transform: translateY(-2px); border-color: var(--acc-mid); color: var(--text); }
.start-card-title { font-size: 1.22rem; font-weight: 700; line-height: 1.25; letter-spacing: -.01em; }
.start-card-desc { color: var(--muted); font-size: .97rem; flex: 1; }
.start-card-note { color: var(--acc); font-weight: 600; font-size: .92rem; margin-top: .3rem; }

/* ── Zakładki centrum pomocy ── */
.help-tabs { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.help-tabs a {
  display: inline-flex; align-items: center; min-height: 48px; padding: .6rem 1.3rem;
  background: var(--card); border: 1px solid var(--border); border-radius: 999px;
  font-weight: 600; font-size: .96rem; transition: border-color .15s, background .15s;
}
.help-tabs a:hover { border-color: var(--acc); background: var(--acc-l); }
/* Nagłówek jest przyklejony — kotwice nie mogą chować się pod nim */
section[id] { scroll-margin-top: 90px; }

/* ── Strona kontaktu ── */
.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 3.5rem; align-items: start; } }
.contact-list { list-style: none; margin-bottom: 2rem; }
.contact-list li { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--border); }
.contact-list li:last-child { border-bottom: 0; }
.contact-ico {
  display: grid; place-items: center; width: 42px; height: 42px; flex-shrink: 0;
  background: var(--acc-l); color: var(--acc); border-radius: 11px;
}
.contact-list strong { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--light); margin-bottom: .2rem; }
.contact-big { display: inline-flex; align-items: center; min-height: 32px; font-size: 1.12rem; font-weight: 700; color: var(--text); }
a.contact-big:hover { color: var(--acc); }
.contact-note { display: block; font-size: .87rem; color: var(--muted); }
.contact-box { padding: 1.5rem; background: var(--gold-l); border-radius: var(--r-lg); margin-bottom: 1.75rem; }
.contact-box h2 { font-size: 1.1rem; margin-bottom: .5rem; }
.contact-box p { font-size: .95rem; color: #5c4a24; }
.contact-form-wrap { padding: 2rem 1.75rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow); }
.contact-form-wrap h2 { font-size: 1.3rem; margin-bottom: 1.5rem; }
.field--check label { display: flex; gap: .7rem; align-items: flex-start; font-weight: 400; font-size: .92rem; line-height: 1.5; cursor: pointer; padding-block: .6rem; min-height: 44px; }
.field--check input { width: 22px; height: 22px; min-height: 22px; margin-top: .1rem; flex-shrink: 0; }
.hint-inline { font-weight: 400; color: var(--muted); font-size: .88rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ── Karty miast („gdzie działamy") ───────────────────────────
   Auto-fit: 1 kolumna na telefonie, 2 na tablecie, 3 na desktopie —
   piąta karta (Trójmiasto) nie zostawia pustej dziury w siatce.       */
/* 1 kolumna na telefonie → 2x2 od tabletu w górę (4 miasta = równa siatka) */
.city-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .city-grid { grid-template-columns: repeat(2, 1fr); } }
.city-card {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: box-shadow .2s, transform .2s;
}
.city-card:hover { box-shadow: var(--shadow-h); transform: translateY(-2px); }

.city-card-head { padding: 1.4rem 1.4rem 1.1rem; border-bottom: 1px solid var(--border); }
.city-card-head h3 { font-size: 1.35rem; margin-bottom: .2rem; }
.city-sub { font-size: .84rem; color: var(--muted); }

/* Dane rynkowe — dwie kolumny na wspólnym tle, czytelne na każdym ekranie */
.city-stats { display: grid; grid-template-columns: 1fr 1fr; background: var(--bg-alt); }
.city-stats > div { padding: .9rem 1.4rem; }
.city-stats > div + div { border-left: 1px solid var(--border); }
.city-stats dt {
  font-size: max(.68rem, 12px); text-transform: uppercase; letter-spacing: .07em;
  color: var(--light); font-weight: 700; margin-bottom: .2rem;
}
.city-stats dd { font-size: .93rem; font-weight: 700; color: var(--text); line-height: 1.3; }

/* Akcje — pełnowymiarowe cele dotykowe, wyraźnie rozdzielone */
.city-actions { display: flex; flex-direction: column; margin-top: auto; }
.city-action {
  display: flex; align-items: center; gap: .8rem;
  padding: .95rem 1.4rem; min-height: 64px;
  color: var(--text); border-top: 1px solid var(--border);
  transition: background .15s;
}
.city-action:first-child { border-top: 0; }
.city-action:hover { background: var(--acc-l); color: var(--text); }
.city-action--sell:hover { background: var(--gold-l); }
.city-action-txt { flex: 1; display: flex; flex-direction: column; line-height: 1.3; }
.city-action-txt strong { font-size: .97rem; font-weight: 600; }
.city-action-txt small { font-size: .81rem; color: var(--muted); margin-top: .1rem; }
.city-ico {
  display: grid; place-items: center; width: 36px; height: 36px;
  border-radius: 10px; flex-shrink: 0; transition: transform .15s;
}
.city-action--rent .city-ico { background: var(--acc-l); color: var(--acc); }
.city-action--sell .city-ico { background: var(--gold-l); color: var(--gold); }
.city-action:hover .city-ico { transform: scale(1.07); }
.city-arrow { color: var(--light); flex-shrink: 0; transition: transform .15s, color .15s; }
.city-action:hover .city-arrow { transform: translateX(3px); color: var(--acc); }
.city-more { text-align: center; margin-top: 2rem; font-size: .95rem; color: var(--muted); }
.city-more a { font-weight: 600; }

/* ── Artykuł ──────────────────────────────────────────────────
   Węższa kolumna tekstu (ok. 68 znaków w wierszu) = lepsza czytelność.  */
.wrap--article { max-width: 740px; margin-inline: auto; padding-inline: 20px; }
.wrap--wide { max-width: 1000px; margin-inline: auto; padding-inline: 20px; }

.post-article { padding-bottom: var(--gap); }
.post-header { padding-block: 1rem 2rem; }
.post-header h1 { font-size: clamp(1.85rem, 4.5vw, 2.85rem); line-height: 1.15; margin-bottom: 1rem; }
.post-header .post-meta { margin-bottom: 1rem; align-items: center; }
.post-lead {
  font-size: clamp(1.08rem, 2.2vw, 1.24rem); line-height: 1.6;
  color: var(--muted); font-weight: 400;
}

.post-cover-wrap { margin-bottom: 2.75rem; }
.post-cover-wrap img {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: var(--r-lg); box-shadow: var(--shadow);
}

/* Typografia treści artykułu */
.prose--article { font-size: 1.12rem; line-height: 1.75; }
.prose--article > p:first-of-type::first-letter {
  float: left; font-size: 3.4rem; line-height: .85; font-weight: 700;
  color: var(--acc); margin: .35rem .6rem 0 0;
}
.prose--article h2 {
  margin: 2.75rem 0 1rem; padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  font-size: clamp(1.4rem, 3vw, 1.75rem);
}
.prose--article h3 { margin: 2rem 0 .6rem; font-size: 1.22rem; }
.prose--article ul, .prose--article ol { padding-left: 1.5rem; }
.prose--article li { margin-bottom: .6rem; padding-left: .2rem; }
.prose--article li::marker { color: var(--acc); font-weight: 700; }
.prose--article strong { font-weight: 600; color: var(--text); }
.prose--article a { color: var(--acc); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose--article a:hover { text-decoration-thickness: 2px; }
.prose--article img { border-radius: var(--r); margin: 2rem 0; }

/* Stopka artykułu: udostępnianie i powrót */
.post-footer {
  display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; justify-content: space-between;
  margin-top: 3rem; padding-top: 1.75rem; border-top: 1px solid var(--border);
}
.post-share { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; font-size: .92rem; }
.post-share > span { color: var(--muted); margin-right: .25rem; }
.post-share a, .link-copy {
  display: inline-flex; align-items: center; min-height: 44px; padding: .45rem .95rem;
  border: 1px solid var(--border); border-radius: 999px; background: #fff;
  font: inherit; font-size: .9rem; font-weight: 600; color: var(--acc); cursor: pointer;
  transition: border-color .15s, background .15s;
}
.post-share a:hover, .link-copy:hover { border-color: var(--acc); background: var(--acc-l); }

@media (max-width: 600px) {
  .prose--article > p:first-of-type::first-letter { font-size: 2.8rem; }
  .post-footer { flex-direction: column; align-items: stretch; }
  .post-footer .btn { width: 100%; }
}

/* ── Poprawki dotykowe (audyt mobile) ─────────────────────────
   Tytuł karty rozciąga klikalność na całą kartę — palcem trafia się
   w dowolne miejsce kafelka, nie tylko w tekst nagłówka.            */
/* Karta oferty jest w całości odnośnikiem — cały kafelek to cel dotykowy */
a.offer-card { color: var(--text); }
a.offer-card:hover { color: var(--text); }
.offer-card .post-card-body { display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.offer-title { font-size: 1.12rem; font-weight: 700; line-height: 1.3; letter-spacing: -.01em; }
a.offer-card:hover .offer-title { color: var(--acc); }

/* Samodzielne odnośniki w akapitach (nie w zdaniu) — pełny cel dotykowy */
.text-center > a,
.city-more a {
  display: inline-flex; align-items: center; min-height: 44px; padding-inline: .25rem;
}

/* ── Cele dotykowe: elementy nawigacyjne i kontaktowe ─────────
   Odnośniki w okruszkach, stopce zgód i danych kontaktowych to
   samodzielne cele — muszą mieć pełne 44px wysokości klikalnej.   */
.crumbs { padding-block: .35rem; }
.crumbs a {
  display: inline-flex; align-items: center; min-height: 44px; padding-inline: .15rem;
}
.cookie-banner p a { text-decoration: underline; }
.contact-big { min-height: 44px; }
.contact-list li { padding-block: .75rem; }

/* Najmniejszy dopuszczalny tekst pomocniczy — 12px */
.post-meta, .contact-note, .city-sub, .hint, .price-note,
.ftr-bottom, .cookie-settings label span { font-size: max(.78rem, 12.5px); }

/* ══ Sekcja technologii ══════════════════════════════════════
   Podglądy interfejsów budowane z HTML/CSS — ostre na każdym
   ekranie, kilka kB zamiast zrzutów po kilkaset kB.             */

.tech { background: linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%); }

.tech-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 860px) {
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-card--wide { grid-column: 1 / -1; }
}

.tech-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 1.5rem;
  padding: 2rem 1.75rem;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--shadow);
  transition: box-shadow .25s, transform .25s;
}
.tech-card:hover { box-shadow: var(--shadow-h); transform: translateY(-3px); }
@media (min-width: 860px) {
  .tech-card--wide { flex-direction: row; align-items: center; gap: 3rem; padding: 2.5rem; }
  .tech-card--wide .tech-copy { flex: 1 1 46%; }
  .tech-card--wide .tech-shot { flex: 1 1 54%; }
}

.tech-card--accent { background: var(--acc); border-color: var(--acc); color: #fff; }
/* Wyższa specyficzność niż .tech-copy p — inaczej szary tekst wygrywa i kontrast spada do 1.9 */
.tech-card--accent .tech-copy h3 { color: #fff; }
.tech-card--accent .tech-copy p { color: #e8f0f8; }

.tech-copy h3 { font-size: clamp(1.15rem, 2.4vw, 1.5rem); margin-bottom: .7rem; line-height: 1.25; }
.tech-copy p { color: var(--muted); font-size: .98rem; }
.tech-copy .btn { margin-top: 1.25rem; }

.tech-tag {
  display: inline-flex; align-items: center; gap: .4rem; margin-bottom: .9rem;
  padding: .3rem .8rem; border-radius: 999px;
  background: var(--acc-l); color: var(--acc);
  font-size: max(.72rem, 12px); font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}
.tech-tag--light { background: rgba(255,255,255,.16); color: #fff; }
.tech-tag--live { background: var(--green-l); color: var(--green); }
.tech-tag--live .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1 } 50% { opacity: .25 } }

.tech-facts { list-style: none; display: flex; gap: 2rem; margin-top: 1.4rem; }
.tech-facts b { display: block; font-size: 1.35rem; color: var(--acc); line-height: 1.1; }
.tech-facts span { font-size: .83rem; color: var(--muted); }

/* ── Ramka podglądu: lekko przechylona, czyta się jako wycinek ekranu ── */
.tech-shot { position: relative; }
.shot-frame {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  box-shadow: 0 12px 32px rgba(15,37,64,.13); overflow: hidden;
}
.tech-card--accent .shot-frame { border-color: rgba(255,255,255,.2); }

/* Czat BingoBota */
.shot-bar { display: flex; align-items: center; gap: .6rem; padding: .7rem .9rem; background: var(--acc); color: #fff; }
.shot-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--gold); display: grid; place-items: center; font-weight: 800; font-size: .9rem; }
.shot-name { font-weight: 700; font-size: .9rem; line-height: 1.1; }
.shot-name small { display: block; font-weight: 400; font-size: max(.68rem, 11.5px); color: #a8e0bd; }
.shot-chat { padding: .9rem; display: flex; flex-direction: column; gap: .45rem; background: #f7f8fa; }
.bubble { max-width: 82%; padding: .5rem .8rem; border-radius: 14px; font-size: .85rem; line-height: 1.4; margin: 0; }
.bubble--in { align-self: flex-end; background: var(--acc); color: #fff; border-bottom-right-radius: 4px; }
.bubble--out { align-self: flex-start; background: #fff; border: 1px solid var(--border); border-bottom-left-radius: 4px; }
.bubble--typing { display: flex; gap: 4px; padding: .65rem .8rem; }
.bubble--typing i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.75); animation: blink 1.4s infinite; }
.bubble--typing i:nth-child(2) { animation-delay: .2s }
.bubble--typing i:nth-child(3) { animation-delay: .4s }
@keyframes blink { 0%, 60%, 100% { opacity: .3 } 30% { opacity: 1 } }

/* Kalendarz rezerwacji */
.shot-head { padding: .75rem .9rem; font-size: .82rem; font-weight: 700; border-bottom: 1px solid var(--border); }
.shot-days { display: grid; grid-template-columns: repeat(5, 1fr); gap: .35rem; padding: .7rem .9rem 0; }
.shot-days span { text-align: center; font-size: max(.66rem, 11.5px); color: var(--muted); padding: .35rem .1rem; border-radius: 8px; border: 1px solid var(--border); }
.shot-days b { display: block; font-size: max(.72rem, 11.5px); color: var(--text); font-weight: 700; }
.shot-days .on { background: var(--acc); border-color: var(--acc); color: #fff; }
.shot-days .on b { color: #fff; }
.shot-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: .35rem; padding: .7rem .9rem; }
.shot-slots span { text-align: center; font-size: .72rem; font-weight: 600; padding: .4rem .1rem; border: 1px solid var(--border); border-radius: 8px; }
.shot-slots .taken { color: var(--light); text-decoration: line-through; background: var(--bg-alt); }
.shot-slots .sel { background: var(--green); border-color: var(--green); color: #fff; }
.shot-confirm { padding: .55rem .9rem; background: var(--green-l); color: var(--green); font-size: .75rem; font-weight: 700; }

/* Panel ze statystykami */
.stat-row { display: flex; justify-content: space-between; align-items: baseline; padding: .8rem .9rem .4rem; font-size: .78rem; color: var(--muted); }
.stat-row b { font-size: 1.2rem; color: var(--text); }
.stat-chart { display: flex; align-items: flex-end; gap: .3rem; height: 74px; padding: 0 .9rem; }
.stat-chart i { flex: 1; height: var(--h); background: linear-gradient(180deg, var(--acc-mid), var(--acc)); border-radius: 4px 4px 0 0; }
.stat-legend { display: flex; justify-content: space-between; padding: .6rem .9rem; border-top: 1px solid var(--border); font-size: max(.72rem, 11.5px); color: var(--muted); }
.stat-legend .ok { color: var(--green); font-weight: 700; }


@media (prefers-reduced-motion: reduce) {
  .tech-tag--live .dot, .bubble--typing i { animation: none; }
}

/* ── Języki: flagi zamiast tekstu ── */
.lang-row { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.25rem; }
.lang {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .3rem .55rem .3rem .35rem;
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  box-shadow: 0 1px 2px rgba(15,37,64,.06);
}
.lang svg { border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,.09); display: block; }
.lang b { font-size: max(.7rem, 11.5px); font-weight: 700; color: var(--muted); letter-spacing: .03em; }

/* ── Zasięg: bingo w centrum, wokół portale i kanały ── */
.tech-shot--reach { display: grid; place-items: center; min-height: 300px; }
.reach { position: relative; width: 100%; max-width: 340px; aspect-ratio: 1; }
.reach-hub {
  position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%);
  width: 88px; height: 88px; border-radius: 50%; display: grid; place-items: center;
  background: var(--acc); color: #fff; font-weight: 800; font-size: 1.05rem; letter-spacing: -.02em;
  box-shadow: 0 0 0 10px var(--acc-l), 0 8px 24px rgba(15,37,64,.18); z-index: 2;
}
/* promienie łączące środek z węzłami */
.reach::before {
  content: ''; position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%);
  width: 78%; height: 78%; border: 1px dashed var(--border); border-radius: 50%;
}
.reach-node {
  position: absolute; white-space: nowrap;
  font-size: max(.76rem, 12px); font-weight: 600; color: var(--text);
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  padding: .32rem .7rem; box-shadow: var(--shadow);
}
.reach-node.n1 { top: 2%;  left: 50%; transform: translateX(-50%); }
.reach-node.n2 { top: 16%; right: 0; }
.reach-node.n3 { top: 44%; right: -4%; }
.reach-node.n4 { bottom: 16%; right: 0; }
.reach-node.n5 { bottom: 0; left: 50%; transform: translateX(-50%); }
.reach-node.n6 { bottom: 16%; left: 0; }
.reach-node.n7 { top: 44%; left: -4%; }
.reach-node.n8 { top: 16%; left: 0; }
.reach-node.gold {
  background: var(--gold); border-color: var(--gold); color: #fff;
  display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15;
  padding: .35rem .75rem;
}
.reach-node.gold i { font-style: normal; font-size: max(.66rem, 12px); opacity: .85; font-weight: 500; }

/* ── Dokumenty w panelu („wlepy") ── */
.docs { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; padding: .8rem .9rem; border-top: 1px solid var(--border); }
.doc { display: flex; flex-direction: column; gap: .35rem; }
.doc i { height: 52px; border-radius: 6px; position: relative; overflow: hidden; display: block; }
.doc b { font-size: max(.7rem, 12px); font-weight: 600; color: var(--muted); line-height: 1.2; }
/* zdjęcie naprawy — imitacja fotografii */
.doc--photo i { background: linear-gradient(135deg, #9fb4c9 0%, #cfd9e3 45%, #8fa3b8 100%); }
.doc--photo i::after {
  content: ''; position: absolute; left: 32%; top: 26%; width: 36%; height: 48%;
  background: #6b7a8a; border-radius: 3px; box-shadow: 0 2px 0 #55626f;
}
/* faktura i umowa — kartki z nieczytelnym tekstem */
.doc--invoice i, .doc--contract i { background: #fff; border: 1px solid var(--border); padding: 7px 6px; }
.doc--invoice em, .doc--contract em {
  display: block; height: 3px; background: #d6dce4; border-radius: 2px; margin-bottom: 4px;
}
.doc--invoice em:nth-child(1) { width: 55% } .doc--invoice em:nth-child(2) { width: 88% }
.doc--invoice em:nth-child(3) { width: 72% } .doc--invoice em:nth-child(4) { width: 40%; background: var(--acc-mid) }
.doc--contract em:nth-child(1) { width: 80% } .doc--contract em:nth-child(2) { width: 92% }
.doc--contract em:nth-child(3) { width: 60% }
.doc--contract em.sig {
  width: 46%; height: 12px; margin-top: 5px; background: none;
  border-bottom: 2px solid var(--acc);
  -webkit-mask: radial-gradient(circle at 20% 60%, #000 2px, transparent 3px) 0 0/8px 8px;
}

/* ── Lista „w cenie" ── */
.price-list { list-style: none; background: rgba(255,255,255,.07); border-radius: var(--r-lg); overflow: hidden; }
.price-list li {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .8rem 1.1rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
.price-list li:last-child { border-bottom: 0; }
.pl-name { display: flex; flex-direction: column; color: #fff; font-weight: 600; font-size: .95rem; line-height: 1.25; }
.pl-name small { font-size: max(.75rem, 12px); font-weight: 400; color: #9fb6cd; margin-top: .15rem; text-decoration: line-through; }
.pl-price {
  flex-shrink: 0; font-weight: 800; font-size: 1.05rem; color: #fff;
  background: var(--green); padding: .25rem .7rem; border-radius: 999px;
}

/* ── Kafelek zaufania: licencje, liczby, skala ── */
.creds { display: flex; flex-direction: column; gap: .7rem; }

.cred--licence {
  display: flex; align-items: flex-start; gap: .8rem;
  padding: .95rem 1rem; border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--gold-l), #fff);
  border: 1px solid #e8d4a8;
}
.cred-seal {
  display: grid; place-items: center; width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 50%; background: var(--gold); color: #fff;
  box-shadow: 0 0 0 4px rgba(184,137,42,.15);
}
.cred-txt { display: flex; flex-direction: column; gap: .2rem; line-height: 1.35; min-width: 0; }
.cred-txt b { font-size: .95rem; color: var(--text); }
.cred-txt small { font-size: max(.76rem, 12px); color: #7a6224; }
.cred-txt .cred-oc { color: var(--muted); font-size: max(.75rem, 12px); }

/* Liczby jako wiersze etykieta → wartość: nic się nie zlewa, także po zawinięciu */
.cred-nums { display: grid; gap: 0; background: #fff; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.cred-nums > div {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: .62rem .95rem; border-bottom: 1px solid var(--border);
}
.cred-nums > div:last-child { border-bottom: 0; }
.cred-nums dt { font-size: max(.8rem, 12.5px); color: var(--muted); }
.cred-nums dd { font-size: 1.12rem; font-weight: 800; color: var(--acc); letter-spacing: -.01em; white-space: nowrap; }

.cred-scale {
  padding: .85rem 1rem; border-radius: var(--r);
  background: var(--acc); color: #dce7f2;
  font-size: max(.84rem, 12.5px); line-height: 1.45; margin: 0;
}
.cred-scale-num {
  display: inline-block; font-size: 1.15rem; font-weight: 800; color: #fff;
  letter-spacing: -.01em; margin-right: .2rem;
}
.cred-txt .lic { display: flex; justify-content: space-between; gap: .75rem; align-items: baseline; }
.cred-txt .lic em { font-style: normal; font-weight: 700; color: #6b5420; white-space: nowrap; }
/* Wyrównanie wysokości kafelków w rzędzie: podgląd wypełnia dostępne miejsce */
.tech-card .tech-shot { display: flex; flex-direction: column; justify-content: center; }
.tech-card .tech-shot > .shot-frame { width: 100%; }
.stat-months { display: flex; justify-content: space-between; padding: .3rem .9rem 0; }
.stat-months span { flex: 1; text-align: center; font-size: max(.66rem, 11px); color: var(--light); }
.stat-lines { border-top: 1px solid var(--border); margin-top: .6rem; }
.stat-lines span { display: flex; justify-content: space-between; gap: 1rem; padding: .5rem .9rem; border-bottom: 1px solid var(--border); }
.stat-lines span:last-child { border-bottom: 0; }
.stat-lines i { font-style: normal; font-size: max(.76rem, 12px); color: var(--muted); }
.stat-lines b { font-size: max(.78rem, 12px); color: var(--text); white-space: nowrap; }
.stat-lines b.ok { color: var(--green); }
/* Ikona aparatu na podglądzie zdjęcia — bez niej kafelek był nieczytelny */
.doc--photo i { display: grid; place-items: center; color: rgba(255,255,255,.92); }
.doc--photo i svg { width: 22px; height: 22px; filter: drop-shadow(0 1px 2px rgba(0,0,0,.35)); }
.doc--photo i::after { display: none; }

/* ── Strona usługi (hub) ── */
.hero-note { margin-top: .9rem; font-size: .88rem; color: var(--muted); }

/* Pasek dowodów pod nagłówkiem */
.hub-proof { background: var(--acc); color: #fff; padding-block: 1.5rem; }
.hub-proof ul { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; text-align: center; }
@media (min-width: 760px) { .hub-proof ul { grid-template-columns: repeat(4, 1fr); } }
.hub-proof b { display: block; font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; }
.hub-proof span { font-size: max(.8rem, 12.5px); color: #b9cde0; }

/* Zestawienie „samodzielnie kontra z nami" */
.compare { display: grid; gap: 1.25rem; }
@media (min-width: 800px) { .compare { grid-template-columns: 1fr 1fr; } }
.compare-col { padding: 1.75rem; border-radius: var(--r-lg); border: 1px solid var(--border); background: var(--card); }
.compare-col h3 { font-size: 1.15rem; margin-bottom: 1rem; }
.compare-col ul { list-style: none; }
.compare-col li { position: relative; padding-left: 1.9rem; margin-bottom: .7rem; font-size: .97rem; line-height: 1.5; }
.compare-col li::before { position: absolute; left: 0; top: -.05rem; font-size: 1.05rem; font-weight: 700; }
.compare-col--bad { background: #fdf6f5; border-color: #f3d9d5; }
.compare-col--bad h3 { color: #8a3a30; }
.compare-col--bad li { color: #6b4a45; }
.compare-col--bad li::before { content: '✕'; color: #c0564a; }
.compare-col--good { border-color: var(--green); box-shadow: var(--shadow); }
.compare-col--good h3 { color: var(--green); }
.compare-col--good li::before { content: '✓'; color: var(--green); }
/* Blok kontaktowy w stopce */
.ftr-contact { list-style: none; margin-top: 1.25rem; }
.ftr-contact li { display: flex; align-items: center; gap: .6rem; margin-bottom: .15rem; }
.ftr-contact svg { flex-shrink: 0; opacity: .65; }
.ftr-contact a { display: inline-flex; align-items: center; min-height: 44px; font-weight: 600; color: #fff; }
.ftr-contact a:hover { color: var(--gold); }
.ftr-contact span { font-size: .93rem; }

/* Delikatna zachęta pod oknem czatu BingoBota — bez tła, drobnym drukiem */
.tech-try { margin-top: 1rem; font-size: .9rem; color: var(--muted); text-align: center; line-height: 1.6; }
/* Linki w zdaniu zostają inline (wyjątek WCAG 2.5.8 dla inline) — 44px min-height rozpychało linię */
.tech-try a { font-weight: 700; color: var(--acc); white-space: nowrap; }
.tech-try a:hover { color: var(--acc-d); }
/* Przycisk-odnośnik w treści (np. „Ustawienia cookies" w polityce) */
.link-inline { background: none; border: 0; padding: 0; font: inherit; color: var(--acc); text-decoration: underline; cursor: pointer; }
.link-inline:hover { color: var(--acc-d); }
