/* ════════════════════════════════════════════════════
   b-visible.pl — wspólny arkusz stylów
   Używany przez: index.html i wszystkie podstrony
   ════════════════════════════════════════════════════ */

/* ── RESET & ZMIENNE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0a192f;
  --navy-mid:  #0d2444;
  --teal:      #12a3a1;
  --teal-dark: #0d7876;
  --red:       #db2e2e;
  --slate:     #94a3b8;
  --bg-light:  #f0f4f8;
  --white:     #ffffff;
  --text:      #1e293b;
  --muted:     #64748b;
  --border:    #e2e8f0;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}
a   { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── UTILITIES ── */
.container   { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section     { padding: 88px 0; }
.section-alt { background: var(--bg-light); }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.eyebrow-white { color: #5eead4; }

h2.s-title {
  font-size: clamp(26px, 3.8vw, 38px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}
h2.s-title-white { color: var(--white); }

.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.75;
}
.section-sub-white { color: var(--slate); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all .2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  font-family: inherit;
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(18,163,161,.3); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.07); }
.btn-navy   { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-teal-outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-teal-outline:hover { background: var(--teal); color: var(--white); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo            { display: flex; align-items: center; gap: 9px; }
.logo-sygnet     { height: 40px; width: auto; flex-shrink: 0; }
.logo-txt        { height: 23px; width: auto; flex-shrink: 0; }

nav { display: flex; align-items: center; gap: 30px; }
nav a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color .18s; }
nav a:hover, nav a.active { color: var(--navy); }

.h-cta { display: flex; align-items: center; gap: 14px; }
.h-phone {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 7px;
}
.h-phone::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb li { font-size: 13px; color: var(--muted); }
.breadcrumb li + li::before { content: '/'; margin-right: 6px; color: var(--border); }
.breadcrumb a { color: var(--teal); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--text); font-weight: 600; }

/* ── SERVICE HERO ── */
.svc-hero {
  background: var(--navy);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.svc-hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -180px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(18,163,161,.12) 0%, transparent 68%);
  pointer-events: none;
}
.svc-hero-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  width: 100% !important;
}
.svc-hero h1 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -.01em;
}
.svc-hero h1 em { color: var(--teal); font-style: normal; }
.svc-hero-sub {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}
.svc-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Quick-info card w hero */
.hero-info-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 28px;
}
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.info-row:last-child { border-bottom: none; }
.info-label { font-size: 13px; color: var(--slate); }
.info-value { font-size: 14px; font-weight: 700; color: var(--white); }

