:root {
  --color-primary: #3D5A4A;
  --color-paper: #F5F3EE;
  --color-accent: #D4C5A9;
  --color-deep: #1A2820;
  --color-text: #2A3D32;
  --color-text-muted: rgba(42, 61, 50, 0.72);
  --color-line: rgba(42, 61, 50, 0.10);
  --pad: 8%;
  --radius: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--color-text);
  background: var(--color-paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

.eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 30px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-paper);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 8px 24px rgba(61, 90, 74, 0.18);
}
.btn-primary:hover { background: var(--color-deep); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid rgba(61, 90, 74, 0.25);
}
.btn-secondary:hover { border-color: var(--color-primary); background: rgba(61,90,74,0.04); }
.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  padding: 14px 0;
  font-size: 14px;
}
.btn-ghost::after { content: ' →'; transition: transform 0.2s ease; display: inline-block; }
.btn-ghost:hover::after { transform: translateX(4px); }

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 243, 238, 0.88);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--color-line);
}
.header-inner {
  width: 100%;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 900px) {
  .header-inner { padding: 14px 20px; }
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo svg { height: 34px; width: auto; }
.header .header-logo svg { height: 42px; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav > li { list-style: none; position: relative; }
.nav > li > a,
.nav > li > button {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.nav > li > a:hover,
.nav > li > button:hover { opacity: 1; color: var(--color-primary); }
.nav > li > a.active { opacity: 1; color: var(--color-primary); }
.nav-chev { transition: transform 0.2s ease; display: inline-block; }
.nav > li:hover .nav-chev,
.nav > li.open .nav-chev { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 260px;
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}
.nav > li:hover .dropdown,
.nav > li.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--color-text);
  font-weight: 600;
  transition: background 0.15s ease, color 0.15s ease;
}
.dropdown a:hover { background: var(--color-paper); color: var(--color-primary); }
.dropdown a .d-desc {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 400;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-phone {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.01em;
  text-align: right;
}
.header-phone .ph-label {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}
.header-btn { padding: 11px 22px; font-size: 14px; }
.menu-toggle { display: none; }

@media (max-width: 1020px) {
  .nav { display: none; }
  .header-phone { display: none; }
  .header-btn { display: none; }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    align-items: center;
    z-index: 120;
    position: relative;
  }
  .menu-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--color-text);
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-paper);
  z-index: 110;
  padding: 90px 32px 140px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
body.menu-open .mobile-menu {
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--color-text);
  padding: 16px 0;
  border-bottom: 1px solid var(--color-line);
  letter-spacing: -0.01em;
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .mm-contact {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px solid var(--color-line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mobile-menu .mm-contact a {
  font-size: 16px;
  border: none;
  padding: 12px 0;
}
.mobile-menu .mm-contact a.btn-primary {
  color: var(--color-paper);
  padding: 18px 30px;
  margin-top: 8px;
  text-align: center;
  justify-content: center;
}

/* ============ PAGE HERO (podstrony) ============ */
.page-hero {
  padding: 80px var(--pad) 72px;
  background: var(--color-paper);
  border-bottom: 1px solid var(--color-line);
}
.page-hero-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.page-hero .eyebrow { margin-bottom: 20px; display: inline-block; }
.page-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--color-text);
  margin-bottom: 24px;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--color-primary);
}
.page-hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 640px;
}
.page-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}
@media (max-width: 900px) {
  .page-hero { padding: 56px 24px 48px; }
  .page-hero-ctas .btn { width: 100%; }
  .page-hero-ctas { flex-direction: column; align-items: stretch; }
}

.breadcrumbs {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}
.breadcrumbs a { color: var(--color-primary); border-bottom: 1px dotted var(--color-primary); padding-bottom: 1px; }
.breadcrumbs a:hover { opacity: 0.7; }
.breadcrumbs span { margin: 0 10px; opacity: 0.5; }