/* ── BENEFITS GRID ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: all .22s ease;
}
.benefit-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 28px rgba(18,163,161,.1);
  transform: translateY(-2px);
}
.benefit-icon {
  width: 48px; height: 48px;
  background: rgba(18,163,161,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.benefit-icon svg {
  width: 22px; height: 22px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.benefit-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── STEPS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 23px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: var(--border);
}
.step { text-align: center; }
.step-num {
  width: 48px; height: 48px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
}
.step h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── PRICING TEASER ── */
.price-teaser {
  background: var(--navy);
  border-radius: 16px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin-top: 52px;
}
.price-teaser h3 { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.price-teaser p  { font-size: 15px; color: var(--slate); max-width: 480px; line-height: 1.7; }
.price-from { text-align: right; }
.price-from-label { font-size: 13px; color: var(--slate); margin-bottom: 4px; }
.price-from-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.price-from-unit { font-size: 18px; font-weight: 600; color: var(--slate); }

/* ── FAQ ── */
.faq-wrap { max-width: 760px; margin: 52px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  gap: 16px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.faq-btn h3 { font-size: 16px; font-weight: 600; color: var(--navy); line-height: 1.4; }
.faq-icon {
  width: 30px; height: 30px;
  min-width: 30px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.faq-icon svg {
  width: 14px; height: 14px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: transform .3s ease;
}
.faq-answer { font-size: 15px; color: var(--muted); line-height: 1.75; padding-bottom: 22px; display: none; }
.faq-item.open .faq-answer   { display: block; }
.faq-item.open .faq-icon     { background: rgba(18,163,161,.12); }
.faq-item.open .faq-icon svg { stroke: var(--teal); transform: rotate(45deg); }

/* ── RELATED SERVICES ── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.related-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.related-card:hover { border-color: var(--teal); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(18,163,161,.1); }
.related-card svg {
  width: 24px; height: 24px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.related-card span { font-size: 13px; font-weight: 600; color: var(--navy); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(18,163,161,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 { font-size: clamp(24px, 3.8vw, 38px); font-weight: 800; color: var(--white); margin-bottom: 14px; position: relative; z-index: 1; }
.cta-band p  { font-size: 17px; color: var(--slate); margin-bottom: 34px; position: relative; z-index: 1; }
.cta-btns    { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--teal); padding: 16px 0; }
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.trust-inner span { font-size: 14px; font-weight: 600; color: var(--white); }
.trust-dot { width: 4px; height: 4px; background: rgba(255,255,255,.45); border-radius: 50%; flex-shrink: 0; }

/* ── FOOTER ── */
footer { background: #060d1a; padding: 60px 0 32px; color: var(--muted); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 52px;
}
.footer-logo         { display: flex; align-items: center; gap: 9px; }
.footer-logo .logo-sygnet { height: 38px; width: auto; flex-shrink: 0; }
.footer-logo .logo-txt    { height: 21px; width: auto; flex-shrink: 0; }
.footer-desc { font-size: 14px; line-height: 1.75; margin-top: 16px; max-width: 300px; color: #4a5568; }
.footer-nap  { font-size: 14px; line-height: 1.8; margin-top: 12px; color: #4a5568; }
.footer-nap a { color: var(--slate); transition: color .15s; }
.footer-nap a:hover { color: var(--white); }
.footer-col h4 { font-size: 12px; font-weight: 700; color: var(--slate); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
.footer-col a  { display: block; font-size: 14px; color: #4a5568; margin-bottom: 11px; transition: color .15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid #1a2535;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: #4a5568; transition: color .15s; }
.footer-links a:hover { color: var(--white); }

/* ── HEADER CLASS VARIANTS ── */
.header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.97); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.header-sticky { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.97); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.nav-main { display: flex; align-items: center; gap: 30px; }
.nav-main a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color .18s; }
.nav-main a:hover, .nav-main a.active { color: var(--navy); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.icon-link { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; color: var(--muted); transition: color .18s; }
.icon-link:hover { color: var(--navy); }
.icon-link svg { stroke: currentColor; }

/* ── LOGO CLASS VARIANTS ── */
.logo-icon { height: 40px; width: auto; flex-shrink: 0; }
.logo-text { height: 23px; width: auto; flex-shrink: 0; }
.logo-compact { display: flex; align-items: center; gap: 9px; }

/* ── SVC HERO COLUMNS ── */
.svc-hero-left  { }
.svc-hero-right { }
.subtitle { font-size: 17px; color: var(--slate); line-height: 1.75; margin-bottom: 32px; max-width: 520px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 0; }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.35); }
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,.07); }

/* ── HERO INFO CARD ROWS ── */
.hero-info-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.hero-info-row:last-child { border-bottom: none; }
.hero-info-row .label { font-size: 13px; color: var(--slate); }
.hero-info-row .value { font-size: 14px; font-weight: 700; color: var(--white); }
.hero-info-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 2px;
}
.hero-info-meta {
  display: block;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 500;
  color: var(--slate);
}

/* ── TRUST BAR ── */
.trust-bar { background: var(--teal); padding: 18px 0; }
.trust-bar .container { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.trust-bar p { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .08em; }
.cities { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.cities span { font-size: 14px; font-weight: 600; color: var(--white); background: rgba(255,255,255,.15); padding: 4px 14px; border-radius: 20px; }

/* ── SECTION HEADER ── */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-light); padding: 88px 0; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; color: var(--navy); margin-bottom: 14px; line-height: 1.2; }
.section-header p { font-size: 16px; color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ── STEPS GRID (alias / podstrony) ── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 23px; left: calc(12.5% + 20px); right: calc(12.5% + 20px); height: 1px; background: var(--border); }
.step-card { text-align: center; }
.step-number { width: 48px; height: 48px; background: var(--navy); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; margin: 0 auto 18px; position: relative; z-index: 1; }
.step-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-card p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── PRICE TEASER (card variant) ── */
.price-teaser { background: var(--navy); padding: 80px 0; }
.price-teaser-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 48px; text-align: center; max-width: 580px; margin: 0 auto; }
.price-teaser-card h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.price { font-size: 52px; font-weight: 800; color: var(--white); margin-bottom: 16px; line-height: 1; }
.price span { font-size: 20px; font-weight: 500; color: var(--slate); }
.price-teaser-card p { font-size: 15px; color: var(--slate); line-height: 1.7; margin-bottom: 28px; max-width: 440px; margin-left: auto; margin-right: auto; }
.btn-light { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-light:hover { background: var(--bg-light); transform: translateY(-1px); }

/* ── FAQ LIST (podstrony) ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-trigger {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; cursor: pointer; gap: 16px;
  background: none; border: none; width: 100%;
  text-align: left; font-family: inherit;
  font-size: 16px; font-weight: 600; color: var(--navy); line-height: 1.4;
}
.faq-trigger svg { flex-shrink: 0; stroke: var(--muted); transition: transform .3s ease, stroke .2s; }
.faq-item.open .faq-trigger svg { transform: rotate(180deg); stroke: var(--teal); }
.faq-body   { display: none; padding: 0 0 22px; font-size: 15px; color: var(--muted); line-height: 1.75; }
.faq-content{ display: none; padding: 0 0 22px; font-size: 15px; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-body    { display: block; }
.faq-item.open .faq-content { display: block; }

/* ── RELATED GRID (podstrony) ── */
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.related-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 24px; transition: all .2s; display: flex; flex-direction: column;
  text-decoration: none;
}
.related-card:hover { border-color: var(--teal); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(18,163,161,.1); }
.related-icon { width: 44px; height: 44px; background: rgba(18,163,161,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.related-icon svg { width: 22px; height: 22px; stroke: var(--teal); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.related-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.related-card p  { font-size: 13px; color: var(--muted); line-height: 1.55; flex: 1; }
.related-card .arrow { display: block; margin-top: 12px; font-size: 18px; color: var(--teal); }

/* ── CONTACT FORM (podstrony) ── */
.contact-form { max-width: 680px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 15px; font-family: inherit; color: var(--text);
  background: var(--white); transition: border-color .18s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(18,163,161,.1); }
.btn-full { width: 100%; justify-content: center; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }
.form-message { font-size: 14px; margin-top: 8px; min-height: 1px; }
.form-success { background: #f0fdf4; border: 1.5px solid #86efac; border-radius: 10px; padding: 16px 20px; color: #166534; margin-bottom: 20px; }
.form-error   { background: #fef2f2; border: 1.5px solid #fca5a5; border-radius: 10px; padding: 16px 20px; color: #991b1b; margin-bottom: 20px; }

/* ── CTA BAND (podstrony) ── */
.cta-band { background: var(--navy); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 700px; height: 400px; background: radial-gradient(ellipse, rgba(18,163,161,.12) 0%, transparent 70%); pointer-events: none; }
.cta-band h2 { font-size: clamp(24px, 3.8vw, 38px); font-weight: 800; color: var(--white); margin-bottom: 14px; position: relative; z-index: 1; }
.cta-band p  { font-size: 17px; color: var(--slate); margin-bottom: 0; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; margin-top: 32px; }
.btn-outline-light { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.35); }
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,.07); }

/* ── FOOTER (class-based) ── */
.footer { background: #060d1a; padding: 60px 0 32px; color: var(--muted); }
.footer-brand .logo { margin-bottom: 16px; }
.footer-tagline { font-size: 14px; color: #4a5568; line-height: 1.75; margin-bottom: 16px; }
.footer-nav h4 { font-size: 12px; font-weight: 700; color: var(--slate); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 11px; }
.footer-nav a { font-size: 14px; color: #4a5568; transition: color .15s; display: block; }
.footer-nav a:hover { color: var(--white); }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ── MOBILE NAV OVERLAY ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--navy);
  flex-direction: column;
  padding-top: 80px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  padding: 20px 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .15s, background .15s;
  text-decoration: none;
}
.mobile-nav a:hover { color: var(--teal); background: rgba(255,255,255,.03); }
.mobile-nav .nav-tel {
  font-size: 16px;
  font-weight: 600;
  color: var(--slate);
  border-bottom: none;
}
.mobile-nav .nav-cta-btn {
  display: block;
  margin: 28px 32px 0;
  padding: 16px;
  background: var(--teal);
  color: var(--white) !important;
  border-radius: 10px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  border-bottom: none !important;
}
.mobile-nav .nav-cta-btn:hover { background: var(--teal-dark) !important; }

/* ── RESPONSIVE ── */
@media (max-width: 1020px) {
  .svc-hero-inner   { grid-template-columns: 1fr; }
  .hero-info-card   { display: none; }
  .benefits-grid    { grid-template-columns: repeat(2, 1fr); }
  .steps            { grid-template-columns: repeat(2, 1fr); }
  .steps::before    { display: none; }
  .related-grid     { grid-template-columns: repeat(2, 1fr); }
  .price-teaser     { grid-template-columns: 1fr; }
  .price-from       { text-align: left; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section          { padding: 60px 0; }
  .nav-main         { display: none; }
  nav               { display: none; }
  .h-phone          { display: none; }
  .icon-link        { display: none; }
  .hamburger        { display: flex; }
  .benefits-grid    { grid-template-columns: 1fr; }
  .steps            { grid-template-columns: 1fr; }
  .related-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom    { flex-direction: column; align-items: flex-start; }
  .price-teaser     { padding: 28px; }
}

/* ── SEO LOKALNE: ujednolicenie sekcji pod hero ── */
.benefit-emoji {
  font-size: 24px;
  color: var(--teal);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(15,23,42,.04);
}
.location-card--primary {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.local-price-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.local-price-card h2 {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.local-price-card p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
  max-width: 540px;
}
.local-price-action {
  text-align: right;
}
.local-price {
  margin-bottom: 18px;
  color: var(--white) !important;
  white-space: nowrap;
}
.local-price strong {
  font-size: 46px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.local-price span {
  font-size: 18px;
  font-weight: 600;
  color: var(--slate);
  margin-left: 4px;
}

.faq-plus {
  width: 30px;
  height: 30px;
  min-width: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--muted);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.faq-item.open .faq-plus {
  background: rgba(18,163,161,.12);
  color: var(--teal);
  transform: rotate(45deg);
}

.contact-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 48px;
  box-shadow: 0 14px 40px rgba(15,23,42,.08);
  max-width: 820px;
  margin: 0 auto;
}
.contact-box h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  text-align: center;
  margin-bottom: 12px;
}
.contact-subtitle {
  font-size: 16px;
  color: var(--muted);
  text-align: center;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 36px;
}
.form-checkbox {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  line-height: 1.55;
  color: var(--muted) !important;
  cursor: pointer;
}
.form-checkbox input {
  width: 18px !important;
  min-width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--teal);
}
.cta-band .btn {
  position: relative;
  z-index: 1;
  margin-top: 32px;
}

@media (max-width: 900px) {
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .local-price-card { grid-template-columns: 1fr; text-align: center; }
  .local-price-card p { margin-left: auto; margin-right: auto; }
  .local-price-action { text-align: center; }
}

@media (max-width: 640px) {
  .locations-grid { grid-template-columns: 1fr; }
  .contact-box { padding: 32px 22px; }
  .local-price-card { padding: 34px 22px; }
  .local-price strong { font-size: 38px; }
}

/* Budowa stron www — cennik identyczny jak na stronie głównej */
body.budowa-stron-www-page #cennik {
  padding-top: 96px;
  padding-bottom: 96px;
}

body.budowa-stron-www-page #cennik .section-header {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

body.budowa-stron-www-page #cennik .section-header .eyebrow {
  display: block;
  margin-bottom: 10px;
}

body.budowa-stron-www-page #cennik .section-header h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

body.budowa-stron-www-page #cennik .section-header p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

body.budowa-stron-www-page #cennik .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  margin-top: 0;
}