/* ============ SECTION BASE ============ */
.section {
  padding: 100px var(--pad);
  max-width: 1280px;
  margin: 0 auto;
}
.section.tight { padding: 72px var(--pad); }
.section.bg-white { background: #fff; max-width: none; }
.section.bg-white > .section-inner { max-width: 1280px; margin: 0 auto; }
.section.bg-deep {
  background: var(--color-deep);
  color: var(--color-paper);
  max-width: none;
}
.section.bg-deep > .section-inner { max-width: 1280px; margin: 0 auto; }
.section-head {
  max-width: 720px;
  margin-bottom: 60px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head .eyebrow { margin-bottom: 16px; display: inline-block; }
.section-head h2 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em !important;
  color: var(--color-text);
}
.section-head h2 em { font-style: normal; color: var(--color-primary); }
.bg-deep .section-head h2 { color: var(--color-paper); }
.bg-deep .section-head h2 em { color: var(--color-accent); }
.bg-deep .section-head p { color: rgba(245, 243, 238, 0.72); }
.bg-deep .eyebrow { color: var(--color-accent); }
.section-head p {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 640px;
}
.section-head.center p { margin-left: auto; margin-right: auto; }

@media (max-width: 900px) {
  .section, .section.bg-white, .section.bg-deep { padding: 72px 24px; }
  .section-head { margin-bottom: 40px; }
}

/* ============ CONTENT / PROSE ============ */
.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
}
.prose > * + * { margin-top: 20px; }
.prose h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-top: 56px;
  margin-bottom: 16px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin-top: 36px;
  margin-bottom: 12px;
}
.prose p { color: var(--color-text-muted); }
.prose ul, .prose ol { padding-left: 24px; color: var(--color-text-muted); }
.prose li { margin-top: 8px; }
.prose strong { color: var(--color-text); font-weight: 700; }
.prose a { color: var(--color-primary); border-bottom: 1px solid rgba(61,90,74,0.3); }
.prose a:hover { border-bottom-color: var(--color-primary); }
.prose blockquote {
  padding: 24px 28px;
  border-left: 3px solid var(--color-primary);
  background: #fff;
  border-radius: 4px;
  font-size: 16px;
  color: var(--color-text);
}

/* Lista z ikoną (checkmark) */
.list-check {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.list-check li {
  padding-left: 32px;
  position: relative;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.55;
}
.list-check li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(61, 90, 74, 0.1);
}
.list-check li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 9px;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: rotate(-45deg);
}

/* Lista z X (czego NIE robimy) */
.list-x {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.list-x li {
  padding-left: 32px;
  position: relative;
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.55;
}
.list-x li::before {
  content: '×';
  position: absolute;
  left: 0;
  top: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(200, 80, 60, 0.1);
  color: #c8503c;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ============ CALLOUT / BOX ============ */
.callout {
  background: #fff;
  border: 1px solid var(--color-line);
  border-left: 3px solid var(--color-primary);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 32px 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
}
.callout strong { color: var(--color-primary); }
.callout-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 8px;
}

/* ============ PROCESS (3 kroki) ============ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.step-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--color-primary);
}
.step-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--color-text);
}
.step-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-muted);
}
.step-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(61, 90, 74, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-cta {
  margin-top: 48px;
  text-align: center;
}
@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr; gap: 16px; }
  .step { padding: 32px 28px; }
}

/* ============ TIMELINE (proces rozszerzony) ============ */
.timeline {
  position: relative;
  padding-left: 60px;
  max-width: 820px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--color-line);
}
.timeline-item {
  position: relative;
  padding-bottom: 48px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -52px;
  top: 4px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}
.timeline-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.timeline-text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 680px;
}
@media (max-width: 900px) {
  .timeline { padding-left: 44px; }
  .timeline-dot { left: -40px; width: 36px; height: 36px; font-size: 13px; }
  .timeline::before { left: 16px; }
}

/* ============ FOR WHO ============ */
.fw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fw-card {
  padding: 44px 40px;
  border-radius: var(--radius);
  background: var(--color-paper);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s ease;
}
.bg-white .fw-card { background: var(--color-paper); }
.fw-card:hover { background: #efebe0; }
.fw-tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.fw-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.fw-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
}
@media (max-width: 900px) {
  .fw-grid { grid-template-columns: 1fr; }
  .fw-card { padding: 32px 28px; }
}

/* ============ FAQ ============ */
.faq-inner {
  max-width: 880px;
  margin: 0 auto;
}
.faq-list { margin-top: 48px; }
.faq-item {
  border-top: 1px solid var(--color-line);
}
.faq-item:last-child { border-bottom: 1px solid var(--color-line); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.3;
  color: var(--color-text);
  letter-spacing: -0.01em;
}
.faq-q-plus {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #fff;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  transition: transform 0.25s ease, background 0.2s ease;
}
.faq-item.open .faq-q-plus {
  transform: rotate(45deg);
  background: var(--color-primary);
  color: var(--color-paper);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner {
  padding: 0 0 28px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 720px;
}
.faq-item.open .faq-a { max-height: 800px; }
@media (max-width: 900px) {
  .faq-q { font-size: 17px; padding: 22px 0; }
}

/* ============ CTA FINAL — telefon dominuje ============ */
.cta-final {
  padding: 100px var(--pad);
  background: var(--color-deep);
  color: var(--color-paper);
}
.cta-phone-hero {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.cta-phone-hero .eyebrow {
  color: var(--color-accent);
  margin-bottom: 20px;
  display: inline-block;
}
.cta-phone-hero h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--color-paper);
  margin-bottom: 24px;
}
.cta-phone-hero h2 em {
  font-style: normal;
  color: var(--color-accent);
}
.cta-phone-sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(245, 243, 238, 0.72);
  max-width: 560px;
  margin: 0 auto 40px;
}
.cta-phone-number {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.03em;
  color: var(--color-paper);
  padding: 20px 40px;
  border: 2px solid var(--color-accent);
  border-radius: 20px;
  background: transparent;
  transition: background 0.2s ease, transform 0.15s ease;
  text-decoration: none;
}
.cta-phone-number:hover {
  background: var(--color-accent);
  color: var(--color-deep);
  transform: translateY(-2px);
}
.cta-phone-meta {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(245, 243, 238, 0.55);
  font-weight: 500;
}
.cta-form-alt {
  max-width: 640px;
  margin: 64px auto 0;
  padding-top: 48px;
  border-top: 1px solid rgba(245, 243, 238, 0.15);
}
.cta-form-alt-label {
  font-size: 15px;
  color: rgba(245, 243, 238, 0.75);
  margin-bottom: 24px;
  text-align: center;
  font-weight: 600;
}
.cta-form-alt-label span {
  display: inline;
  color: rgba(245, 243, 238, 0.5);
  font-weight: 400;
}

/* ============ FORM ============ */
.form {
  background: rgba(245, 243, 238, 0.04);
  border: 1px solid rgba(245, 243, 238, 0.14);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.65);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(245, 243, 238, 0.06);
  border: 1px solid rgba(245, 243, 238, 0.16);
  border-radius: 12px;
  color: var(--color-paper);
  font-size: 15px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(245, 243, 238, 0.1);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(245, 243, 238, 0.4); }
.form-check {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(245, 243, 238, 0.65);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.form-check input { margin-top: 2px; flex-shrink: 0; }
.form-submit {
  margin-top: 8px;
  background: var(--color-accent);
  color: var(--color-deep);
  padding: 18px 30px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: background 0.2s ease, transform 0.15s ease;
  border: none;
  cursor: pointer;
}
.form-submit:hover { background: #e4d7bd; transform: translateY(-1px); }

@media (max-width: 900px) {
  .cta-final { padding: 72px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* Formularz na jasnym tle (strona kontakt) */
.form.form-light {
  background: #fff;
  border: 1px solid var(--color-line);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.form.form-light .form-field label { color: var(--color-primary); }
.form.form-light .form-field input,
.form.form-light .form-field select,
.form.form-light .form-field textarea {
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  color: var(--color-text);
}
.form.form-light .form-field input:focus,
.form.form-light .form-field select:focus,
.form.form-light .form-field textarea:focus {
  border-color: var(--color-primary);
  background: #fff;
}
.form.form-light .form-field input::placeholder,
.form.form-light .form-field textarea::placeholder { color: rgba(42, 61, 50, 0.35); }
.form.form-light .form-check { color: var(--color-text-muted); }
.form.form-light .form-submit { background: var(--color-primary); color: var(--color-paper); }
.form.form-light .form-submit:hover { background: var(--color-deep); }

/* ============ FOOTER ============ */
.footer {
  background: #0f1812;
  color: rgba(245, 243, 238, 0.72);
  padding: 80px var(--pad) 40px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245, 243, 238, 0.10);
}
.footer-brand .logo svg { height: 32px; }
.footer-brand .footer-logo svg { height: 40px; width: auto; }
.footer-brand p {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245, 243, 238, 0.55);
  max-width: 280px;
}
.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a {
  font-size: 14px;
  color: rgba(245, 243, 238, 0.72);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--color-paper); }
.footer-regions ul { columns: 2; column-gap: 20px; }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(245, 243, 238, 0.4);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.footer-bottom a:hover { color: var(--color-paper); }
@media (max-width: 900px) {
  .footer { padding: 56px 24px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
}

/* ============ STICKY MOBILE CTA ============ */
.mobile-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(245, 243, 238, 0.95);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-top: 1px solid var(--color-line);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  display: none;
  gap: 10px;
}
.mobile-sticky a {
  flex: 1;
  padding: 14px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: -0.01em;
}
.mobile-sticky .ms-call {
  background: var(--color-primary);
  color: var(--color-paper);
}
.mobile-sticky .ms-form {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid rgba(61, 90, 74, 0.2);
}
@media (max-width: 900px) {
  .mobile-sticky { display: flex; }
  body { padding-bottom: 70px; }
  .wa-widget { bottom: 86px !important; }
}

/* ============ WHATSAPP WIDGET ============ */
.wa-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 95;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-widget:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0,0,0,0.1);
}
.wa-widget::before {
  content: '';
  position: absolute;
  inset: -2px;
  border: 2px solid rgba(37, 211, 102, 0.4);
  border-radius: 50%;
  opacity: 0.6;
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}
.wa-widget svg { width: 30px; height: 30px; fill: #fff; position: relative; z-index: 1; }
.wa-widget-label {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-deep);
  color: var(--color-paper);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 100px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.wa-widget:hover .wa-widget-label { opacity: 1; }
@media (max-width: 900px) { .wa-widget-label { display: none; } }

/* ============ UTILS ============ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ============ TYPE OVERRIDES — italic OFF globalnie ============ */
em { font-style: normal !important; }
h1 em, h2 em, h3 em { font-style: normal !important; }
em[style*="italic"] { font-style: normal !important; }

/* ============ LEAD BOX (CTA inline) ============ */
.lead-box {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 20px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: 48px 0;
}
.lead-box-content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.lead-box-content p {
  font-size: 15px;
  color: var(--color-text-muted);
  margin: 0;
}
@media (max-width: 900px) {
  .lead-box { flex-direction: column; align-items: stretch; text-align: left; padding: 28px; }
  .lead-box .btn { width: 100%; }
}

/* ============ LOGO IMG (SVG — kolory są w pliku) ============ */
.logo img, .footer-logo img {
  display: block;
  width: auto;
  height: 26px;
}
.header .header-logo img { height: 30px; }

/* Ciemne tła używają logo-light.svg (ustawione w HTML per-footer) */
.footer .logo img,
.footer-brand .logo img,
.footer-brand .footer-logo img {
  height: 26px;
}

/* Keyword-domain header — 3 kolumny: [domena] [logo center] [telefon+CTA] */
.kw-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 40px;
  gap: 20px;
}
.kw-header-domain {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--color-text);
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
  z-index: 2;
}
.kw-header-domain:hover { color: var(--color-primary); }
.kw-header-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.kw-header-logo img {
  height: 28px;
  width: auto;
  display: block;
}
@media (max-width: 1100px) {
  .kw-header-domain { font-size: 15px; }
  .kw-header-logo img { height: 22px; }
}
@media (max-width: 780px) {
  .kw-header-inner { padding: 14px 20px; }
  .kw-header-logo { display: none; } /* zachowujemy domenę + CTA na mobile */
}