body.budowa-stron-www-page #cennik .price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 28px;
  padding: 34px 28px 30px;
  box-shadow: 0 22px 55px rgba(15, 23, 42, .08);
}

body.budowa-stron-www-page #cennik .price-card.featured {
  border-color: rgba(20, 184, 166, .45);
  box-shadow: 0 28px 70px rgba(20, 184, 166, .18);
  transform: translateY(-8px);
}

body.budowa-stron-www-page #cennik .featured-badge,
body.budowa-stron-www-page #cennik .price-badge {
  position: absolute !important;
  top: -15px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(20, 184, 166, .24);
}

body.budowa-stron-www-page #cennik .price-plan {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.55rem;
  font-weight: 900;
}

body.budowa-stron-www-page #cennik .price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 10px 0 16px;
  color: var(--navy);
}

body.budowa-stron-www-page #cennik .price-amt {
  font-size: clamp(2.7rem, 4.2vw, 3.6rem);
  line-height: .95;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.05em;
}

body.budowa-stron-www-page #cennik .price-cur,
body.budowa-stron-www-page #cennik .price-per {
  color: var(--slate);
  font-weight: 800;
}

body.budowa-stron-www-page #cennik .price-desc {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

body.budowa-stron-www-page #cennik .price-features {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

body.budowa-stron-www-page #cennik .price-features li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--slate);
  line-height: 1.55;
}

body.budowa-stron-www-page #cennik .price-features li::before {
  content: none !important;
}

body.budowa-stron-www-page #cennik .chk {
  flex: 0 0 18px;
  width: 18px !important;
  height: 18px !important;
  margin-top: 2px;
  border-radius: 999px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: #fff;
  line-height: 1;
}

body.budowa-stron-www-page #cennik .chk svg {
  width: 10px !important;
  height: 8px !important;
  max-width: 10px !important;
  max-height: 8px !important;
  display: block !important;
  stroke: currentColor !important;
  stroke-width: 2 !important;
  fill: none !important;
  overflow: visible;
}

body.budowa-stron-www-page #cennik .price-card .btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

body.budowa-stron-www-page #cennik .price-note {
  margin: 34px auto 0;
  max-width: 860px;
  text-align: center;
  color: var(--muted);
  line-height: 1.75;
}

body.budowa-stron-www-page #cennik .price-note a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

body.budowa-stron-www-page #cennik .price-note a:hover {
  text-decoration: underline;
}

body.budowa-stron-www-page #cennik .pricing-extra {
  margin-top: 34px;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(20,184,166,.12), rgba(15,23,42,.04));
  border: 1px solid rgba(15,23,42,.08);
  text-align: center;
}

@media (max-width: 980px) {
  body.budowa-stron-www-page #cennik .pricing-grid {
    grid-template-columns: 1fr;
  }

  body.budowa-stron-www-page #cennik .price-card.featured {
    transform: none;
  }
}