/* Keyword-domain footer — „serwis Asbero" zwykłym footer fontem z kropkowanym podkreśleniem */
.kw-footer-brand-label {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(245, 243, 238, 0.72);
  padding-bottom: 2px;
  border-bottom: 1px dotted rgba(212, 197, 169, 0.5);
  transition: color 0.2s ease, border-bottom-color 0.2s ease;
}
.kw-footer-brand-label:hover {
  color: var(--color-paper);
  border-bottom-color: var(--color-accent);
}

/* ============================================================
   COOKIE CONSENT BANNER — GDPR + Prawo telekomunikacyjne
   Dynamicznie injectowany z shared.js
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: var(--color-deep, #1A2820);
  color: var(--color-paper, #F5F3EE);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 8px 24px rgba(0,0,0,0.18);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 260ms ease-out, transform 260ms ease-out;
  pointer-events: none;
  max-width: 1100px;
  margin: 0 auto;
}
.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 28px;
}
.cb-content { min-width: 0; }
.cb-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 6px;
  color: var(--color-paper, #F5F3EE);
  letter-spacing: -0.01em;
}
.cb-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(245, 243, 238, 0.78);
  margin: 0;
}
.cb-desc strong { color: var(--color-accent, #D4C5A9); font-weight: 600; }
.cb-link {
  color: var(--color-accent, #D4C5A9);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cb-link:hover { color: var(--color-paper, #F5F3EE); }
.cb-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cb-btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 150ms ease;
  white-space: nowrap;
}
.cb-btn-primary {
  background: var(--color-accent, #D4C5A9);
  color: var(--color-deep, #1A2820);
}
.cb-btn-primary:hover {
  background: var(--color-paper, #F5F3EE);
  transform: translateY(-1px);
}
.cb-btn-secondary {
  background: transparent;
  color: var(--color-paper, #F5F3EE);
  border: 1px solid rgba(245, 243, 238, 0.3);
}
.cb-btn-secondary:hover {
  background: rgba(245, 243, 238, 0.08);
  border-color: rgba(245, 243, 238, 0.5);
}

@media (max-width: 720px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .cookie-banner-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 22px;
  }
  .cb-title { font-size: 15px; }
  .cb-desc { font-size: 13px; }
  .cb-actions { flex-direction: column-reverse; }
  .cb-btn { width: 100%; padding: 13px 20px; font-size: 14px; }
}

/* ============================================================
   MAP CITY CHIPS — sekcja "Gdzie jeździmy" na keyword-domenach
   ============================================================ */
.map-cities-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.map-city-chip {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid rgba(61, 90, 74, 0.12);
  border-radius: 100px;
  color: var(--color-primary);
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.map-city-chip:hover {
  border-color: var(--color-primary);
  background: var(--color-paper);
  color: var(--color-deep);
}