/* Budowa stron www — realna poprawka cennika po dodaniu klasy body */
body.budowa-stron-www-page #cennik .text-center {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

body.budowa-stron-www-page #cennik .text-center .eyebrow {
  display: block;
  margin-bottom: 10px;
}

body.budowa-stron-www-page #cennik .s-title {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

body.budowa-stron-www-page #cennik .section-sub {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

body.budowa-stron-www-page #cennik .pricing-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  margin-top: 52px !important;
  align-items: start !important;
}

body.budowa-stron-www-page #cennik .price-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: box-shadow .2s;
  display: flex;
  flex-direction: column;
}

body.budowa-stron-www-page #cennik .price-card.featured {
  border-color: var(--teal);
  box-shadow: 0 16px 48px rgba(18,163,161,.18);
  transform: none !important;
}

body.budowa-stron-www-page #cennik .featured-badge,
body.budowa-stron-www-page #cennik .price-badge {
  position: absolute !important;
  top: -15px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: var(--teal);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: none;
  z-index: 4;
}

body.budowa-stron-www-page #cennik .price-plan {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0 0 10px;
}

body.budowa-stron-www-page #cennik .price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 0 0 8px;
}

body.budowa-stron-www-page #cennik .price-amt {
  font-size: 44px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: normal;
  line-height: 1;
}

body.budowa-stron-www-page #cennik .price-cur {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}

body.budowa-stron-www-page #cennik .price-per {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

body.budowa-stron-www-page #cennik .price-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 14px 0 24px;
}

body.budowa-stron-www-page #cennik .price-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 24px 0 0;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 14px;
}

body.budowa-stron-www-page #cennik .price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.55;
  padding: 0;
}

body.budowa-stron-www-page #cennik .price-features li::before {
  content: none !important;
}

body.budowa-stron-www-page #cennik .chk {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  flex: 0 0 18px !important;
  background: var(--teal);
  border-radius: 50%;
  margin-top: 1px;
  color: #fff;
}

body.budowa-stron-www-page #cennik .chk svg {
  width: 10px !important;
  height: 10px !important;
  max-width: 10px !important;
  max-height: 10px !important;
  stroke: white !important;
  fill: none !important;
  stroke-width: 2.5 !important;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block !important;
}

body.budowa-stron-www-page #cennik .price-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

body.budowa-stron-www-page #cennik .price-note {
  text-align: center;
  margin-top: 28px;
  font-size: 14px;
  color: var(--muted);
}

body.budowa-stron-www-page #cennik .price-note a {
  color: var(--teal);
  font-weight: 600;
}

@media (max-width: 980px) {
  body.budowa-stron-www-page #cennik .pricing-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Budowa stron www — widoczny przycisk "Zobacz nasze realizacje" w kaflu strony www */
body.budowa-stron-www-page #cennik .pricing-extra .btn-secondary {
  color: var(--navy) !important;
  border-color: rgba(15, 23, 42, .18) !important;
  background: #fff !important;
}

body.budowa-stron-www-page #cennik .pricing-extra .btn-secondary:hover {
  color: #fff !important;
  border-color: var(--navy) !important;
  background: var(--navy) !important;
}
